diff options
author | Bill Wohler <wohler@newt.com> | 2011-07-09 13:25:54 -0700 |
---|---|---|
committer | Bill Wohler <wohler@newt.com> | 2011-07-09 13:25:54 -0700 |
commit | 972e3b728f7beced03bb337f727540c3f2c913f8 (patch) | |
tree | 7bc497a8b0fc06f07f5abecd759a345365d9e8b9 /lisp/mh-e/mh-speed.el | |
parent | 5a47220aaa77a27bf26e082789efe3c2da7fec9d (diff) | |
download | emacs-972e3b728f7beced03bb337f727540c3f2c913f8.tar.gz |
Document "ignored" arguments to keep checkdoc happy.
* mh-speed.el (mh-speed-toggle,mh-speed-view): Ditto
* mh-search.el (mh-flists-execute): Ditto.
* mh-funcs.el (mh-undo-folder): Ditto.
* mh-comp.el (mh-user-agent-compose): Ditto.
Diffstat (limited to 'lisp/mh-e/mh-speed.el')
-rw-r--r-- | lisp/mh-e/mh-speed.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mh-e/mh-speed.el b/lisp/mh-e/mh-speed.el index b782081c85c..5c3679e8ce6 100644 --- a/lisp/mh-e/mh-speed.el +++ b/lisp/mh-e/mh-speed.el @@ -126,9 +126,9 @@ With non-nil FORCE, the update is always carried out." ;; Otherwise on to your regular programming (t t))) -(defun mh-speed-toggle (&rest args) +(defun mh-speed-toggle (&rest ignored) "Toggle the display of child folders in the speedbar. -The optional ARGS from speedbar are ignored." +The optional arguments from speedbar are IGNORED." (interactive) (declare (ignore args)) (beginning-of-line) @@ -165,9 +165,9 @@ The optional ARGS from speedbar are ignored." (mh-line-beginning-position) (1+ (line-beginning-position)) `(mh-expanded t))))))) -(defun mh-speed-view (&rest args) +(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 ARGS from speedbar are ignored." +The optional arguments from speedbar are IGNORED." (interactive) (declare (ignore args)) (let* ((folder (get-text-property (mh-line-beginning-position) 'mh-folder)) |