]> ncurses.scripts.mit.edu Git - ncurses.git/commitdiff
ncurses 5.7 - patch 20090803
authorThomas E. Dickey <dickey@invisible-island.net>
Tue, 4 Aug 2009 00:48:40 +0000 (00:48 +0000)
committerThomas E. Dickey <dickey@invisible-island.net>
Tue, 4 Aug 2009 00:48:40 +0000 (00:48 +0000)
+ add tabs.1 to man/man_db.renames
+ modify lib_addch.c to compensate for removal of wide-character test
  from unctrl() in 20090704 (Debian #539735).

NEWS
dist.mk
man/man_db.renames
ncurses/base/lib_addch.c

diff --git a/NEWS b/NEWS
index c3ec241b922e0de9ebdb47d8708ac245b44e056a..f2ac7a86a8d99591695c53787c5d139032880926 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -25,7 +25,7 @@
 -- sale, use or other dealings in this Software without prior written        --
 -- authorization.                                                            --
 -------------------------------------------------------------------------------
--- $Id: NEWS,v 1.1414 2009/08/01 20:44:21 tom Exp $
+-- $Id: NEWS,v 1.1416 2009/08/04 00:45:58 tom Exp $
 -------------------------------------------------------------------------------
 
 This is a log of changes that ncurses has gone through since Zeyd started
@@ -45,6 +45,11 @@ See the AUTHORS file for the corresponding full names.
 Changes through 1.9.9e did not credit all contributions;
 it is not possible to add this information.
 
+20090803
+       + add tabs.1 to man/man_db.renames
+       + modify lib_addch.c to compensate for removal of wide-character test
+         from unctrl() in 20090704 (Debian #539735).
+
 20090801
        + improve discussion in INSTALL for use of system's tic/infocmp for
          cross-compiling and building fallbacks.
diff --git a/dist.mk b/dist.mk
index 83c1589d33d0aea3b5c8d9aa98720a50d9e0b3a8..d7e04fc7709f18aac3998f9ab6ed958884b301a8 100644 (file)
--- a/dist.mk
+++ b/dist.mk
@@ -25,7 +25,7 @@
 # use or other dealings in this Software without prior written               #
 # authorization.                                                             #
 ##############################################################################
-# $Id: dist.mk,v 1.712 2009/07/30 09:04:10 tom Exp $
+# $Id: dist.mk,v 1.713 2009/08/03 21:10:47 tom Exp $
 # Makefile for creating ncurses distributions.
 #
 # This only needs to be used directly as a makefile by developers, but
@@ -37,7 +37,7 @@ SHELL = /bin/sh
 # These define the major/minor/patch versions of ncurses.
 NCURSES_MAJOR = 5
 NCURSES_MINOR = 7
-NCURSES_PATCH = 20090801
+NCURSES_PATCH = 20090803
 
 # We don't append the patch to the version, since this only applies to releases
 VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
index ff91eecc4e224710b3d0dab48d3bc31050849dca..e2388009b5639f911869fd50f03ce44fa631691c 100644 (file)
@@ -1,5 +1,5 @@
 ##############################################################################
-# Copyright (c) 1998-2007,2008 Free Software Foundation, Inc.                #
+# Copyright (c) 1998-2008,2009 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 "Software"), #
@@ -25,7 +25,7 @@
 # use or other dealings in this Software without prior written               #
 # authorization.                                                             #
 ##############################################################################
-# $Id: man_db.renames,v 0.41 2008/10/25 23:24:03 tom Exp $
+# $Id: man_db.renames,v 0.43 2009/08/04 00:30:32 tom Exp $
 # Manual-page renamings for the man_db program
 #
 # Files:
@@ -152,6 +152,7 @@ putc.3s                     putc.3
 resizeterm.3x                  resizeterm.3ncurses
 scanf.3s                       scanf.3
 system.3s                      system.3
+tabs.1                         tabs.1
 term.5                         term.5
 term.7                         term.7
 terminfo.5                     terminfo.5
index fea78b1e456918645bc3c4000d4c6a25fd4a695a..27a1fb0fba5c39ef5447b3d1426bcf9997174323 100644 (file)
@@ -36,7 +36,7 @@
 #include <curses.priv.h>
 #include <ctype.h>
 
-MODULE_ID("$Id: lib_addch.c,v 1.120 2009/07/25 14:38:19 tom Exp $")
+MODULE_ID("$Id: lib_addch.c,v 1.121 2009/08/04 00:20:09 tom Exp $")
 
 static const NCURSES_CH_T blankchar = NewChar(BLANK_TEXT);
 
@@ -274,7 +274,7 @@ waddch_literal(WINDOW *win, NCURSES_CH_T ch)
                attr_t attr = AttrOf(ch);
 
                /* handle EILSEQ (i.e., when len >= -1) */
-               if (is8bits(CharOf(ch))) {
+               if (len == -1 && is8bits(CharOf(ch))) {
                    int rc = OK;
                    const char *s = NCURSES_SP_NAME(unctrl)
                      (NCURSES_SP_ARGx (chtype) CharOf(ch));