diff options
| author | Eli Zaretskii | 2001-06-01 16:54:11 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-06-01 16:54:11 +0000 |
| commit | acead980dff378f5768b85f9ca5cb0ef9751b341 (patch) | |
| tree | 2c6780ff51e38b1c933f6e3574cec71062a23085 | |
| parent | ec57454f95cc746faa850bd5b20ebd5ef0aa9f83 (diff) | |
| download | emacs-acead980dff378f5768b85f9ca5cb0ef9751b341.tar.gz emacs-acead980dff378f5768b85f9ca5cb0ef9751b341.zip | |
Proofreading changes from Tim Goodwin <tjg@star.le.ac.uk>.
| -rw-r--r-- | man/custom.texi | 8 | ||||
| -rw-r--r-- | man/trouble.texi | 2 |
2 files changed, 4 insertions, 6 deletions
diff --git a/man/custom.texi b/man/custom.texi index c98471bcf2f..bb9baa1f23a 100644 --- a/man/custom.texi +++ b/man/custom.texi | |||
| @@ -1629,9 +1629,7 @@ the first three examples, above, using vectors: | |||
| 1629 | 1629 | ||
| 1630 | @example | 1630 | @example |
| 1631 | (global-set-key [?\C-z] 'shell) | 1631 | (global-set-key [?\C-z] 'shell) |
| 1632 | |||
| 1633 | (global-set-key [?\C-x ?l] 'make-symbolic-link) | 1632 | (global-set-key [?\C-x ?l] 'make-symbolic-link) |
| 1634 | |||
| 1635 | (global-set-key [?\C-x ?\t] 'indent-rigidly) | 1633 | (global-set-key [?\C-x ?\t] 'indent-rigidly) |
| 1636 | @end example | 1634 | @end example |
| 1637 | 1635 | ||
| @@ -2156,7 +2154,7 @@ keys which send non-ASCII characters. | |||
| 2156 | @code{nil} stands for `false'. | 2154 | @code{nil} stands for `false'. |
| 2157 | 2155 | ||
| 2158 | @item Other Lisp objects: | 2156 | @item Other Lisp objects: |
| 2159 | Write a single-quote (') followed by the Lisp object you want. | 2157 | Write a single-quote (@code{'}) followed by the Lisp object you want. |
| 2160 | @end table | 2158 | @end table |
| 2161 | 2159 | ||
| 2162 | @node Init Examples | 2160 | @node Init Examples |
| @@ -2275,8 +2273,8 @@ Here an absolute file name is used, so no searching is done. | |||
| 2275 | @cindex loading Lisp libraries automatically | 2273 | @cindex loading Lisp libraries automatically |
| 2276 | @cindex autoload Lisp libraries | 2274 | @cindex autoload Lisp libraries |
| 2277 | Tell Emacs to automatically load a Lisp library named @file{mypackage} | 2275 | Tell Emacs to automatically load a Lisp library named @file{mypackage} |
| 2278 | (i.e.@: a file @file{mypackage.elc} or @file{mypackage.el}) when you | 2276 | (i.e.@: a file @file{mypackage.elc} or @file{mypackage.el}) when the |
| 2279 | the function @code{myfunction} in that library is called: | 2277 | function @code{myfunction} in that library is called: |
| 2280 | 2278 | ||
| 2281 | @example | 2279 | @example |
| 2282 | (autoload 'myfunction "mypackage" "Do what I say." t) | 2280 | (autoload 'myfunction "mypackage" "Do what I say." t) |
diff --git a/man/trouble.texi b/man/trouble.texi index ab42bae0566..ee65d7315fe 100644 --- a/man/trouble.texi +++ b/man/trouble.texi | |||
| @@ -317,7 +317,7 @@ its memory reserve automatically when it sees sufficient free space | |||
| 317 | available, in case you run out of memory another time. | 317 | available, in case you run out of memory another time. |
| 318 | 318 | ||
| 319 | Do not use @kbd{M-x buffer-menu} to save or kill buffers when you run | 319 | Do not use @kbd{M-x buffer-menu} to save or kill buffers when you run |
| 320 | out of memory, because the buffer menu needs a fair amount memory | 320 | out of memory, because the buffer menu needs a fair amount of memory |
| 321 | itself, and the reserve supply may not be enough. | 321 | itself, and the reserve supply may not be enough. |
| 322 | 322 | ||
| 323 | @node After a Crash | 323 | @node After a Crash |