mike@ists.ists.ca (Mike Clarkson) (06/27/90)
This is a small patch to fix a bug in the last release, and clean
a couple of minor points in the manual.
Unshar this file, and patch with
patch -p0 < patch.2
Mike.
--
Mike Clarkson mike@ists.ists.ca
Institute for Space and Terrestrial Science uunet!attcan!ists!mike
York University, North York, Ontario, FORTRAN - just say no.
CANADA M3J 1P3 +1 (416) 736-5611
#! /bin/sh
# This is a shell archive. Remove anything before this line, then unpack
# it by saving it into a file and typing "sh file". To overwrite existing
# files, type "sh file -c". You can also feed this as standard input via
# unshar, or by typing "sh <file", e.g.. If this archive is complete, you
# will see the following message at the end:
# "End of shell archive."
# Contents: patch.2
# Wrapped by mike@sam on Sun Jun 24 18:13:15 1990
PATH=/bin:/usr/bin:/usr/ucb ; export PATH
if test -f 'patch.2' -a "${1}" != "-c" ; then
echo shar: Will not clobber existing file \"'patch.2'\"
else
echo shar: Extracting \"'patch.2'\" \(6835 characters\)
sed "s/^X//" >'patch.2' <<'END_OF_FILE'
Xdiff -cr /tmp/old/CHANGES ./CHANGES
X*** /tmp/old/CHANGES Fri Jun 22 13:26:44 1990
X--- ./CHANGES Sun Jun 24 18:08:30 1990
X***************
X*** 14,19 ****
X Updated scheme-fmt so it won't conflict with texinfo.
X Renamed the long files to < 14 chars for SysV
X Made the manual a {book} so it starts chapters on the odd page.
X! Changed the indexes to \chapters
X
X
X--- 14,23 ----
X Updated scheme-fmt so it won't conflict with texinfo.
X Renamed the long files to < 14 chars for SysV
X Made the manual a {book} so it starts chapters on the odd page.
X! Added support for \unnumbered \unnumberedsec etc.
X! Changed the indexes to \unnumbered.
X
X
X+ 1.3.1 Second Patch - June 24, 1990
X+ Fixed a blunder that broke the description environment.
X+ Changed the manual to tell people to use .login instead .cshrc.
Xdiff -cr /tmp/old/README ./README
X*** /tmp/old/README Fri Jun 22 13:26:45 1990
X--- ./README Sun Jun 24 18:08:32 1990
X***************
X*** 1,4 ****
X! This is version 1.3 of the LaTeXinfo documentation, and is for Version 18
X of GNU Emacs.
X
X Documentation for GNU utilities and libraries is usually written in a
X--- 1,4 ----
X! This is version 1.3.1 of the LaTeXinfo documentation, and is for Version 18
X of GNU Emacs.
X
X Documentation for GNU utilities and libraries is usually written in a
X***************
X*** 40,46 ****
X
X 1) edit the file .login to set the LATEXINFO environment variable to
X point to this directory.
X! 2) edit your .cshrc to include a command to source this .login file
X each time you log in.
X 3) source this .login file now so that you can proceed.
X 4) edit the file manual/Makefile to set
X--- 40,46 ----
X
X 1) edit the file .login to set the LATEXINFO environment variable to
X point to this directory.
X! 2) edit your .login to include a command to source this .login file
X each time you log in.
X 3) source this .login file now so that you can proceed.
X 4) edit the file manual/Makefile to set
Xdiff -cr /tmp/old/latexinfo.el ./latexinfo.el
X*** /tmp/old/latexinfo.el Fri Jun 22 13:26:47 1990
X--- ./latexinfo.el Sun Jun 24 18:09:32 1990
X***************
X*** 40,46 ****
X (put 'latexinfoversion 'latexinfo-format 'latexinfo-format-latexinfoversion)
X (defun latexinfo-format-latexinfoversion ()
X (latexinfo-parse-noarg)
X! (insert "1.3"))
X
X (defvar latexinfo-format-syntax-table nil)
X
X--- 40,46 ----
X (put 'latexinfoversion 'latexinfo-format 'latexinfo-format-latexinfoversion)
X (defun latexinfo-format-latexinfoversion ()
X (latexinfo-parse-noarg)
X! (insert "1.3.1"))
X
X (defvar latexinfo-format-syntax-table nil)
X
X***************
X*** 761,767 ****
X
X (put 'description 'latexinfo-format 'latexinfo-description)
X (defun latexinfo-description ()
X! (latexinfo-push-stack 'description "\\asis")
X (setq fill-column (- fill-column 5))
X (latexinfo-discard-line))
X
X--- 761,767 ----
X
X (put 'description 'latexinfo-format 'latexinfo-description)
X (defun latexinfo-description ()
X! (latexinfo-push-stack 'description 0)
X (setq fill-column (- fill-column 5))
X (latexinfo-discard-line))
X
X***************
X*** 1483,1487 ****
X--- 1483,1489 ----
X (put 'label 'latexinfo-format 'latexinfo-discard-line-with-args)
X (put 'index 'latexinfo-format 'latexinfo-format-noop)
X (put 'cpsubindex 'latexinfo-format 'latexinfo-discard-line-with-args)
X+
X+ (put 'asis 'latexinfo-format 'latexinfo-format-noop)
X
X (provide 'latexinfo)
Xdiff -cr /tmp/old/latexinfo.sty ./latexinfo.sty
X*** /tmp/old/latexinfo.sty Fri Jun 22 13:26:48 1990
X--- ./latexinfo.sty Sun Jun 24 18:08:51 1990
X***************
X*** 3,9 ****
X % Copyright (C) 1985, 1986 Richard M. Stallman
X % Copyleft (0) 1988, 1989 Michael E. Clarkson
X
X! \def\latexinfoversion{1.3}
X \message{Loading Latexinfo package [Version \latexinfoversion]:}
X \message{}
X
X--- 3,9 ----
X % Copyright (C) 1985, 1986 Richard M. Stallman
X % Copyleft (0) 1988, 1989 Michael E. Clarkson
X
X! \def\latexinfoversion{1.3.1}
X \message{Loading Latexinfo package [Version \latexinfoversion]:}
X \message{}
X
XCommon subdirectories: /tmp/old/manual and ./manual
Xdiff -cr /tmp/old/manual/latexinfo.tex ./manual/latexinfo.tex
X*** /tmp/old/manual/latexinfo.tex Fri Jun 22 13:27:08 1990
X--- ./manual/latexinfo.tex Sun Jun 24 18:09:41 1990
X***************
X*** 689,697 ****
X copyright notice should include the year followed by the name of the person
X or organization who has the copyright. When the copyright notice is on the
X back of the title page, the page is not numbered. Therefore, this is
X! usually done by putting a \code{\back thispagestyle\{empty\}} before you
X! clear this page . See the \LaTeX\ Manual for more details on the
X! \code{pagestyle} command (\cite{Lamport}).\refill
X
X \findex{filll}
X \findex{vspace}
X--- 689,697 ----
X copyright notice should include the year followed by the name of the person
X or organization who has the copyright. When the copyright notice is on the
X back of the title page, the page is not numbered. Therefore, this is
X! usually done while a \code{\back pagestyle\{empty\}} is in effect. See the
X! \LaTeX\ Manual for more details on the \code{pagestyle} command
X! (\cite{Lamport}).\refill
X
X \findex{filll}
X \findex{vspace}
X***************
X*** 4536,4551 ****
X
X However, you may want to specify the location of the file yourself. One
X way is to set the \samp{TEXINPUTS} environment variable in your
X! \file{.cshrc} or \file{.profile} file. The \samp{TEXINPUTS} environment
X variable will tell \LaTeX\ where to find the \file{latexinfo.sty} file
X and any other file that you might want \LaTeX\ to use. Whether you use
X! a \file{.cshrc} or \file{.profile} file depends on whether you use
X \samp{csh} or \samp{sh} for your shell command interpreter. When you
X! use \samp{csh}, it looks to the \file{.cshrc} file for initialization
X information, and when you use \samp{sh}, it looks to the \file{.profile}
X file.\refill
X
X! In a \file{.cshrc} file, you could use the following \code{csh} command
X sequence:\refill
X
X \begin{verbatim}
X--- 4536,4551 ----
X
X However, you may want to specify the location of the file yourself. One
X way is to set the \samp{TEXINPUTS} environment variable in your
X! \file{.login} or \file{.profile} file. The \samp{TEXINPUTS} environment
X variable will tell \LaTeX\ where to find the \file{latexinfo.sty} file
X and any other file that you might want \LaTeX\ to use. Whether you use
X! a \file{.login} or \file{.profile} file depends on whether you use
X \samp{csh} or \samp{sh} for your shell command interpreter. When you
X! use \samp{csh}, it looks to the \file{.login} file for initialization
X information, and when you use \samp{sh}, it looks to the \file{.profile}
X file.\refill
X
X! In a \file{.login} file, you could use the following \code{csh} command
X sequence:\refill
X
X \begin{verbatim}
END_OF_FILE
if test 6835 -ne `wc -c <'patch.2'`; then
echo shar: \"'patch.2'\" unpacked with wrong size!
fi
# end of 'patch.2'
fi
echo shar: End of shell archive.
exit 0