Commit fd1768a9 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

minor bits

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1700 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 1576d537
Showing with 2 additions and 2 deletions
+2 -2
......@@ -3523,7 +3523,7 @@ int main(int argc, char *argv[])
#ifdef DEBUG
fprintf(stderr, "AHA! %c (%d)\n", kbinput, kbinput);
#endif
if (meta_key == 1) {
if (meta_key == TRUE) {
/* Check for the metaval and miscval defs... */
for (s = main_list; s != NULL; s = s->next)
if ((s->metaval != NANO_NO_KEY && kbinput == s->metaval) ||
......@@ -3630,5 +3630,5 @@ int main(int argc, char *argv[])
reset_cursor();
wrefresh(edit);
}
assert(0);
assert(FALSE);
}
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