gbranden pushed a commit to branch master
in repository groff.

commit 117152f87c58b861563eab3aadccf2170f93ead7
Author: G. Branden Robinson <[email protected]>
AuthorDate: Fri Nov 18 11:07:50 2022 -0600

    [gropdf]: Tweak diagnostic message format.
    
    * src/devices/gropdf/gropdf.pl (Msg): Align more closely with diagnostic
      message format prescribed by GNU Coding Standards: emit space (only)
      prior to message severity.
---
 ChangeLog                    | 6 ++++++
 src/devices/gropdf/gropdf.pl | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 997565b42..d45fb10f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022-11-18  G. Branden Robinson <[email protected]>
+
+       * src/devices/gropdf/gropdf.pl (Msg): Align more closely with
+       diagnostic message format prescribed by GNU Coding Standards:
+       emit space (only) prior to message severity.
+
 2022-11-17  G. Branden Robinson <[email protected]>
 
        * doc/meref.me.in: Drop unnecessary initialization parameters
diff --git a/src/devices/gropdf/gropdf.pl b/src/devices/gropdf/gropdf.pl
index a2b34c8fd..c2745fb17 100644
--- a/src/devices/gropdf/gropdf.pl
+++ b/src/devices/gropdf/gropdf.pl
@@ -2289,7 +2289,8 @@ sub Msg
     my ($fatal,$msg)=@_;
 
     print STDERR "$prog:";
-    print STDERR "$env{SourceFile}: " if exists($env{SourceFile});
+    print STDERR "$env{SourceFile}:" if exists($env{SourceFile});
+    print STDERR " ";
 
     if ($fatal)
     {

_______________________________________________
Groff-commit mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/groff-commit

Reply via email to