]> git.eshelyaron.com Git - emacs.git/commitdiff
; Minor doc fixes in bind-key.el
authorStefan Kangas <stefankangas@gmail.com>
Thu, 8 Dec 2022 16:14:31 +0000 (17:14 +0100)
committerStefan Kangas <stefankangas@gmail.com>
Thu, 8 Dec 2022 16:14:31 +0000 (17:14 +0100)
* lisp/use-package/bind-key.el (bind-key-segregation-regexp)
(bind-key): Minor doc fixes.

lisp/use-package/bind-key.el

index 9b9fc3531c4a2e012976f9528c9ba90dba6a4e99..bbe3319d9bbad3aca022df72ec29e925111b188f 100644 (file)
 
 (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.