]> git.wh0rd.org Git - nano.git/commitdiff
Renaming two functions, to be more distinguishable --
authorBenno Schulenberg <bensberg@justemail.net>
Sat, 12 Mar 2016 09:43:10 +0000 (09:43 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Sat, 12 Mar 2016 09:43:10 +0000 (09:43 +0000)
a leading underscore as the only difference is not enough.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5726 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/proto.h
src/rcfile.c

index 1774057e880bc1aab7819cfc2677fb6da45142d0..e25e1a4fb3c5d3ceacc503b26607ac16e22f5678 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
 2016-03-12  Benno Schulenberg  <bensberg@justemail.net>
        * src/color.c (color_update): Set the syntax and regex pointers
        just once, in a single place.  And unnest two 'if's.
+       * src/rcfile.c (parse_one_include, parse_includes): New names for
+       these functions, to be more distinguishable.
 
 2016-03-11  Benno Schulenberg  <bensberg@justemail.net>
        * src/browser.c (do_browser): Fix compilation when configured with
index 39ab19f1628210747d9b6b7b53a23af626f99142..1090db4513e70ca9ef2ab49385a1c693a059101b 100644 (file)
@@ -563,7 +563,7 @@ char *parse_argument(char *ptr);
 char *parse_next_regex(char *ptr);
 bool nregcomp(const char *regex, int eflags);
 void parse_syntax(char *ptr);
-void parse_include(char *ptr);
+void parse_includes(char *ptr);
 short color_to_short(const char *colorname, bool *bright);
 void parse_colors(char *ptr, bool icase);
 bool parse_color_names(char *combostr, short *fg, short *bg, bool *bright);
index 5b86c3624d7774915be76b5f195f705f0c4d9613..c3eeccb15bdeae90511ba15029b5e6d784a67567 100644 (file)
@@ -514,10 +514,9 @@ void parse_binding(char *ptr, bool dobind)
     free(keycopy);
 }
 
-
 #ifndef DISABLE_COLOR
-/* Read and parse additional syntax files. */
-static void _parse_include(char *file)
+/* Read and parse one included syntax file. */
+static void parse_one_include(char *file)
 {
     struct stat rcinfo;
     FILE *rcstream;
@@ -555,7 +554,8 @@ static void _parse_include(char *file)
     parse_rcfile(rcstream, TRUE);
 }
 
-void parse_include(char *ptr)
+/* Expand globs in the passed name, and parse the resultant files. */
+void parse_includes(char *ptr)
 {
     char *option, *nanorc_save = nanorc, *expanded;
     size_t lineno_save = lineno, i;
@@ -571,16 +571,15 @@ void parse_include(char *ptr)
 
     if (glob(expanded, GLOB_ERR|GLOB_NOSORT, NULL, &files) == 0) {
        for (i = 0; i < files.gl_pathc; ++i)
-           _parse_include(files.gl_pathv[i]);
-    } else {
+           parse_one_include(files.gl_pathv[i]);
+    } else
        rcfile_error(_("Error expanding %s: %s"), option,
                strerror(errno));
-    }
 
     globfree(&files);
     free(expanded);
 
-    /* We're done with the new syntax file.  Restore the original
+    /* We're done with the included file(s).  Restore the original
      * filename and line number position. */
     nanorc = nanorc_save;
     lineno = lineno_save;
@@ -995,7 +994,7 @@ void parse_rcfile(FILE *rcstream
                rcfile_error(N_("Command \"%s\" not allowed in included file"),
                                keyword);
            else
-               parse_include(ptr);
+               parse_includes(ptr);
        } else if (strcasecmp(keyword, "syntax") == 0) {
            if (opensyntax && endcolor == NULL)
                rcfile_error(N_("Syntax \"%s\" has no color commands"),