]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix checkdoc complaints in MH-E
authorMike Kupfer <mkupfer@alum.berkeley.edu>
Tue, 16 Nov 2021 05:55:53 +0000 (21:55 -0800)
committerStephen Gildea <stepheng+emacs@gildea.com>
Tue, 16 Nov 2021 05:59:48 +0000 (21:59 -0800)
* lisp/mh-e/mh-compat.el (mh-flet): Rewrite most of the docstring.
(mh-write-file-functions): Remove trailing space.
* lisp/mh-e-mh-scan.el (mh-scan-cmd-note-width): Break up a
line that was too long.

lisp/mh-e/mh-compat.el
lisp/mh-e/mh-scan.el

index 19be5afd790ceffed8d9b93185c02cc20ca3262d..23dc48a574c704d3217ca8c3ad11d3886699c0dd 100644 (file)
 ;; cl-letf. This macro is based upon gmm-flet from Gnus.
 (defmacro mh-flet (bindings &rest body)
   "Make temporary overriding function definitions.
-This is an analogue of a dynamically scoped `let' that operates on
-the function cell of FUNCs rather than their value cell.
-
-\(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
+That is, temporarily rebind the functions listed in BINDINGS and then
+execute BODY.  BINDINGS is a list containing one or more lists of the
+form (FUNCNAME ARGLIST BODY...), similar to defun."
   (declare (indent 1) (debug ((&rest (sexp sexp &rest form)) &rest form)))
   (if (fboundp 'cl-letf)
       `(cl-letf ,(mapcar (lambda (binding)
@@ -138,7 +137,7 @@ This is taken from RFC 2396.")
   #'window-full-height-p "29.1")
 
 (defmacro mh-write-file-functions ()
-  "Return `write-file-functions'. "
+  "Return `write-file-functions'."
   (declare (obsolete nil "29.1"))
   ''write-file-functions)
 
index bf3cfeff5cbc4bf4e752745383657d4ac5e71a3e..9ac251e8b7195ce8e9263eaa9003046a556a98d0 100644 (file)
@@ -327,7 +327,11 @@ Note that columns in Emacs start with 0.")
 (defvar mh-scan-cmd-note-width 1
   "Number of columns consumed by the cmd-note field in `mh-scan-format'.
 
-This column will have one of the values: \" \", \"^\", \"D\", \"B\", \"A\", \"+\", where
+This column will have one of the values:
+
+  \" \", \"^\", \"D\", \"B\", \"A\", \"+\"
+
+where
 
   \" \" is the default value,
   \"^\" is the `mh-note-refiled' character,