aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Kaludercic2026-01-05 14:42:19 +0100
committerPhilip Kaludercic2026-01-10 12:38:05 +0100
commit5b89d4696560cfea8d00731921b038e16b73ec82 (patch)
tree596dfaf23b52041f4d2e113c6210fad7411a0bd0
parentc8d19034aa9997aed6a5ffe65064920b48c76e5f (diff)
downloademacs-5b89d4696560cfea8d00731921b038e16b73ec82.tar.gz
emacs-5b89d4696560cfea8d00731921b038e16b73ec82.zip
Bind 'apropos-user-option' to C-h u
* doc/emacs/help.texi: Adjust documentation. * etc/NEWS: Mention change. * lisp/help.el (help-map): Add binding.
-rw-r--r--doc/emacs/help.texi3
-rw-r--r--etc/NEWS5
-rw-r--r--lisp/help.el1
3 files changed, 8 insertions, 1 deletions
diff --git a/doc/emacs/help.texi b/doc/emacs/help.texi
index 657356cd825..8c4c2c82692 100644
--- a/doc/emacs/help.texi
+++ b/doc/emacs/help.texi
@@ -422,7 +422,8 @@ search for noninteractive functions too.
422Search for functions and variables. Both interactive functions 422Search for functions and variables. Both interactive functions
423(commands) and noninteractive functions can be found by this. 423(commands) and noninteractive functions can be found by this.
424 424
425@item M-x apropos-user-option 425@item C-h u
426@kindex C-h u
426@findex apropos-user-option 427@findex apropos-user-option
427Search for user-customizable variables. With a prefix argument, 428Search for user-customizable variables. With a prefix argument,
428search for non-customizable variables too. 429search for non-customizable variables too.
diff --git a/etc/NEWS b/etc/NEWS
index 98059ef15f6..68cb6c642fb 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -684,6 +684,11 @@ project, during completion. That makes some items shorter.
684The category defaults are the same as for 'buffer' but any user 684The category defaults are the same as for 'buffer' but any user
685customizations would need to be re-added. 685customizations would need to be re-added.
686 686
687** Help
688
689+++
690*** New keybinding 'C-h u' for 'apropos-user-option'.
691
687** IDLWAVE has been moved to GNU ELPA. 692** IDLWAVE has been moved to GNU ELPA.
688The version bundled with Emacs is out-of-date, and is now marked as 693The version bundled with Emacs is out-of-date, and is now marked as
689obsolete. Use 'M-x list-packages' to install the 'idlwave' package from 694obsolete. Use 'M-x list-packages' to install the 'idlwave' package from
diff --git a/lisp/help.el b/lisp/help.el
index 0bb1053fa6a..76c3770fbba 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -99,6 +99,7 @@ buffer.")
99 "f" #'describe-function 99 "f" #'describe-function
100 "g" #'describe-gnu-project 100 "g" #'describe-gnu-project
101 "h" #'view-hello-file 101 "h" #'view-hello-file
102 "u" #'apropos-user-option
102 103
103 "i" #'info 104 "i" #'info
104 "4 i" #'info-other-window 105 "4 i" #'info-other-window