Commit 5f3695bd authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in make_mbchar(), remove an unneeded assert

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2430 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 1 deletion
+3 -1
......@@ -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
......
......@@ -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)) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment