aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/sed
Commit message (Collapse)AuthorAgeFilesLines
* Avoid use of direct troff requests in mdoc(7) manual pages.Ruslan Ermilov2000-11-101-36/+33
| | | | Notes: svn path=/head/; revision=68575
* Small style fix '=' -> ' = 'Nick Sayer2000-05-111-1/+1
| | | | Notes: svn path=/head/; revision=60401
* Fix compatibility issue in sed. Do so by explicitely adding aNick Sayer2000-05-111-1/+5
| | | | | | | | | newline to the end of any -e argument. PR: bin/18474 Notes: svn path=/head/; revision=60394
* Add DIAGNOSTICS section namePhilippe Charnier2000-03-261-3/+3
| | | | Notes: svn path=/head/; revision=58628
* Uncorrupt the SCCS id (s/ From: / /).Brian Feldman2000-03-201-2/+2
| | | | | | | | | Put a tab before the comment for "rflags". Submitted by: bde Notes: svn path=/head/; revision=58407
* Fix a couple hard sentence breaks I inadvertently introduced. Also,Brian Feldman2000-03-201-7/+9
| | | | | | | | | update a bit of English into something easier to read. Prompted by: sheldonh (thanks!) Notes: svn path=/head/; revision=58388
* Add a new flag: -E enables "extended" regular expressions.Brian Feldman2000-03-194-8/+21
| | | | Notes: svn path=/head/; revision=58309
* Add $FreeBSD$.Brian Feldman2000-03-191-1/+2
| | | | Notes: svn path=/head/; revision=58307
* PR: 10850Bill Swingle2000-02-151-6/+10
| | | | | | | Submitted by: Scott Hazen Mueller <scott@zorch.sf-bay.org> Notes: svn path=/head/; revision=57219
* Escape the ':' so that is actually makes it into the double quotes.Steve Price1999-12-291-1/+1
| | | | | | | | PR: 15775 Submitted by: Martin Kammerhofer <mkamm@gmx.net> Notes: svn path=/head/; revision=55244
* $Id$ -> $FreeBSD$Peter Wemm1999-08-285-5/+5
| | | | Notes: svn path=/head/; revision=50477
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-07-121-0/+1
| | | | | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde Notes: svn path=/head/; revision=48792
* More egcs warning fixes:Warner Losh1999-04-251-2/+3
| | | | | | | | | | | | | o main returns int not void o use return 0 at end of main when needed o use braces to avoid potentially ambiguous else o don't default to type int o #ifdef 0 -> #if 0 Reviewed by: obrien and chuckr Notes: svn path=/head/; revision=46081
* Fix a new bug introduced by the previous bug fixArchie Cobbs1998-12-083-10/+23
| | | | Notes: svn path=/head/; revision=41602
* Fix brokenness compiling "s/pat/subst/" when length of subst is >= 4090 chars.Archie Cobbs1998-12-071-3/+6
| | | | | | | PR: bin/7939 Notes: svn path=/head/; revision=41573
* Compile -WallArchie Cobbs1998-12-072-2/+3
| | | | Notes: svn path=/head/; revision=41572
* Terminate our output string correctly if we've gotBrian Somers1998-09-221-1/+2
| | | | | | | | | | an ``a'' command that has an escaped newline on the last line of the last script that we're processing. This fixes exmh2/scripts/build when /etc/malloc.conf -> AJ Notes: svn path=/head/; revision=39571
* Make 'y' command 8bit cleanAndrey A. Chernov1998-04-291-2/+2
| | | | | | | PR: 6458 Notes: svn path=/head/; revision=35520
* Remove local redefinition for err(). Add usage().Philippe Charnier1997-08-117-155/+135
| | | | Notes: svn path=/head/; revision=28066
* Show the real revision date and not the date that thisSteve Price1997-06-231-1/+1
| | | | | | | manpage is being viewed. Notes: svn path=/head/; revision=26826
* compare return value from getopt against -1 rather than EOF, per the finalWarner Losh1997-03-291-1/+1
| | | | | | | posix standard on the topic. Notes: svn path=/head/; revision=24360
* Add a missing '\' to some text.Mike Pritchard1997-03-121-1/+1
| | | | | | | Obtained from: NetBSD-bugs mailing list PR# 3321 Notes: svn path=/head/; revision=23791
* fix C programmer's bug number 12.2Wolfram Schneider1996-11-171-3/+8
| | | | | | | submitted by: bruce Notes: svn path=/head/; revision=19829
* Fix the C programmer's bug #1: EOF is of type `int', not `char'.Joerg Wunsch1996-11-171-6/+2
| | | | | | | | | Strong 2.2 candidate. Submitted by: wosch Notes: svn path=/head/; revision=19825
* Make it at least semi-workedAndrey A. Chernov1996-08-111-2/+2
| | | | Notes: svn path=/head/; revision=17523
* Localize itAndrey A. Chernov1996-08-113-5/+7
| | | | | | | 8bit cleanup Notes: svn path=/head/; revision=17522
* Yet^2 another fix for the line continuation bug.Bruce Evans1996-07-171-5/+5
| | | | | | | | | | | | | | | The fundamental problem with the original code is that it accesses p[-2] which is one before the beginning of the input buffer for empty lines. rev.1.6 just moved the problem from failures when p[-2] happens to be '\\' to failures when it happens to be '\0'. rev.1.5 was confused about the trailing newline and other things. I went back to rev.1.5 and fixed it. The result is the same as Keith Bostic's final version in PR 1356 except it loses more gracefully for excessively long input lines. Notes: svn path=/head/; revision=17195
* Yet another fix for the line continuation bug in sed. Keith's patchDavid Greenman1996-06-261-7/+5
| | | | | | | | | introduced a new bug. This fix appears to work correctly. Fixes PR#1350. Submitted by: mark@linus.demon.co.uk (Mark Valentine) Notes: svn path=/head/; revision=16753
* Fix from Keith Bostic <bostic@bsdi.com> for bug in sed dealing withDavid Greenman1996-06-191-5/+7
| | | | | | | | | continuation lines. Submitted by: Keith Bostic via Kirk McKusick Notes: svn path=/head/; revision=16510
* Merge various fixes from NetBSD. This will allow the WordPerfect forJordan K. Hubbard1995-08-163-47/+87
| | | | | | | SCO installation to run all the way through (some POSIX fixes). Notes: svn path=/head/; revision=10075
* Remove trailing whitespace.Rodney W. Grimes1995-05-302-8/+8
| | | | Notes: svn path=/head/; revision=8874
* Sed dumps core when linked with some coalescing malloc because itJoerg Wunsch1995-04-051-0/+2
| | | | | | | | | doesn't initialize malloced structure. Submitted by: vode@hut.fi Notes: svn path=/head/; revision=7637
* Fix spelling error (scipt -> script).Rodney W. Grimes1995-02-231-1/+1
| | | | | | | | Submitted by: <jhawk@MIT.EDU> Obtained from: NetBSD-bugs mailling list Notes: svn path=/head/; revision=6666
* Correct a bug in the P function: according to 7th edition UNIX (tm), theJean-Marc Zucconi1995-02-061-1/+1
| | | | | | | | | | | | newline must be part of the pattern space i.e. `echo a|sed -e P' must print a a and not aa This is consistent with gnu sed, SunOS, Ultrix (and probably others!) Notes: svn path=/head/; revision=6209
* Submitted by: Philippe CharnierAndreas Schulz1994-12-011-1/+1
| | | | | | | Fixed a little typo: lable -> label. Notes: svn path=/head/; revision=4891
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-2712-0/+3631
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590