From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10743 invoked from network); 20 Jul 1999 05:27:33 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 20 Jul 1999 05:27:33 -0000 Received: (qmail 13206 invoked by alias); 20 Jul 1999 05:27:25 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7213 Received: (qmail 13199 invoked from network); 20 Jul 1999 05:27:24 -0000 To: zsh-workers@sunsite.auc.dk Subject: Re: Zsh online manuals under SunOS 5.7. References: MIME-Version: 1.0 (generated by AKEMI 1.13.2 - =?ISO-2022-JP?B?Ig==?= =?ISO-2022-JP?B?GyRCQTA0Y0s8GyhCIg==?=) Content-Type: text/plain; charset=US-ASCII From: Tanaka Akira Date: 20 Jul 1999 14:27:16 +0900 In-Reply-To: Tanaka Akira's message of "20 Jul 1999 04:18:35 +0900" Message-ID: User-Agent: Chao-gnus/6.12.5 AKEMI/1.13.2 (=?ISO-2022-JP?B?GyRCQTAbKEI=?= =?ISO-2022-JP?B?GyRCNGNLPBsoQg==?=) FLAM-DOODLE/1.12.6 (=?ISO-2022-JP?B?GyRCM3cbKEI=?= 10R4.0/5.0) Emacs/20.3.11 (sparc-sun-solaris2.6) MULE/4.0 (HANANOEN) In article , Tanaka Akira writes: > Under SunOS 5.7, if windex is generated by /bin/catman -w, man command > cannot refer zsh online manuals. I tried to make workaround for this problem. At least, following patch fix the problem under SunOS 5.7. --- Doc/Makefile.in- Tue Jul 20 13:26:03 1999 +++ Doc/Makefile.in Tue Jul 20 14:24:07 1999 @@ -83,7 +83,7 @@ */*) target=$@ ;; \ *) target=$(sdir)/$@ ;; \ esac; \ - $(YODL) -o $$target -I$(sdir) -w zman.yo version.yo $< || exit 1; \ + $(YODL) -I$(sdir) -w zman.yo version.yo $< | sed -e '1s/\\-/-/g' -e '/^\.SH ""NAME/,/^\.SH ""/ { /^\.'\''/d; }' > $$target || exit 1; \ test -f $$target zsh_us.ps: zsh.dvi @@ -100,7 +100,7 @@ */*) target=$@ ;; \ *) target=$(sdir)/$@ ;; \ esac; \ - $(YODL) -o $$target -I$(sdir) -DZSHALL -w zman.yo version.yo zsh.yo || exit 1; \ + $(YODL) -I$(sdir) -DZSHALL -w zman.yo version.yo zsh.yo | sed -e '1s/\\-/-/g' -e '/^\.SH ""NAME/,/^\.SH ""/ { /^\.'\''/d; }' > $$target || exit 1; \ test -f $$target ../META-FAQ: META-FAQ.yo Zsh/metafaq.yo -- Tanaka Akira