diff options
author | Glenn Morris <rgm@gnu.org> | 2008-11-22 03:19:06 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-11-22 03:19:06 +0000 |
commit | 57a1cd7bca1943c12ad22745fb3e819de46b8e40 (patch) | |
tree | a36debd4de904d55e23ee55b51662b30b553bd41 /lisp/kmacro.el | |
parent | 3d864325130b0c37628b42d542923717164b50c7 (diff) | |
download | emacs-57a1cd7bca1943c12ad22745fb3e819de46b8e40.tar.gz |
(kmacro-insert-counter): Doc fix.
Diffstat (limited to 'lisp/kmacro.el')
-rw-r--r-- | lisp/kmacro.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/kmacro.el b/lisp/kmacro.el index a738bb5e00a..2927195ed15 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el @@ -1,7 +1,7 @@ ;;; kmacro.el --- enhanced keyboard macros -;; Copyright (C) 2002, 2003, 2004, 2005, 2006, -;; 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 +;; Free Software Foundation, Inc. ;; Author: Kim F. Storm <storm@cua.dk> ;; Keywords: keyboard convenience @@ -253,8 +253,9 @@ macro to be executed before appending to it." (defun kmacro-insert-counter (arg) - "Insert macro counter and increment with ARG or 1 if missing. -With \\[universal-argument], insert previous `kmacro-counter' (but do not modify counter)." + "Insert macro counter, then increment it by ARG. +Interactively, ARG defaults to 1. With \\[universal-argument], insert +previous `kmacro-counter', and do not modify counter." (interactive "P") (if kmacro-initial-counter-value (setq kmacro-counter kmacro-initial-counter-value |