CVS commit: src/usr.bin/tr

2021-06-14 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Jun 14 17:22:23 UTC 2021 Modified Files: src/usr.bin/tr: tr.1 Log Message: add alphabetic to lower for consistency (nabijaczleweli) To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/usr.bin/tr/tr.1 Please

CVS commit: src/usr.bin/tr

2018-05-26 Thread Leonardo Taccari
Module Name:src Committed By: leot Date: Sat May 26 11:20:31 UTC 2018 Modified Files: src/usr.bin/tr: str.c Log Message: Do not accept invalid octal character values (>= 0400). This also avoid possible stack corruption (e.g. previously `tr -s '\400'' or similars lead to t

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 01:54:36 UTC 2013 Modified Files: src/usr.bin/tr: str.c tr.c Log Message: Whitespace. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/usr.bin/tr/str.c cvs rdiff -u -r1.19 -r1.20 src/usr.bin/tr/tr.c

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 01:49:40 UTC 2013 Modified Files: src/usr.bin/tr: str.c Log Message: Fix another bug, relating to parsing the [=x=] syntax. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/usr.bin/tr/str.c Please

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 01:42:36 UTC 2013 Modified Files: src/usr.bin/tr: str.c Log Message: Tidy up more. This is pretty ratty code. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/usr.bin/tr/str.c Please note that diff

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 01:29:28 UTC 2013 Modified Files: src/usr.bin/tr: str.c Log Message: Tidy up. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/usr.bin/tr/str.c Please note that diffs are not public domain; they ar

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 01:00:13 UTC 2013 Modified Files: src/usr.bin/tr: Makefile str.c Log Message: Pass -Wpointer-sign. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/usr.bin/tr/Makefile cvs rdiff -u -r1.24 -r1.25 src/u

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 00:52:17 UTC 2013 Modified Files: src/usr.bin/tr: str.c Log Message: avoid undefined behavior. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/usr.bin/tr/str.c Please note that diffs are not publi

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 00:49:15 UTC 2013 Modified Files: src/usr.bin/tr: tr.c Log Message: Don't explicitly zero bss variables that are already zeroed. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/usr.bin/tr/tr.c Ple

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 00:48:37 UTC 2013 Modified Files: src/usr.bin/tr: tr.c Log Message: Add comments explaining how this works. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/usr.bin/tr/tr.c Please note that diffs a

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 00:39:22 UTC 2013 Modified Files: src/usr.bin/tr: extern.h str.c tr.c Log Message: Simplify the parser handling. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/usr.bin/tr/extern.h cvs rdiff -u -r1

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 00:34:09 UTC 2013 Modified Files: src/usr.bin/tr: tr.c Log Message: Remove silly written-out initialization of string1. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/usr.bin/tr/tr.c Please note

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 00:28:46 UTC 2013 Modified Files: src/usr.bin/tr: tr.c Log Message: Make tr -c work. Fixes PR 48113. When -c is in effect, scan string1 first, complement it, and then iterate over the results while scanning string2.

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 00:12:47 UTC 2013 Modified Files: src/usr.bin/tr: tr.c Log Message: apply some CSE To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/usr.bin/tr/tr.c Please note that diffs are not public domain; the

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 00:11:46 UTC 2013 Modified Files: src/usr.bin/tr: tr.c Log Message: Restore preexisting wrong behavior of tr -c (translates all characters to the last letter in string2) instead of a different wrong behavior (translat

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 00:05:49 UTC 2013 Modified Files: src/usr.bin/tr: extern.h str.c tr.c Log Message: sprinkle const To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/usr.bin/tr/extern.h cvs rdiff -u -r1.21 -r1.22 src/u

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Aug 11 00:04:14 UTC 2013 Modified Files: src/usr.bin/tr: extern.h str.c tr.c Log Message: Make the parser state opaque. While here, fix a memory leak when using the [:foo:] syntax. To generate a diff of this commit: cvs rd

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Aug 10 23:54:41 UTC 2013 Modified Files: src/usr.bin/tr: extern.h str.c tr.c Log Message: Expose less of the parser state outside str.c. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/usr.bin/tr/extern.h c

CVS commit: src/usr.bin/tr

2013-08-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Aug 10 20:59:27 UTC 2013 Modified Files: src/usr.bin/tr: tr.1 Log Message: punctuation usage To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/usr.bin/tr/tr.1 Please note that diffs are not public domain;

CVS commit: src/usr.bin/tr

2013-05-29 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Wed May 29 15:08:30 UTC 2013 Modified Files: src/usr.bin/tr: tr.1 Log Message: Expand "it's", and fix fix convention notation. >From Bug Hunting. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/usr.bin/tr/tr.1 P

CVS commit: src/usr.bin/tr

2013-05-29 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Wed May 29 15:04:37 UTC 2013 Modified Files: src/usr.bin/tr: tr.1 Log Message: - Improve wording and punctuation; - use `.Ex' macro for `EXIT STATUS' section; - add `SEE ALSO' section, referencing (back) dd(1) and sed(1); - bump date

CVS commit: src/usr.bin/tr

2011-09-08 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Sep 8 12:00:26 UTC 2011 Modified Files: src/usr.bin/tr: str.c Log Message: revert previous; don't change the logic. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/usr.bin/tr/str.c Please note that diff

CVS commit: src/usr.bin/tr

2011-09-07 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Sep 8 01:19:52 UTC 2011 Modified Files: src/usr.bin/tr: str.c Log Message: don't forget to 0 init the rest of the array since now we removed the memset To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/usr

CVS commit: src/usr.bin/tr

2011-09-07 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Sep 8 01:18:44 UTC 2011 Modified Files: src/usr.bin/tr: str.c Log Message: a little more KNF, plus add \e (from the previous commit) To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/usr.bin/tr/str.c Plea

CVS commit: src/usr.bin/tr

2011-09-07 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Sep 8 01:18:06 UTC 2011 Modified Files: src/usr.bin/tr: str.c Log Message: It is pointless to assign to the CLASS.set member and never use it again. Perhaps the author meant to check if it is already set and not allocated i

CVS commit: src/usr.bin/tr

2011-09-07 Thread Joerg Sonnenberger
Module Name:src Committed By: joerg Date: Wed Sep 7 22:59:19 UTC 2011 Modified Files: src/usr.bin/tr: str.c Log Message: Add comment to explain the const issue to avoid future trouble. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/usr.bin/tr/str.c P

CVS commit: src/usr.bin/tr

2011-09-07 Thread Jeff Rizzo
Module Name:src Committed By: riz Date: Wed Sep 7 18:21:41 UTC 2011 Modified Files: src/usr.bin/tr: str.c Log Message: Remove newly-introduced const qualifier from static CLASS classes[], as CLASS->set gets changed in genclass(). Fixes a segfault doing: tr '[:lower:]' '

CVS commit: src/usr.bin/tr

2011-09-06 Thread Joerg Sonnenberger
Module Name:src Committed By: joerg Date: Tue Sep 6 18:33:46 UTC 2011 Modified Files: src/usr.bin/tr: extern.h str.c tr.c Log Message: ANSIfy. Sprinkle const and __dead. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/usr.bin/tr/extern.h cvs rdiff -u -r1