summaryrefslogtreecommitdiff
path: root/lisp/use-package
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-12-08 17:14:31 +0100
committerStefan Kangas <stefankangas@gmail.com>2022-12-08 17:14:31 +0100
commitb9fa81514f97c0b55119ef9941fd124a1c046119 (patch)
treedda49ca7cf484386643e2cf67d444bcee56da393 /lisp/use-package
parent15fb115551e8bd308555f5365994e6764cb9e80a (diff)
downloademacs-b9fa81514f97c0b55119ef9941fd124a1c046119.tar.gz
; Minor doc fixes in bind-key.el
* lisp/use-package/bind-key.el (bind-key-segregation-regexp) (bind-key): Minor doc fixes.
Diffstat (limited to 'lisp/use-package')
-rw-r--r--lisp/use-package/bind-key.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el
index 9b9fc3531c4..bbe3319d9bb 100644
--- a/lisp/use-package/bind-key.el
+++ b/lisp/use-package/bind-key.el
@@ -115,8 +115,7 @@
(defcustom bind-key-segregation-regexp
"\\`\\(\\(C-[chx] \\|M-[gso] \\)\\([CM]-\\)?\\|.+-\\)"
- "Regular expression used to divide key sets in the output from
-\\[describe-personal-keybindings]."
+ "Regexp used by \\[describe-personal-keybindings] to divide key sets."
:type 'regexp
:group 'bind-key)
@@ -161,9 +160,9 @@ Elements have the form ((KEY . [MAP]) CMD ORIGINAL-CMD)")
"Bind KEY-NAME to COMMAND in KEYMAP (`global-map' if not passed).
KEY-NAME may be a vector, in which case it is passed straight to
-`define-key'. Or it may be a string to be interpreted as
-spelled-out keystrokes, e.g., `C-c C-z'. See documentation of
-`edmacro-mode' for details.
+`define-key'. Or it may be a string to be interpreted as
+spelled-out keystrokes, e.g., \"C-c C-z\". See the documentation
+of `edmacro-mode' for details.
COMMAND must be an interactive function or lambda form.