diff options
| author | Glenn Morris | 2008-06-07 02:41:46 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-06-07 02:41:46 +0000 |
| commit | 531fdf02d6d1aa89fcb6d4b9dbfa7628b1db5507 (patch) | |
| tree | a707ce9d62ad89c42af716a34b8bdc6bdf7a8e4c | |
| parent | 20e43520ef541793dfdde9bab112a1bb12bf33eb (diff) | |
| download | emacs-531fdf02d6d1aa89fcb6d4b9dbfa7628b1db5507.tar.gz emacs-531fdf02d6d1aa89fcb6d4b9dbfa7628b1db5507.zip | |
Commentary fixes.
Remove unnecessary eval-when-compile.
| -rw-r--r-- | lisp/emacs-lisp/lisp-mnt.el | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el index 0bb4e463e95..ba70bda9589 100644 --- a/lisp/emacs-lisp/lisp-mnt.el +++ b/lisp/emacs-lisp/lisp-mnt.el | |||
| @@ -75,8 +75,7 @@ | |||
| 75 | ;; | 75 | ;; |
| 76 | ;; * Maintainer line --- should be a single name/address as in the Author | 76 | ;; * Maintainer line --- should be a single name/address as in the Author |
| 77 | ;; line, or an address only, or the string "FSF". If there is no maintainer | 77 | ;; line, or an address only, or the string "FSF". If there is no maintainer |
| 78 | ;; line, the person(s) in the Author field are presumed to be it. The example | 78 | ;; line, the person(s) in the Author field are presumed to be it. |
| 79 | ;; in this file is mildly bogus because the maintainer line is redundant. | ||
| 80 | ;; The idea behind these two fields is to be able to write a Lisp function | 79 | ;; The idea behind these two fields is to be able to write a Lisp function |
| 81 | ;; that does "send mail to the author" without having to mine the name out by | 80 | ;; that does "send mail to the author" without having to mine the name out by |
| 82 | ;; hand. Please be careful about surrounding the network address with <> if | 81 | ;; hand. Please be careful about surrounding the network address with <> if |
| @@ -94,8 +93,8 @@ | |||
| 94 | ;; package for the distribution. (This file doesn't have one because the | 93 | ;; package for the distribution. (This file doesn't have one because the |
| 95 | ;; author *is* one of the maintainers.) | 94 | ;; author *is* one of the maintainers.) |
| 96 | ;; | 95 | ;; |
| 97 | ;; * Keywords line --- used by the finder code (now under construction) | 96 | ;; * Keywords line --- used by the finder code for finding Emacs |
| 98 | ;; for finding Emacs Lisp code related to a topic. | 97 | ;; Lisp code related to a topic. |
| 99 | ;; | 98 | ;; |
| 100 | ;; * X-Bogus-Bureaucratic-Cruft line --- this is a joke and an example | 99 | ;; * X-Bogus-Bureaucratic-Cruft line --- this is a joke and an example |
| 101 | ;; of a comment header. Headers starting with `X-' should never be used | 100 | ;; of a comment header. Headers starting with `X-' should never be used |
| @@ -589,7 +588,7 @@ which do not include a recognizable synopsis." | |||
| 589 | (lm-summary)) | 588 | (lm-summary)) |
| 590 | (when must-kill (kill-buffer (current-buffer)))))))) | 589 | (when must-kill (kill-buffer (current-buffer)))))))) |
| 591 | 590 | ||
| 592 | (eval-when-compile (defvar report-emacs-bug-address)) | 591 | (defvar report-emacs-bug-address) |
| 593 | 592 | ||
| 594 | (defun lm-report-bug (topic) | 593 | (defun lm-report-bug (topic) |
| 595 | "Report a bug in the package currently being visited to its maintainer. | 594 | "Report a bug in the package currently being visited to its maintainer. |