]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix up previous mh-speed.el ignored variable change
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 22 Jan 2021 18:22:07 +0000 (19:22 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 22 Jan 2021 18:22:07 +0000 (19:22 +0100)
* lisp/mh-e/mh-speed.el (mh-speed-toggle, mh-speed-view): Mark the
ignored parameter with _ instead of using the Common Lispish
(declare (ignore args)) (which Emacs Lisp doesn't really support),
except by accident.

lisp/mh-e/mh-speed.el

index 00b96804174af46924e571774806b4a8bea36131..7cbd42c8ea20556220dc7e9d6d97f2321959aadb 100644 (file)
@@ -125,10 +125,9 @@ With non-nil FORCE, the update is always carried out."
         ;; Otherwise on to your regular programming
         (t t)))
 
-(defun mh-speed-toggle (&rest ignored)
+(defun mh-speed-toggle (&rest _ignored)
   "Toggle the display of child folders in the speedbar.
 The optional arguments from speedbar are IGNORED."
-  (declare (ignore args))
   (interactive)
   (beginning-of-line)
   (let ((parent (get-text-property (point) 'mh-folder))
@@ -164,10 +163,9 @@ The optional arguments from speedbar are IGNORED."
               (mh-line-beginning-position) (1+ (line-beginning-position))
               '(mh-expanded t)))))))
 
-(defun mh-speed-view (&rest ignored)
+(defun mh-speed-view (&rest _ignored)
   "Visits the selected folder just as if you had used \\<mh-folder-mode-map>\\[mh-visit-folder].
 The optional arguments from speedbar are IGNORED."
-  (declare (ignore args))
   (interactive)
   (let* ((folder (get-text-property (mh-line-beginning-position) 'mh-folder))
          (range (and (stringp folder)