Add docstrings to variables
This commit is contained in:
parent
b8214a0312
commit
de22484c79
1 changed files with 4 additions and 2 deletions
|
@ -32,10 +32,12 @@
|
|||
(defvar upcase-transient-map
|
||||
(let ((map (make-sparse-keymap)))
|
||||
(define-key map [remap self-insert-command] #'upcase-self-insert-command)
|
||||
map))
|
||||
map)
|
||||
"The transient keymap that will take effect.")
|
||||
|
||||
(defvar upcase-character-map
|
||||
#s(hash-table data (?- ?_)))
|
||||
#s(hash-table data (?- ?_))
|
||||
"Extra characters to switch.")
|
||||
|
||||
(defun upcase-self-insert-command ()
|
||||
"Wrap `self-insert-command' to upcase the input character.
|
||||
|
|
Loading…
Reference in a new issue