aboutsummaryrefslogtreecommitdiffstats
path: root/man/custom.texi
diff options
context:
space:
mode:
authorEli Zaretskii2001-06-01 16:54:11 +0000
committerEli Zaretskii2001-06-01 16:54:11 +0000
commitacead980dff378f5768b85f9ca5cb0ef9751b341 (patch)
tree2c6780ff51e38b1c933f6e3574cec71062a23085 /man/custom.texi
parentec57454f95cc746faa850bd5b20ebd5ef0aa9f83 (diff)
downloademacs-acead980dff378f5768b85f9ca5cb0ef9751b341.tar.gz
emacs-acead980dff378f5768b85f9ca5cb0ef9751b341.zip
Proofreading changes from Tim Goodwin <tjg@star.le.ac.uk>.
Diffstat (limited to 'man/custom.texi')
-rw-r--r--man/custom.texi8
1 files changed, 3 insertions, 5 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:
2159Write a single-quote (') followed by the Lisp object you want. 2157Write 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
2277Tell Emacs to automatically load a Lisp library named @file{mypackage} 2275Tell 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
2279the function @code{myfunction} in that library is called: 2277function @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)