# HG changeset patch # User Melissa Weisshaus # Date 802625641 0 # Node ID 27144f55d1c6091062c0a3579c55c18757fdd38b # Parent 4eef12903112b3fc3cdd68e091ee30cd232c587f fixed errors that appeared during update to 19.29. diff -r 4eef12903112 -r 27144f55d1c6 lispref/compile.texi --- a/lispref/compile.texi Thu Jun 08 14:29:13 1995 +0000 +++ b/lispref/compile.texi Thu Jun 08 15:34:01 1995 +0000 @@ -238,7 +238,7 @@ Functions and variables loaded from a byte-compiled file access their documentation strings dynamically from the file whenever needed. This -saves space within Emacs, and make loading faster because the +saves space within Emacs, and makes loading faster because the documentation strings themselves need not be processed while loading the file. Actual access to the documentation strings becomes slower as a result, but this normally is not enough to bother users. diff -r 4eef12903112 -r 27144f55d1c6 lispref/loading.texi --- a/lispref/loading.texi Thu Jun 08 14:29:13 1995 +0000 +++ b/lispref/loading.texi Thu Jun 08 15:34:01 1995 +0000 @@ -181,7 +181,7 @@ Dumping Emacs uses a special value of @code{load-path}. If the value of @code{load-path} at the end of dumping is unchanged (that is, still the same special value), the dumped Emacs switches to the ordinary -@code{load-path} value when it starts up, as decribed above. But if +@code{load-path} value when it starts up, as described above. But if @code{load-path} has any other value at the end of dumping, that value is used for execution of the dumped Emacs also. @@ -616,7 +616,7 @@ In general, well-designed Lisp programs should not use this feature. The clean and modular ways to interact with a Lisp library are (1) examine and set the library's variables (those which are meant for -outside use), and and (2) call the library's functions. If you wish to +outside use), and (2) call the library's functions. If you wish to do (1), you can do it immediately---there is no need to wait for when the library is loaded. To do (2), you must load the library (preferably with @code{require}). diff -r 4eef12903112 -r 27144f55d1c6 lispref/numbers.texi --- a/lispref/numbers.texi Thu Jun 08 14:29:13 1995 +0000 +++ b/lispref/numbers.texi Thu Jun 08 15:34:01 1995 +0000 @@ -690,7 +690,7 @@ @example @group -;; @r{Decimal 134.217,727} +;; @r{Decimal 134,217,727} 0111 1111 1111 1111 1111 1111 1111 @end group @end example diff -r 4eef12903112 -r 27144f55d1c6 lispref/symbols.texi --- a/lispref/symbols.texi Thu Jun 08 14:29:13 1995 +0000 +++ b/lispref/symbols.texi Thu Jun 08 15:34:01 1995 +0000 @@ -506,7 +506,7 @@ @defun plist-put plist property value This stores @var{value} as the value of the @var{property} property in the property list @var{plist}. It may modify @var{plist} destructively, -or it may construct new list structure without altering the old. The +or it may construct a new list structure without altering the old. The function returns the modified property list, so you can store that back in the place where you got @var{plist}. For example,