Document the fact that (current-local-map) and (urrent-global-map)
authorEric S. Raymond <esr@snark.thyrsus.com>
Mon, 5 May 2008 18:13:39 +0000 (18:13 +0000)
committerEric S. Raymond <esr@snark.thyrsus.com>
Mon, 5 May 2008 18:13:39 +0000 (18:13 +0000)
return references, not copies.

doc/lispref/ChangeLog
doc/lispref/keymaps.texi

index 17b3ede..2214ee0 100644 (file)
@@ -1,3 +1,8 @@
+2008-05-03  Eric S. Raymond  <esr@golux>
+
+       * keymaps.texi: Clarify that (current-local-map) and 
+       (current-global-map) return references, not copies.
+
 2008-05-02  Juri Linkov  <juri@jurta.org>
 
        * minibuf.texi (Text from Minibuffer): Document a list of
index 576a02f..f97fc6b 100644 (file)
@@ -766,9 +766,11 @@ out with.
 @end defvar
 
 @defun current-global-map
-This function returns the current global keymap.  This is the
-same as the value of @code{global-map} unless you change one or the
-other.
+This function returns the current global keymap.  This is the same as
+the value of @code{global-map} unless you change one or the other.
+The return value is a reference, not a copy; if you use
+@code{define-key} or other functions on it you will alter global
+bindings.
 
 @example
 @group
@@ -802,6 +804,10 @@ keymap.
 @end example
 @end defun
 
+@code{current-local-map} returns a reference to the local keymap, not
+a copy of it; if you use @code{define-key} or other functions on it 
+you will alter local bindings.
+
 @defun current-minor-mode-maps
 This function returns a list of the keymaps of currently enabled minor modes.
 @end defun