]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/widechar/lib_wacs.c
ncurses 5.9 - patch 20140222
[ncurses.git] / ncurses / widechar / lib_wacs.c
index e7588ee74934e26303b76bf2e4bc648548f5291e..dc3af21e11b2f8cab4193db13d3753d367392220 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 2002-2010,2012 Free Software Foundation, Inc.              *
+ * Copyright (c) 2002-2013,2014 Free Software Foundation, Inc.              *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
@@ -32,7 +32,7 @@
 
 #include <curses.priv.h>
 
-MODULE_ID("$Id: lib_wacs.c,v 1.12 2012/10/27 21:58:03 tom Exp $")
+MODULE_ID("$Id: lib_wacs.c,v 1.14 2014/02/23 01:21:08 tom Exp $")
 
 NCURSES_EXPORT_VAR(cchar_t) * _nc_wacs = 0;
 
@@ -122,11 +122,11 @@ _nc_init_wacs(void)
     if ((_nc_wacs = typeCalloc(cchar_t, ACS_LEN)) != 0) {
 
        for (n = 0; n < SIZEOF(table); ++n) {
-           int wide = wcwidth(table[n].value[active]);
+           int wide = wcwidth((wchar_t) table[n].value[active]);
 
            m = table[n].map;
            if (active && (wide == 1)) {
-               SetChar(_nc_wacs[m], table[n].value[active], A_NORMAL);
+               SetChar(_nc_wacs[m], table[n].value[1], A_NORMAL);
            } else if (acs_map[m] & A_ALTCHARSET) {
                SetChar(_nc_wacs[m], m, A_ALTCHARSET);
            } else {