grep-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Changes to grep/src/grep.c


From: Charles Levert
Subject: Changes to grep/src/grep.c
Date: Fri, 11 Nov 2005 07:17:53 -0500

Index: grep/src/grep.c
diff -u grep/src/grep.c:1.117 grep/src/grep.c:1.118
--- grep/src/grep.c:1.117       Thu Nov 10 19:57:54 2005
+++ grep/src/grep.c     Fri Nov 11 12:17:52 2005
@@ -1663,22 +1663,20 @@
              if (val)
                *(cap->var) = val;
              else
-               fprintf(stderr,
-                       _("%s: In GREP_COLORS=\"%s\", the \"%s\" capacity needs 
a value (\"=...\"); skipped.\n"),
-                       program_name, p, name);
+               error(0, 0, _("In GREP_COLORS=\"%s\", the \"%s\" capacity "
+                             "needs a value (\"=...\"); skipped."), p, name);
            }
          else if (val)
-           fprintf(stderr,
-                   _("%s: In GREP_COLORS=\"%s\", the \"%s\" capacity is 
boolean and cannot take a value (\"=%s\"); skipped.\n"),
-                   program_name, p, name, val);
+           error(0, 0, _("In GREP_COLORS=\"%s\", the \"%s\" capacity "
+                         "is boolean and cannot take a value (\"=%s\"); "
+                         "skipped."), p, name, val);
        if (cap->fct)
          {
            const char *err_str = cap->fct();
 
            if (err_str)
-             fprintf(stderr,
-                     _("%s: In GREP_COLORS=\"%s\", the \"%s\" capacity %s.\n"),
-                     program_name, p, name, err_str);
+             error(0, 0, _("In GREP_COLORS=\"%s\", the \"%s\" capacity %s."),
+                   p, name, err_str);
          }
        if (c == '\0')
          return;
@@ -1700,9 +1698,8 @@
       goto ill_formed;
 
  ill_formed:
-  fprintf(stderr,
-         _("%s: Stopped processing of ill-formed GREP_COLORS=\"%s\" at 
remaining substring \"%s\".\n"),
-         program_name, p, q);
+  error(0, 0, _("Stopped processing of ill-formed GREP_COLORS=\"%s\" "
+               "at remaining substring \"%s\"."), p, q);
 }
 
 /* mb_icase_keys() is called by main() to convert its "keys" string with
@@ -2113,10 +2110,8 @@
     out_before = default_context;
   if (only_matching && (out_after > 0 || out_before > 0))
     {
-      fprintf(stderr,
-            _("%s: Any context line specification "
-              "is ignored with -o/--only-matching.\n"),
-            program_name);
+      error(0, 0, _("Any context line specification "
+                   "is ignored with -o/--only-matching."));
       out_after = out_before = 0;
     }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]