]> git.wh0rd.org Git - nano.git/commitdiff
in cwd_tab_completion(), remove unneeded assert
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 11 Oct 2007 15:19:45 +0000 (15:19 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 11 Oct 2007 15:19:45 +0000 (15:19 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_2_0_branch/nano@4174 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/files.c

index 53703e2a21bbd958961170f5c608ddbedfe887ba..81332aa5e44021cc51677dbc05469bd0e856acd7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -48,6 +48,8 @@ CVS code -
          (DLR)
   username_tab_completion(), cwd_tab_completion(), input_tab()
        - Update copyright notice to account for modifications. (DLR)
+  cwd_tab_completion()
+       - Remove unneeded assert. (DLR)
 - nano.c:
   version()
        - Display copyright notices. (DLR)
index 347d90a0ce1d09b88cff4cfe5c76c876e8955060..1907b87ae7ad41f9581ec85e7d91ac3e57c8f405 100644 (file)
@@ -2195,7 +2195,7 @@ char **cwd_tab_completion(const char *buf, bool allow_files, size_t
     DIR *dir;
     const struct dirent *nextdir;
 
-    assert(dirname != NULL && num_matches != NULL && buflen >= 0);
+    assert(dirname != NULL && num_matches != NULL);
 
     *num_matches = 0;
     null_at(&dirname, buflen);