emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r116391: * kmacro.el (kmacro-bind-to-key): Say that


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] trunk r116391: * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused.
Date: Mon, 10 Feb 2014 06:52:58 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116391
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/14197
committer: Lars Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Sun 2014-02-09 22:51:32 -0800
message:
  * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/kmacro.el                 kmacro.el-20091113204419-o5vbwnq5f7feedwu-2431
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-02-10 06:44:49 +0000
+++ b/lisp/ChangeLog    2014-02-10 06:51:32 +0000
@@ -1,5 +1,8 @@
 2014-02-10  Lars Ingebrigtsen  <address@hidden>
 
+       * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
+       (bug#14197).
+
        * progmodes/grep.el (find-program): Doc fix (bug#14289).
 
        * files.el (confirm-kill-emacs): Clarify doc (bug#15455).

=== modified file 'lisp/kmacro.el'
--- a/lisp/kmacro.el    2014-02-08 12:34:52 +0000
+++ b/lisp/kmacro.el    2014-02-10 06:51:32 +0000
@@ -483,7 +483,8 @@
 
 (defun kmacro-cycle-ring-next (&optional _arg)
   "Move to next keyboard macro in keyboard macro ring.
-Displays the selected macro in the echo area."
+Displays the selected macro in the echo area.
+The ARG parameter is unused."
   (interactive)
   (unless (kmacro-ring-empty-p)
     (kmacro-push-ring)
@@ -502,7 +503,8 @@
 
 (defun kmacro-cycle-ring-previous (&optional _arg)
   "Move to previous keyboard macro in keyboard macro ring.
-Displays the selected macro in the echo area."
+Displays the selected macro in the echo area.
+The ARG parameter is unused."
   (interactive)
   (unless (kmacro-ring-empty-p)
     (let ((keys (kmacro-get-repeat-prefix))
@@ -529,7 +531,8 @@
 
 
 (defun kmacro-delete-ring-head (&optional _arg)
-  "Delete current macro from keyboard macro ring."
+  "Delete current macro from keyboard macro ring.
+The ARG parameter is unused."
   (interactive)
   (unless (kmacro-ring-empty-p t)
     (if (null kmacro-ring)
@@ -793,7 +796,8 @@
 a key with an existing command binding, you will be asked for
 confirmation whether to replace that binding.  Note that the
 binding is made in the `global-map' keymap, so the macro binding
-may be shaded by a local key binding."
+may be shaded by a local key binding.
+The ARG parameter is unused."
   (interactive "p")
   (if (or defining-kbd-macro executing-kbd-macro)
       (if defining-kbd-macro
@@ -865,7 +869,8 @@
 
 (defun kmacro-view-macro (&optional _arg)
   "Display the last keyboard macro.
-If repeated, it shows previous elements in the macro ring."
+If repeated, it shows previous elements in the macro ring.
+The ARG parameter is unused."
   (interactive)
   (cond
    ((or (kmacro-ring-empty-p)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]