]> git.wh0rd.org Git - nano.git/commitdiff
Fixing two compilation warnings for tiny.
authorBenno Schulenberg <bensberg@justemail.net>
Thu, 3 Apr 2014 21:06:30 +0000 (21:06 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Thu, 3 Apr 2014 21:06:30 +0000 (21:06 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4714 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/global.c
src/text.c

index d1e2acf5e5689ff7eb5a557983b94128d15d8292..eb4d14f139ee12fee8197447c9c3466b8fac2e43 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@
        Convert #ifdef ENABLE_MULTIBUFFER to #ifndef DISABLE_MULTIBUFFER.
        * src/{proto.h,files.c,,nano.c,winio.c}, configure.ac:
        Convert #ifdef NANO_EXTRA to #ifndef DISABLE_EXTRA.
+       * src/{global.c,text.c}: Fix two compilation warnings for tiny.
 
 2014-04-02  Benno Schulenberg  <bensberg@justemail.net>
        * configure.ac, doc/Makefile.am: Try to build the info documentation
index 693ab5dd5d9ce683b75ef6d82dfb81b612b49162..85e5ea9cfe10742d5c6e80455e2827268b4361ab 100644 (file)
@@ -577,7 +577,9 @@ void shortcut_init(bool unjustify)
 #endif
     const char *refresh_msg = N_("Refresh");
     const char *go_to_line_msg = N_("Go To Line");
+#ifndef DISABLE_SPELLER
     const char *spell_msg = N_("To Spell");
+#endif
 #ifdef ENABLE_COLOR
     const char *lint_msg = N_("To Linter");
     const char *prev_lint_msg = N_("Prev Lint Msg");
@@ -615,8 +617,10 @@ void shortcut_init(bool unjustify)
        N_("Uncut from the cutbuffer into the current line");
     const char *nano_cursorpos_msg =
        N_("Display the position of the cursor");
+#ifndef DISABLE_SPELLER
     const char *nano_spell_msg =
        N_("Invoke the spell checker, if available");
+#endif
     const char *nano_replace_msg =
        N_("Replace a string or a regular expression");
      const char *nano_gotoline_msg = N_("Go to line and column number");
index f7623ef8342a569ebbfbb3ec87dde86e72732cf7..796df4c5dd55c3cd83a14c217c6c2e0ec56055f6 100644 (file)
@@ -3190,9 +3190,9 @@ void do_linter(void)
            tmpcol = curlint->colno;
 
        if (tmplint != curlint) {
+#ifndef NANO_TINY
            struct stat lintfileinfo;
 
-#ifndef NANO_TINY
            new_lint_loop:
            if (stat(curlint->filename, &lintfileinfo) != -1) {
                if (openfile->current_stat->st_ino != lintfileinfo.st_ino) {