diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-14 08:43:18 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-16 19:37:07 +0200 |
commit | 63f419f1339cbd0a7d1e64586854a4f01b3f80d1 (patch) | |
tree | 80bce487ec8c4f7d8258d13a49b21cb4eb3f289b /lisp/kmacro.el | |
parent | 36474a1e490a5eae266805a0e04615741d56692c (diff) | |
download | emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.tar.gz emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.tar.bz2 emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.zip |
; Minor stylistic fixes found by checkdoc
Diffstat (limited to 'lisp/kmacro.el')
-rw-r--r-- | lisp/kmacro.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/kmacro.el b/lisp/kmacro.el index 8821e35c2d1..a39f433cdc3 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el @@ -22,7 +22,7 @@ ;;; Commentary: -;; The kmacro package provides the user interface to emacs' basic +;; The kmacro package provides the user interface to Emacs' basic ;; keyboard macro functionality. With kmacro, two function keys are ;; dedicated to keyboard macros, by default F3 and F4. @@ -144,7 +144,7 @@ macro to be executed before appending to it." (defcustom kmacro-repeat-no-prefix t - "Allow repeating certain macro commands without entering the C-x C-k prefix." + "Allow repeating certain macro commands without entering the \\[kmacro-keymap] prefix." :type 'boolean) (defcustom kmacro-call-repeat-key t @@ -728,7 +728,7 @@ With \\[universal-argument], call second macro in macro ring." (defun kmacro-end-or-call-macro-repeat (arg) - "As `kmacro-end-or-call-macro' but allows repeat without repeating prefix." + "As `kmacro-end-or-call-macro' but allow repeat without repeating prefix." (interactive "P") (let ((keys (kmacro-get-repeat-prefix))) (kmacro-end-or-call-macro arg t) |