]> git.wh0rd.org Git - nano.git/commitdiff
fix more bad #ifdefs, and add a few formatting fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 2 Jun 2005 05:50:58 +0000 (05:50 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 2 Jun 2005 05:50:58 +0000 (05:50 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2576 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/files.c
src/proto.h
src/winio.c

index 4e6d46c7ab6ef8ba312f0727513f6548373b9a61..78294072e6afa5b18073bb32ac9cb40b33f65625 100644 (file)
@@ -2062,8 +2062,8 @@ char **username_tab_completion(const char *buf, size_t *num_matches,
                continue;
 #endif
 
-           matches = (char **)nrealloc(matches, (*num_matches + 1) *
-               sizeof(char *));
+           matches = (char **)nrealloc(matches,
+               (*num_matches + 1) * sizeof(char *));
            matches[*num_matches] =
                charalloc(strlen(userdata->pw_name) + 2);
            sprintf(matches[*num_matches], "~%s", userdata->pw_name);
@@ -2158,8 +2158,8 @@ char **cwd_tab_completion(const char *buf, size_t *num_matches, size_t
            free(tmp2);
 #endif
 
-           matches = (char **)nrealloc(matches, (*num_matches + 1) *
-               sizeof(char *));
+           matches = (char **)nrealloc(matches,
+               (*num_matches + 1) * sizeof(char *));
            matches[*num_matches] = mallocstrcpy(NULL, nextdir->d_name);
            ++(*num_matches);
        }
index 33ae447f7e7eef31557fe183f52aced6825d88f6..c6049bf3bdc8c6df1e480aedec8d81b80b1d5948 100644 (file)
@@ -648,7 +648,7 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
        dollars);
 void nanoget_repaint(const char *buf, const char *inputbuf, size_t x);
 int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
-#ifndef NANO_SMALL
+#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
        filestruct *history_list,
 #endif
        const shortcut *s
@@ -657,7 +657,7 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
 #endif
        );
 int statusq(bool allow_tabs, const shortcut *s, const char *curranswer,
-#ifndef NANO_SMALL
+#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
        filestruct *history_list,
 #endif
        const char *msg, ...);
index 0b923fb5b7c19fe661b705c72d754d474d0a15f9..964f44c42447d6c6b9ac965e0b9fd04d3229d5dc 100644 (file)
@@ -2430,7 +2430,7 @@ void nanoget_repaint(const char *buf, const char *inputbuf, size_t x)
 /* Get the input from the keyboard; this should only be called from
  * statusq(). */
 int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
-#ifndef NANO_SMALL
+#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
        filestruct *history_list,
 #endif
        const shortcut *s
@@ -2446,7 +2446,7 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
     bool tabbed = FALSE;
        /* Whether we've pressed Tab. */
 #endif
-#ifndef NANO_SMALL
+#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
     char *history = NULL;
        /* The current history string. */
     char *magichistory = NULL;
@@ -2500,7 +2500,7 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
 #endif
                break;
            case NANO_PREVLINE_KEY:
-#ifndef NANO_SMALL
+#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
                if (history_list != NULL) {
                    /* If we're scrolling up at the bottom of the
                     * history list, answer isn't blank, and
@@ -2526,10 +2526,10 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
                     * statusbar prompt. */
                    finished = FALSE;
                }
-#endif
+#endif /* !NANO_SMALL && ENABLE_NANORC */
                break;
            case NANO_NEXTLINE_KEY:
-#ifndef NANO_SMALL
+#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
                if (history_list != NULL) {
                    /* Get the newer search from the history list and
                     * save it in answer.  If there is no newer search,
@@ -2550,7 +2550,7 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
                        statusbar_x = strlen(answer);
                    }
                }
-#endif
+#endif /* !NANO_SMALL && ENABLE_NANORC */
                break;
        }
 
@@ -2564,7 +2564,7 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
        wrefresh(bottomwin);
     }
 
-#ifndef NANO_SMALL
+#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
     /* Free magichistory if we need to. */
     if (magichistory != NULL)
        free(magichistory);
@@ -2587,7 +2587,7 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
  * The allow_tabs parameter indicates whether we should allow tabs to be
  * interpreted. */
 int statusq(bool allow_tabs, const shortcut *s, const char *curranswer,
-#ifndef NANO_SMALL
+#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
        filestruct *history_list,
 #endif
        const char *msg, ...)