pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/nawk/files



Module Name:    pkgsrc
Committed By:   rillig
Date:           Wed Jul  9 17:11:22 UTC 2025

Modified Files:
        pkgsrc/lang/nawk/files: FIXES Makefile README lex.c

Log Message:
lang/nawk: remove trailing whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/nawk/files/FIXES \
    pkgsrc/lang/nawk/files/README pkgsrc/lang/nawk/files/lex.c
cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/nawk/files/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/nawk/files/FIXES
diff -u pkgsrc/lang/nawk/files/FIXES:1.5 pkgsrc/lang/nawk/files/FIXES:1.6
--- pkgsrc/lang/nawk/files/FIXES:1.5    Sun Sep 17 10:32:05 2023
+++ pkgsrc/lang/nawk/files/FIXES        Wed Jul  9 17:11:22 2025
@@ -26,13 +26,13 @@ This file lists all bug fixes, changes, 
 was sent to the printers in August 1987.
 
 Sep 06, 2023:
-       Fix edge case where FS is changed on commandline. Thanks to 
+       Fix edge case where FS is changed on commandline. Thanks to
        Gordon Shephard and Miguel Pineiro Jr.
 
        Fix regular expression clobbering in the lexer, where lexer does
        not make a copy of regexp literals. also makedfa memory leaks have
        been plugged. Thanks to Miguel Pineiro Jr.
-       
+
 Dec 15, 2022:
        Force hex escapes in strings to be no more than two characters,
        as they already are in regular expressions. This brings internal
@@ -55,7 +55,7 @@ May 23, 2022:
 
 Mar 14, 2022:
        Historic bug: command-line "name=value" assignment had been
-       truncating its entry in ARGV. (circa 1989) Thanks to 
+       truncating its entry in ARGV. (circa 1989) Thanks to
        Miguel Pineiro Jr. <mpj%pineiro.cc@localhost>.
 
 Mar 3, 2022:
@@ -1425,5 +1425,3 @@ Sep 12, 1987:
        Very long printf strings caused core dump;
        fixed aprintf, asprintf, format to catch them.
        Can still get a core dump in printf itself.
-
-
Index: pkgsrc/lang/nawk/files/README
diff -u pkgsrc/lang/nawk/files/README:1.5 pkgsrc/lang/nawk/files/README:1.6
--- pkgsrc/lang/nawk/files/README:1.5   Sun Sep 17 10:32:05 2023
+++ pkgsrc/lang/nawk/files/README       Wed Jul  9 17:11:22 2025
@@ -109,7 +109,7 @@ More generally, turning on optimization 
 
 ## A Note About Releases
 
-We don't usually do releases. 
+We don't usually do releases.
 
 ## A Note About Maintenance
 
Index: pkgsrc/lang/nawk/files/lex.c
diff -u pkgsrc/lang/nawk/files/lex.c:1.5 pkgsrc/lang/nawk/files/lex.c:1.6
--- pkgsrc/lang/nawk/files/lex.c:1.5    Sun Sep 17 10:32:06 2023
+++ pkgsrc/lang/nawk/files/lex.c        Wed Jul  9 17:11:22 2025
@@ -592,7 +592,7 @@ int input(void)     /* get next lexical inpu
 
 void unput(int c)      /* put lexical character back on input */
 {
-       if (c == '\n')  
+       if (c == '\n')
                lineno--;
        if (yysptr >= yysbuf + sizeof(yysbuf))
                FATAL("pushed back too much: %.20s...", yysbuf);

Index: pkgsrc/lang/nawk/files/Makefile
diff -u pkgsrc/lang/nawk/files/Makefile:1.4 pkgsrc/lang/nawk/files/Makefile:1.5
--- pkgsrc/lang/nawk/files/Makefile:1.4 Fri Feb 24 20:57:50 2023
+++ pkgsrc/lang/nawk/files/Makefile     Wed Jul  9 17:11:22 2025
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.4 2023/02/24 20:57:50 vins Exp $
+# $NetBSD: Makefile,v 1.5 2025/07/09 17:11:22 rillig Exp $
 #
 # This file is copied from "makefile.orig" with the following
 # modifications for pkgsrc:
 #
 #    * Some problematic comment lines and unnecessary make targets have
-#      been stripped. 
+#      been stripped.
 #    * Use the supplied awkgram.tab.[ch] files instead of regenerating
 #      them with yacc.
 #    * Use the supplied proctab.c file instead of regenerating it



Home | Main Index | Thread Index | Old Index