diff options
author | Bill Wohler <wohler@newt.com> | 2005-12-23 07:40:40 +0000 |
---|---|---|
committer | Bill Wohler <wohler@newt.com> | 2005-12-23 07:40:40 +0000 |
commit | 2dcf34f9ca6c16817a902fb7340af06708702781 (patch) | |
tree | 01f09bebb644d9978078e24521e698132ed014c7 /lisp/mh-e/mh-gnus.el | |
parent | d169946261347a11f80680f4deda7d0a62816f39 (diff) | |
download | emacs-2dcf34f9ca6c16817a902fb7340af06708702781.tar.gz |
Follow Emacs coding conventions. Use default setting of
emacs-lisp-docstring-fill-column which is 65.
Diffstat (limited to 'lisp/mh-e/mh-gnus.el')
-rw-r--r-- | lisp/mh-e/mh-gnus.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/mh-e/mh-gnus.el b/lisp/mh-e/mh-gnus.el index 71220e2dd3d..a52bc5e463e 100644 --- a/lisp/mh-e/mh-gnus.el +++ b/lisp/mh-e/mh-gnus.el @@ -41,9 +41,9 @@ (defmacro mh-defun-compat (function arg-list &rest body) "This is a macro to define functions which are not defined. -It is used for Gnus utility functions which were added recently. If FUNCTION -is not defined then it is defined to have argument list, ARG-LIST and body, -BODY." +It is used for Gnus utility functions which were added recently. +If FUNCTION is not defined then it is defined to have argument +list, ARG-LIST and body, BODY." (let ((defined-p (fboundp function))) (unless defined-p `(defun ,function ,arg-list ,@body)))) @@ -51,9 +51,9 @@ BODY." (defmacro mh-defmacro-compat (function arg-list &rest body) "This is a macro to define functions which are not defined. -It is used for Gnus utility functions which were added recently. If FUNCTION -is not defined then it is defined to have argument list, ARG-LIST and body, -BODY." +It is used for Gnus utility functions which were added recently. +If FUNCTION is not defined then it is defined to have argument +list, ARG-LIST and body, BODY." (let ((defined-p (fboundp function))) (unless defined-p `(defmacro ,function ,arg-list ,@body)))) |