summaryrefslogtreecommitdiff
path: root/lispref
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-07-27 13:28:26 +0000
committerGerd Moellmann <gerd@gnu.org>2000-07-27 13:28:26 +0000
commitb548072f27ec8d7c68e4cdc56ac9e52e780ba29e (patch)
tree22bd57bf27e748e721ddabccbf005bc475800b80 /lispref
parent1beefde776533eaa061c6a346ab64fe94535de7f (diff)
downloademacs-b548072f27ec8d7c68e4cdc56ac9e52e780ba29e.tar.gz
*** empty log message ***
Diffstat (limited to 'lispref')
-rw-r--r--lispref/variables.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/variables.texi b/lispref/variables.texi
index 222206561ee..37528cc69af 100644
--- a/lispref/variables.texi
+++ b/lispref/variables.texi
@@ -659,7 +659,7 @@ variable. Here's a safe way to avoid that:
@var{docstring})
(unless my-mode-map
(let ((map (make-sparse-keymap)))
- (define-key my-mode-map "\C-c\C-a" 'my-command)
+ (define-key map "\C-c\C-a" 'my-command)
@dots{}
(setq my-mode-map map)))
@end example