aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Liu2013-04-18 10:20:12 +0800
committerLeo Liu2013-04-18 10:20:12 +0800
commit29f47822781c138daa36a6acda85b09bccc52a95 (patch)
tree02821cc8d419a9c78cd6fcd368f6a814e16c5b70
parentd36ed1c8e7a88757890edb629b7da73be05a9ae2 (diff)
downloademacs-29f47822781c138daa36a6acda85b09bccc52a95.tar.gz
emacs-29f47822781c138daa36a6acda85b09bccc52a95.zip
Add an additional key ? for describe-prefix-bindings
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/bindings.el2
4 files changed, 11 insertions, 1 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 2b7534dc1e7..0dd27a1c0c0 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
12013-04-18 Leo Liu <sdl.web@gmail.com>
2
3 * NEWS: Mention new key ? for describe-prefix-bindings.
4
12013-04-15 Christopher Schmidt <christopher@ch.ristopher.com> 52013-04-15 Christopher Schmidt <christopher@ch.ristopher.com>
2 6
3 * NEWS: Mention separation of package descriptor and name of 7 * NEWS: Mention separation of package descriptor and name of
diff --git a/etc/NEWS b/etc/NEWS
index 99d750b9742..8f64aa6e7ee 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -37,6 +37,8 @@ It is no longer needed, as the crt*.o files are no longer linked specially.
37 37
38* Changes in Emacs 24.4 38* Changes in Emacs 24.4
39 39
40** Key ? also describes prefix bindings like C-h.
41
40+++ 42+++
41** `apropos-variable' is now `apropos-user-option' 43** `apropos-variable' is now `apropos-user-option'
42`apropos-user-option' shows all user options while `apropos-variable' 44`apropos-user-option' shows all user options while `apropos-variable'
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6d8f1ee49dc..2e4050bec8c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12013-04-18 Leo Liu <sdl.web@gmail.com>
2
3 * bindings.el (help-event-list): Add ?\?.
4
12013-04-18 Stefan Monnier <monnier@iro.umontreal.ca> 52013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * subr.el (with-wrapper-hook): Declare obsolete. 7 * subr.el (with-wrapper-hook): Declare obsolete.
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 5c95bcd0baa..fe0eabb77af 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -675,7 +675,7 @@ language you are using."
675(garbage-collect) 675(garbage-collect)
676 676
677 677
678(setq help-event-list '(help f1)) 678(setq help-event-list '(help f1 ?\?))
679 679
680(make-variable-buffer-local 'minor-mode-overriding-map-alist) 680(make-variable-buffer-local 'minor-mode-overriding-map-alist)
681 681