aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2007-11-29 01:08:57 +0000
committerRichard M. Stallman <[email protected]>2007-11-29 01:08:57 +0000
commit4bb6c266e4c36335826f4668076ec72af74a3971 (patch)
treeb9ec6f182c0afc188a95ef31df646e70d60b21c7
parente829b12cf2a0325f20cd1439bbb9a4738bcaa7f3 (diff)
(Fcurrent_local_map): Doc fix.
-rw-r--r--src/ChangeLog4
-rw-r--r--src/keymap.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 97070d1e3c..c7a7051003 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2007-11-29 Richard Stallman <[email protected]>
+
+ * keymap.c (Fcurrent_local_map): Doc fix.
+
2007-11-28 Petr Salinger <[email protected]> (tiny change)
* s/gnu-kfreebsd.h: New file.
diff --git a/src/keymap.c b/src/keymap.c
index 88b63e40fc..5cfa8e7e1c 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -2014,7 +2014,8 @@ If KEYMAP is nil, that means no local keymap. */)
}
DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0,
- doc: /* Return current buffer's local keymap, or nil if it has none. */)
+ doc: /* Return current buffer's local keymap, or nil if it has none.
+Normally the local keymap is set by the major mode with `use-local-map'. */)
()
{
return current_buffer->keymap;