diff options
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) |