]> git.wh0rd.org Git - nano.git/commitdiff
Fix unneeded vars with NANO_SMALL
authorChris Allegretta <chrisa@asty.org>
Mon, 17 Sep 2001 13:49:33 +0000 (13:49 +0000)
committerChris Allegretta <chrisa@asty.org>
Mon, 17 Sep 2001 13:49:33 +0000 (13:49 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@764 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

configure
nano.c

index 8275240f8df7da8633739f4ea6255f56775ccae4..1430e57b9fc973a4b592f10b34aa068742edaee0 100755 (executable)
--- a/configure
+++ b/configure
@@ -825,7 +825,7 @@ fi
 
 
 
-ALL_LINGUAS="es de fr it id fi hu ca cs gl uk ru sv no nl"
+ALL_LINGUAS="es de fr it id fi hu ca cs gl uk ru sv no nl da"
 
 # Extract the first word of "gcc", so it can be a program name with args.
 set dummy gcc; ac_word=$2
diff --git a/nano.c b/nano.c
index bcd9656a0f0df0e5936104fc5aa63e929a3530b5..d7f5795116b17b4da8d23ff11c65c91d433b0070 100644 (file)
--- a/nano.c
+++ b/nano.c
@@ -662,8 +662,11 @@ void do_char(char ch)
 int do_enter(filestruct * inptr)
 {
     filestruct *newnode;
-    char *tmp, *spc;
+    char *tmp;
+#ifndef NANO_SMALL
+    char *spc;
     int extra = 0;
+#endif
 
     newnode = make_new_node(inptr);
     tmp = &current->data[current_x];