commit 5f3695bdb5dd7a0f92cdd0e5da1c6ba01dc6bd3c
parent d8367986ce783bab0c60e23f838c2eaf67e517bc
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Sat, 26 Mar 2005 06:54:36 +0000
in make_mbchar(), remove an unneeded assert
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2430 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git 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
diff --git a/src/chars.c b/src/chars.c
@@ -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)) {