minor bits
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1700 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
1576d537a6
commit
fd1768a902
|
@ -3523,7 +3523,7 @@ int main(int argc, char *argv[])
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
fprintf(stderr, "AHA! %c (%d)\n", kbinput, kbinput);
|
fprintf(stderr, "AHA! %c (%d)\n", kbinput, kbinput);
|
||||||
#endif
|
#endif
|
||||||
if (meta_key == 1) {
|
if (meta_key == TRUE) {
|
||||||
/* Check for the metaval and miscval defs... */
|
/* Check for the metaval and miscval defs... */
|
||||||
for (s = main_list; s != NULL; s = s->next)
|
for (s = main_list; s != NULL; s = s->next)
|
||||||
if ((s->metaval != NANO_NO_KEY && kbinput == s->metaval) ||
|
if ((s->metaval != NANO_NO_KEY && kbinput == s->metaval) ||
|
||||||
|
@ -3630,5 +3630,5 @@ int main(int argc, char *argv[])
|
||||||
reset_cursor();
|
reset_cursor();
|
||||||
wrefresh(edit);
|
wrefresh(edit);
|
||||||
}
|
}
|
||||||
assert(0);
|
assert(FALSE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue