diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2000-06-08 14:36:24 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2000-06-08 14:36:24 +0000 |
commit | 748ab4f791b3dab0eed2d4baad16aaa5e0fb64a8 (patch) | |
tree | 60c090d7fe87b4ad613e15e8e538bd23045f780c /Doc | |
parent | 45d95dde4817285de344aea414e4543ef79efaab (diff) | |
download | zsh-748ab4f791b3dab0eed2d4baad16aaa5e0fb64a8.tar.gz zsh-748ab4f791b3dab0eed2d4baad16aaa5e0fb64a8.tar.xz zsh-748ab4f791b3dab0eed2d4baad16aaa5e0fb64a8.zip |
avoid bug in IRIX's sed and use new -K option to zparseopts in _urls
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Makefile.in b/Doc/Makefile.in index 29dafca3a..1240069ad 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -193,7 +193,7 @@ Zsh/modlist.yo: $(MODDOCSRC) ( \ echo "startitem()"; \ for modfile in $(MODDOCSRC); do \ - sed -ne '1{s|^COMMENT(!MOD!\(.*\)$$|item(tt(\1))(|;p;d;}' \ + sed -n -e '1{s|^COMMENT(!MOD!\(.*\)$$|item(tt(\1))(|;p;d;}' \ -e '/^!MOD!)$$/q;p' \ < $(sdir)/$$modfile; \ echo ")"; \ |