diff options
author | Guido van Rossum <guido@python.org> | 1998-12-23 04:45:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-12-23 04:45:04 (GMT) |
commit | 11847896edf710ef49f4fa1ccb744a7f46e9512c (patch) | |
tree | fe0174d7a9282dd2fe6baefe4ca8cd413c97f64c /Modules | |
parent | 32f7ae00669a86f1a55aacbd9a06c6f6e9f74c27 (diff) | |
download | cpython-11847896edf710ef49f4fa1ccb744a7f46e9512c.zip cpython-11847896edf710ef49f4fa1ccb744a7f46e9512c.tar.gz cpython-11847896edf710ef49f4fa1ccb744a7f46e9512c.tar.bz2 |
Chris Herborth discovered a typo in the arrow key symbols.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_cursesmodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index b68fd7d..f46b0bc 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -1232,7 +1232,8 @@ PyCurses_InitScr(self, args) SetDictInt("ACS_DEGREE", (ACS_DEGREE)); SetDictInt("ACS_PLMINUS", (ACS_PLMINUS)); SetDictInt("ACS_BULLET", (ACS_BULLET)); - SetDictInt("ACS_LARROW", (ACS_RARROW)); + SetDictInt("ACS_LARROW", (ACS_LARROW)); + SetDictInt("ACS_RARROW", (ACS_RARROW)); SetDictInt("ACS_DARROW", (ACS_DARROW)); SetDictInt("ACS_UARROW", (ACS_UARROW)); SetDictInt("ACS_BOARD", (ACS_BOARD)); |