]> git.wh0rd.org Git - nano.git/commitdiff
in make_mbchar(), remove an unneeded assert
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 26 Mar 2005 06:54:36 +0000 (06:54 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 26 Mar 2005 06:54:36 +0000 (06:54 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2430 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/chars.c

index 943fc55a85b475ea4b79c0721cdfaf1e46010cd8..c69484f789d70bc4686e5e610cc770a6a1eefe83 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@ CVS code -
          always turned on.  Changes to do_alt_speller(),
          handle_sigwinch(), and main(). (DLR)
 - chars.c:
+  make_mbchar()
+       - Remove unneeded assert. (DLR)
   move_mbleft()
        - Fix assert to reference the proper variable, so that nano
          builds with DEBUG defined again. (Mike Frysinger, found by
index eff45978a8ddcfe2af5d405906bced71053f5501..7f6c8b7e2ae6d0ad82fa41e40c99677c0b1e44ac 100644 (file)
@@ -278,7 +278,7 @@ char *make_mbchar(int chr, int *chr_mb_len)
 {
     char *chr_mb;
 
-    assert(chr_mb != NULL && chr_mb_len != NULL);
+    assert(chr_mb_len != NULL);
 
 #ifdef NANO_WIDE
     if (!ISSET(NO_UTF8)) {