gbranden pushed a commit to branch master
in repository groff.

commit aa20d872a87cd5202f3d412cf9f02a190d396dfb
Author: G. Branden Robinson <[email protected]>
AuthorDate: Sun Nov 9 08:41:47 2025 -0600

    [pic]: Slightly refactor.
    
    * src/preproc/pic/lex.cpp (get_delimited): Drop `switch` case that is
      present only "to shut cfront 2.0 up".  Cfront is long dead.
---
 ChangeLog               | 6 ++++++
 src/preproc/pic/lex.cpp | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 2c6eb20e9..53b6bbbeb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2025-11-09  G. Branden Robinson <[email protected]>
+
+       * src/preproc/pic/lex.cpp (get_delimited): Drop `switch` case
+       that is present only "to shut cfront 2.0 up".  Cfront is long
+       dead.
+
 2025-11-09  G. Branden Robinson <[email protected]>
 
        [refer]: Slightly refactor (boolify).
diff --git a/src/preproc/pic/lex.cpp b/src/preproc/pic/lex.cpp
index d81781031..623634927 100644
--- a/src/preproc/pic/lex.cpp
+++ b/src/preproc/pic/lex.cpp
@@ -1391,8 +1391,6 @@ int get_delimited()
       else if (c == '\\')
        state = IN_STRING_QUOTED;
       break;
-    case DELIM_END:
-      // This case it just to shut cfront 2.0 up.
     default:
       assert(0);
     }

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

Reply via email to