]> git.wh0rd.org Git - nano.git/commitdiff
Fixing compilation with --enable-tiny --enable-nanorc.
authorBenno Schulenberg <bensberg@justemail.net>
Sun, 29 Jun 2014 09:33:51 +0000 (09:33 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Sun, 29 Jun 2014 09:33:51 +0000 (09:33 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5035 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/rcfile.c

index 23c543bae22189ba6f2e3b99d9df6b2bd827d226..6a4126baaa9420abd94f219bbe2042b2b6be4c4b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2014-06-29  Benno Schulenberg  <bensberg@justemail.net>
+       * src/rcfile.c: Fix compilation with --enable-tiny --enable-nanorc.
+
 2014-06-29  Mark Majeres  <mark@engine12.com>
        * src/text.c (do_undo): Update the pointer to the bottom of the file
        when undoing line deletions at file's end.
index 041c1cbcf5c67c2de9137b88fa11f8df16114e00..fe67530fbd8f8a3144c78c01bc47d77774029992 100644 (file)
@@ -404,7 +404,9 @@ bool is_universal(void (*func))
 {
     if (func == do_left || func == do_right ||
        func == do_home || func == do_end ||
+#ifndef NANO_TINY
        func == do_prev_word_void || func == do_next_word_void ||
+#endif
        func == do_verbatim_input || func == do_cut_text_void ||
        func == do_delete || func == do_backspace ||
        func == do_tab || func == do_enter)