Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libcurses fix wrong widechar assignment for "up arrow"



details:   https://anonhg.NetBSD.org/src/rev/791c58bf4c56
branches:  trunk
changeset: 752407:791c58bf4c56
user:      drochner <drochner%NetBSD.org@localhost>
date:      Thu Feb 25 10:56:24 2010 +0000

description:
fix wrong widechar assignment for "up arrow"

diffstat:

 lib/libcurses/acs.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r d763aba46398 -r 791c58bf4c56 lib/libcurses/acs.c
--- a/lib/libcurses/acs.c       Thu Feb 25 08:06:43 2010 +0000
+++ b/lib/libcurses/acs.c       Thu Feb 25 10:56:24 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: acs.c,v 1.18 2010/02/23 19:48:26 drochner Exp $        */
+/*     $NetBSD: acs.c,v 1.19 2010/02/25 10:56:24 drochner Exp $        */
 
 /*
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: acs.c,v 1.18 2010/02/23 19:48:26 drochner Exp $");
+__RCSID("$NetBSD: acs.c,v 1.19 2010/02/25 10:56:24 drochner Exp $");
 #endif                         /* not lint */
 
 #include "curses.h"
@@ -197,7 +197,7 @@
                ACS_RARROW = '+' | __ACS_IS_WACS;
                WACS_LARROW->vals[0]  = 0x2190;
                ACS_LARROW = ',' | __ACS_IS_WACS;
-               WACS_UARROW->vals[0]  = 0x2192;
+               WACS_UARROW->vals[0]  = 0x2191;
                ACS_UARROW = '-' | __ACS_IS_WACS;
                WACS_DARROW->vals[0]  = 0x2193;
                ACS_DARROW = '.' | __ACS_IS_WACS;



Home | Main Index | Thread Index | Old Index