* doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:

Fix description of how the buggy `sed' works.
This commit is contained in:
Ralf Wildenhues 2006-05-25 17:23:11 +00:00
parent 0d6c1e5aa0
commit c1ea1267a6
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-05-25 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:
Fix description of how the buggy `sed' works.
2006-05-25 Noah Misch <noah@cs.caltech.edu>
Sync from Automake:

View File

@ -13370,8 +13370,8 @@ kept
deleted
@end example
Why? When processing line 1, (a) matches, therefore sets the @samp{t}
flag, (b)b jumps to (d), and the output is produced. When processing
Why? When processing line 1, (c) matches, therefore sets the @samp{t}
flag, and the output is produced. When processing
line 2, the @samp{t} flag is still set (this is the bug). Command (a)
fails to match, but @command{sed} is not supposed to clear the @samp{t}
flag when a substitution fails. Command (b) sees that the flag is set,