Commit a65ba51b authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Now make the code with with NANO_SMALL :-)

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1336 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 5 additions and 1 deletion
+5 -1
......@@ -145,7 +145,9 @@ int search_init(int replacing)
/* NEW TEST */
if (ISSET(PICO_MODE)) {
backupstring = mallocstrcpy(backupstring, "");
#ifndef NANO_SMALL
search_history.current = (historytype *)&search_history.next;
#endif
}
/* */
/* If using Pico messages, we do things the old fashioned way... */
......
......@@ -456,7 +456,9 @@ int nanogetstr(int allowtabs, const char *buf, const char *def,
fprintf(stderr, _("input \'%c\' (%d)\n"), kbinput, kbinput);
#endif
} /* switch (kbinput) */
#ifndef NANO_SMALL
last_kbinput = kbinput;
#endif
nanoget_repaint(buf, answer, x);
wrefresh(bottomwin);
} /* while (kbinput ...) */
......@@ -551,10 +553,10 @@ void bottombars(const shortcut *s)
wmove(bottomwin, 1 + j, i * (COLS / numcols));
#ifndef NANO_SMALL
/* Yucky sentinel values we can't handle a better way */
if (s->val == NANO_CONTROL_SPACE)
strcpy(keystr, "^ ");
#ifndef NANO_SMALL
else if (s->val == KEY_UP)
strcpy(keystr, _("Up"));
#endif /* NANO_SMALL */
......
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