]> git.eshelyaron.com Git - emacs.git/commitdiff
Proofreading changes from Tim Goodwin <tjg@star.le.ac.uk>.
authorEli Zaretskii <eliz@gnu.org>
Fri, 1 Jun 2001 16:54:11 +0000 (16:54 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 1 Jun 2001 16:54:11 +0000 (16:54 +0000)
man/custom.texi
man/trouble.texi

index c98471bcf2f01c140f057d625c32f4bbc7fc93b7..bb9baa1f23af5e36735d46dea7942c5e986960df 100644 (file)
@@ -1629,9 +1629,7 @@ the first three examples, above, using vectors:
 
 @example
 (global-set-key [?\C-z] 'shell)
-
 (global-set-key [?\C-x ?l] 'make-symbolic-link)
-
 (global-set-key [?\C-x ?\t] 'indent-rigidly)
 @end example
 
@@ -2156,7 +2154,7 @@ keys which send non-ASCII characters.
 @code{nil} stands for `false'.
 
 @item Other Lisp objects:
-Write a single-quote (') followed by the Lisp object you want.
+Write a single-quote (@code{'}) followed by the Lisp object you want.
 @end table
 
 @node Init Examples
@@ -2275,8 +2273,8 @@ Here an absolute file name is used, so no searching is done.
 @cindex loading Lisp libraries automatically
 @cindex autoload Lisp libraries
 Tell Emacs to automatically load a Lisp library named @file{mypackage}
-(i.e.@: a file @file{mypackage.elc} or @file{mypackage.el}) when you
-the function @code{myfunction} in that library is called:
+(i.e.@: a file @file{mypackage.elc} or @file{mypackage.el}) when the
+function @code{myfunction} in that library is called:
 
 @example
 (autoload 'myfunction "mypackage" "Do what I say." t)
index ab42bae05663f8836d00b756de9512eb4cdafb6b..ee65d7315fe599aa085940fba9bf085faf922922 100644 (file)
@@ -317,7 +317,7 @@ its memory reserve automatically when it sees sufficient free space
 available, in case you run out of memory another time.
 
   Do not use @kbd{M-x buffer-menu} to save or kill buffers when you run
-out of memory, because the buffer menu needs a fair amount memory
+out of memory, because the buffer menu needs a fair amount of memory
 itself, and the reserve supply may not be enough.
 
 @node After a Crash