Artifact d8212ceb8c22c42a3a88ed3c4334a38b54353d99b9de3cc3595ad850d3e51745:
- Executable file
r37/help/mkhelp.dat
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 762) [annotate] [blame] [check-ins using] [more...]
- Executable file
r38/help/mkhelp.dat
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 762) [annotate] [blame] [check-ins using]
(setq package (getenv "package")) (when (not (filep (bldmsg "%w.rtf" package))) (prin2t "########## kein .RTF file gefunden") (exitlisp)) (setq file(open (bldmsg "%w.hpj" package) 'output)) (channelprintf file "[OPTIONS]%n") (channelprintf file "INDEX=main_index%n") (channelprintf file "TITLE=REDUCE Help System: %w%n" package) (channelprintf file "COMPRESS=true%n") (channelprintf file "WARNING=1%n") (channelprintf file "[FILES]%n") (channelprintf file "%w.rtf ; main topics%n" package) (close file) (setq file (open "do.bat" 'output)) (channelprintf file "f:\mstools\bin\hc30 %w%n" package) (channelprintf file "copy %w.hlp d:\redu35\help%n" package) (channelprintf file "del %w.hpj%n" package) (close file) (quit)