summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwl <wl>2006-03-29 19:37:55 +0000
committerwl <wl>2006-03-29 19:37:55 +0000
commit83ebc5cc1a68ff6ed5489d28a40cc30357253366 (patch)
tree46c63dcd8244615dab5bcd048c14c1810f2c3dc2
parentb1d7e791606dc24d7e1a243373773d088cdaa9a6 (diff)
downloadgroff-83ebc5cc1a68ff6ed5489d28a40cc30357253366.tar.gz
* src/devices/grops/ps.cpp: s/must not/should not/ in warning
messages where appropriate.
-rw-r--r--ChangeLog5
-rw-r--r--src/devices/grops/ps.cpp6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index ef9c0f3e..6d224d10 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-29 Werner LEMBERG <wl@gnu.org>
+
+ * src/devices/grops/ps.cpp: s/must not/should not/ in warning
+ messages where appropriate.
+
2006-03-28 Werner LEMBERG <wl@gnu.org>
* configure.ac: Call AC_PROG_EGREP.
diff --git a/src/devices/grops/ps.cpp b/src/devices/grops/ps.cpp
index c2307c7b..2a33dbfb 100644
--- a/src/devices/grops/ps.cpp
+++ b/src/devices/grops/ps.cpp
@@ -1592,7 +1592,7 @@ void ps_printer::do_exec(char *arg, const environment *env)
return;
}
if (!check_line_lengths(arg))
- warning("lines in X exec command must"
+ warning("lines in X exec command should"
" not be more than 255 characters long");
out.put_fix_number(env->hpos)
.put_fix_number(env->vpos)
@@ -1641,7 +1641,7 @@ void ps_printer::do_def(char *arg, const environment *)
while (csspace(*arg))
arg++;
if (!check_line_lengths(arg))
- warning("lines in X def command must"
+ warning("lines in X def command should"
" not be more than 255 characters long");
defs += arg;
if (*arg != '\0' && strchr(arg, '\0')[-1] != '\n')
@@ -1668,7 +1668,7 @@ void ps_printer::do_mdef(char *arg, const environment *)
while (csspace(*arg))
arg++;
if (!check_line_lengths(arg))
- warning("lines in X mdef command must"
+ warning("lines in X mdef command should"
" not be more than 255 characters long");
defs += arg;
if (*arg != '\0' && strchr(arg, '\0')[-1] != '\n')