groff-commit
[Top][All Lists]
Advanced

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

[groff] 13/37: [nroff]: Continue fixing Savannah #64684.


From: G. Branden Robinson
Subject: [groff] 13/37: [nroff]: Continue fixing Savannah #64684.
Date: Fri, 27 Sep 2024 01:18:11 -0400 (EDT)

gbranden pushed a commit to branch master
in repository groff.

commit c72bea11f3eeeec2c20b2b915a1584e0d2d8c139
Author: G. Branden Robinson <g.branden.robinson@gmail.com>
AuthorDate: Mon Sep 23 12:43:48 2024 -0500

    [nroff]: Continue fixing Savannah #64684.
    
    * src/roff/nroff/nroff.sh: Support `-v` non-finally in option clusters.
      "nroff -tv" worked while "nroff -vt" did not.  That was silly.
      Continues commit 24d4975ebe, 12 July.
    
    Continues fixing <https://savannah.gnu.org/bugs/?64684>.
---
 ChangeLog               | 8 ++++++++
 src/roff/nroff/nroff.sh | 5 +++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 14b19019a..8a8eb1ecd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2024-09-23  G. Branden Robinson <g.branden.robinson@gmail.com>
+
+       * src/roff/nroff/nroff.sh: Support `-v` non-finally in option
+       clusters.  "nroff -tv" worked while "nroff -vt" did not.  That
+       was silly.  Continues commit 24d4975ebe, 12 July.
+
+       Continues fixing <https://savannah.gnu.org/bugs/?64684>.
+
 2024-09-21  G. Branden Robinson <g.branden.robinson@gmail.com>
 
        * mdate.pl: Report dates in ISO 8601 format (for man page center
diff --git a/src/roff/nroff/nroff.sh b/src/roff/nroff/nroff.sh
index a37c824bc..3f641e84b 100644
--- a/src/roff/nroff/nroff.sh
+++ b/src/roff/nroff/nroff.sh
@@ -1,4 +1,5 @@
 #!/bin/sh
+#
 # Emulate nroff with groff.
 #
 # Copyright (C) 1992-2024 Free Software Foundation, Inc.
@@ -49,11 +50,11 @@ do
   while :
   do
     case $thisarg in
-      -[abCEikpRStUzZ])
+      -[abCEikpRStUvzZ])
         newargs="$newargs $thisarg"
         break
         ;;
-      -[abCEikpRStUzZ]*)
+      -[abCEikpRStUvzZ]*)
         remainder=${thisarg#-?}
         thisarg=${thisarg%%$remainder}
         newargs="$newargs $thisarg"



reply via email to

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