mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
Pacify some docstring control char warnings
Other instances are discussed in the following thread: https://lists.gnu.org/r/emacs-devel/2024-02/msg00797.html * lisp/allout.el (allout-command-prefix): Declare :type as key-sequence. Mark up key sequences in docstring. * lisp/auth-source.el (auth-source--decode-octal-string): * lisp/ffap.el (ffap-search-backward-file-end): * lisp/gnus/gnus-art.el (gnus-page-delimiter): * lisp/gnus/nnheader.el (nnheader-strip-cr): * lisp/proced.el (proced-log): * lisp/progmodes/idlw-shell.el (idlwave-shell-prompt-pattern): * lisp/url/url-http.el (url-http-clean-headers): * lisp/vcursor.el (vcursor-interpret-input): Quote control characters in docstrings.
This commit is contained in:
parent
e490d2f872
commit
f7c2fe3337
9 changed files with 13 additions and 13 deletions
|
|
@ -161,9 +161,9 @@ respective `allout-mode' keybinding variables, `allout-command-prefix',
|
|||
(defcustom allout-command-prefix "\C-c "
|
||||
"Key sequence to be used as prefix for outline mode command key bindings.
|
||||
|
||||
Default is `\C-c<space>'; just `\C-c' is more short-and-sweet, if you're
|
||||
willing to let allout use a bunch of \C-c keybindings."
|
||||
:type 'string
|
||||
Default is \\`C-c SPC'; just \\`C-c' is more short-and-sweet, if you're
|
||||
willing to let allout use a bunch of \\`C-c' keybindings."
|
||||
:type 'key-sequence
|
||||
:group 'allout-keybindings
|
||||
:set #'allout-compose-and-institute-keymap)
|
||||
;;;_ = allout-keybindings-binding
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue