diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2005-08-19 22:08:54 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2005-08-19 22:08:54 +0000 |
commit | e3c1629ec59d1b2e527b2ebb688fa66256a42024 (patch) | |
tree | d355552821ee2e58bcb53e6858c8e98e6f3cf7f6 | |
parent | a6ebb7bfc3d1223860749a962703d56e7c81a098 (diff) | |
download | zsh-e3c1629ec59d1b2e527b2ebb688fa66256a42024.tar.gz zsh-e3c1629ec59d1b2e527b2ebb688fa66256a42024.tar.xz zsh-e3c1629ec59d1b2e527b2ebb688fa66256a42024.zip |
Filter apostrophes in \fB...\fP headers (since it appears that
yodl is not properly escaping them).
-rw-r--r-- | Doc/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/Makefile.in b/Doc/Makefile.in index c75d01620..afa6380c3 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -117,7 +117,8 @@ zsh.info: $(sdir)/zsh.texi esac; \ case '$(YODL)' in :*) touch $$target ;; *) \ echo $(YODL) -o $$target -I$(sdir) -w zman.yo version.yo $< ; \ - $(YODL) -I$(sdir) -w zman.yo version.yo $< | sed -e '1s/\\-/-/g' -e '/^\.'\''/d' > $$target \ + $(YODL) -I$(sdir) -w zman.yo version.yo $< | \ + sed -e '1s/\\-/-/g' -e '/^\.'\''/d' -e 's/\\fB'\''\\fP/\\fB\\\&'\''\\fP/' > $$target \ ;; esac; \ # These targets are no longer made by default, nor |