]> git.wh0rd.org Git - nano.git/commitdiff
per Benno Schulenberg's patch, add single quotes around the invalid
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 8 Jun 2006 02:13:37 +0000 (02:13 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 8 Jun 2006 02:13:37 +0000 (02:13 +0000)
string argument in the error message about unterminated strings, to
avoid confusion

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

ChangeLog
src/rcfile.c

index 5e6dc7aa1469dcc5abefa8bf25bdb27afda413fb..3655a03daa2a997aac880992d485a970b414b09c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -290,8 +290,11 @@ CVS code -
 - rcfile.c:
   parse_argument()
        - Rename variable ptr_bak to ptr_save, for consistency. (DLR)
-       - Add quotes around invalid string arguments in error messages,
-         for consistency. (DLR)
+       - Add double quotes around invalid string arguments in error
+         messages, for consistency. (DLR)
+       - Add single quotes around the invalid string argument in the
+         error message about unterminated strings, to avoid confusion.
+         (Benno Schulenberg)
   parse_syntax()
        - Don't generate an error if we find a duplicate syntax name,
          since we might be trying to override a syntax in the global
index c22aca379a28d187b55f9606a7a8604452086279..e652002d297450969762334a6cbe1b5415f6340b 100644 (file)
@@ -171,7 +171,7 @@ char *parse_argument(char *ptr)
            ptr = NULL;
        else
            *ptr++ = '\0';
-       rcfile_error(N_("Argument \"%s\" has unterminated \""), ptr_save);
+       rcfile_error(N_("Argument '%s' has unterminated \""), ptr_save);
     } else {
        *last_quote = '\0';
        ptr = last_quote + 1;