]> git.wh0rd.org Git - nano.git/commitdiff
still more cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 14 May 2005 22:44:16 +0000 (22:44 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 14 May 2005 22:44:16 +0000 (22:44 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2507 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/files.c
src/winio.c

index 353cd587525a06ece08243b371f557842a03daa1..d299e242828822bf86661451387b1d8ead1deda7 100644 (file)
@@ -2049,7 +2049,7 @@ char **username_tab_completion(const char *buf, size_t *num_matches,
     return matches;
 }
 
-/* This was originally called exe_n_cwd_tab_completion, but we're not
+/* This was originally called exe_n_cwd_tab_completion(), but we're not
  * worried about executables, only filenames :> */
 char **cwd_tab_completion(const char *buf, size_t *num_matches, size_t
        buflen)
index 0fc84dd180b184f7be5e0cb0cdbf655bd6e65944..974d83647a9b9c577318090efb97ea087cba9010 100644 (file)
@@ -2502,7 +2502,8 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *def,
 #ifndef NANO_SMALL
                /* Tab history completion. */
                if (history_list != NULL) {
-                   if (!complete || last_kbinput != NANO_TAB_KEY) {
+                   if (complete == NULL ||
+                       last_kbinput != NANO_TAB_KEY) {
                        history_list->current =
                                (historytype *)history_list;
                        history_list->len = strlen(answer);