Trailing whitepace deleted.
[bpt/emacs.git] / lisp / emacs-lisp / lisp-mnt.el
CommitLineData
0fc37e7d
ER
1;;; lisp-mnt.el --- minor mode for Emacs Lisp maintainers
2
13c40e2f 3;; Copyright (C) 1992, 1994, 1997, 2000, 2001 Free Software Foundation, Inc.
0fc37e7d
ER
4
5;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
877d5b39 6;; Maintainer: FSF
0fc37e7d 7;; Created: 14 Jul 1992
0fc37e7d 8;; Keywords: docs
1894df21 9;; X-Bogus-Bureaucratic-Cruft: Gruad will get you if you don't watch out!
0fc37e7d
ER
10
11;; This file is part of GNU Emacs.
12
13;; GNU Emacs is free software; you can redistribute it and/or modify
14;; it under the terms of the GNU General Public License as published by
7c938215 15;; the Free Software Foundation; either version 2, or (at your option)
0fc37e7d
ER
16;; any later version.
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
d5eead69 24;; along with GNU Emacs; see the file COPYING. If not, write to
470c5afe
EN
25;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26;; Boston, MA 02111-1307, USA.
0fc37e7d
ER
27
28;;; Commentary:
29
30;; This minor mode adds some services to Emacs-Lisp editing mode.
31;;
32;; First, it knows about the header conventions for library packages.
33;; One entry point supports generating synopses from a library directory.
34;; Another can be used to check for missing headers in library files.
a1506d29 35;;
0fc37e7d
ER
36;; Another entry point automatically addresses bug mail to a package's
37;; maintainer or author.
38
39;; This file can be loaded by your lisp-mode-hook. Have it (require 'lisp-mnt)
40
41;; This file is an example of the header conventions. Note the following
42;; features:
a1506d29 43;;
0fc37e7d
ER
44;; * Header line --- makes it possible to extract a one-line summary of
45;; the package's uses automatically for use in library synopses, KWIC
46;; indexes and the like.
a1506d29 47;;
0fc37e7d
ER
48;; Format is three semicolons, followed by the filename, followed by
49;; three dashes, followed by the summary. All fields space-separated.
179e152a
RS
50;;
51;; * A blank line
52;;
53;; * Copyright line, which looks more or less like this:
54;;
55;; ;; Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
56;;
57;; * A blank line
a1506d29 58;;
0fc37e7d
ER
59;; * Author line --- contains the name and net address of at least
60;; the principal author.
a1506d29 61;;
68756f1f 62;; If there are multiple authors, they should be listed on continuation
0fc37e7d 63;; lines led by ;;<TAB>, like this:
a1506d29 64;;
0fc37e7d
ER
65;; ;; Author: Ashwin Ram <Ram-Ashwin@cs.yale.edu>
66;; ;; Dave Sill <de5@ornl.gov>
67;; ;; David Lawrence <tale@pawl.rpi.edu>
68;; ;; Noah Friedman <friedman@ai.mit.edu>
69;; ;; Joe Wells <jbw@maverick.uswest.com>
70;; ;; Dave Brennan <brennan@hal.com>
71;; ;; Eric Raymond <esr@snark.thyrsus.com>
a1506d29 72;;
0fc37e7d
ER
73;; This field may have some special values; notably "FSF", meaning
74;; "Free Software Foundation".
a1506d29 75;;
0fc37e7d
ER
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
78;; line, the person(s) in the Author field are presumed to be it. The example
79;; in this file is mildly bogus because the maintainer line is redundant.
ca4bd734 80;; The idea behind these two fields is to be able to write a Lisp function
0fc37e7d
ER
81;; 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
83;; there's also a name in the field.
a1506d29 84;;
0fc37e7d
ER
85;; * Created line --- optional, gives the original creation date of the
86;; file. For historical interest, basically.
a1506d29 87;;
0fc37e7d 88;; * Version line --- intended to give the reader a clue if they're looking
68756f1f
ER
89;; at a different version of the file than the one they're accustomed to. This
90;; may be an RCS or SCCS header.
a1506d29 91;;
0fc37e7d
ER
92;; * Adapted-By line --- this is for FSF's internal use. The person named
93;; in this field was the one responsible for installing and adapting the
94;; package for the distribution. (This file doesn't have one because the
95;; author *is* one of the maintainers.)
a1506d29 96;;
0fc37e7d 97;; * Keywords line --- used by the finder code (now under construction)
c0d79871 98;; for finding Emacs Lisp code related to a topic.
0fc37e7d 99;;
1894df21
NF
100;; * 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
102;; for any real purpose; this is the way to safely add random headers
103;; without invoking the wrath of any program.
0fc37e7d 104;;
ca4bd734 105;; * Commentary line --- enables Lisp code to find the developer's and
0fc37e7d 106;; maintainers' explanations of the package internals.
a1506d29 107;;
0fc37e7d
ER
108;; * Change log line --- optional, exists to terminate the commentary
109;; section and start a change-log part, if one exists.
a1506d29 110;;
c0d79871 111;; * Code line --- exists so Lisp can know where commentary and/or
0fc37e7d 112;; change-log sections end.
a1506d29 113;;
0fc37e7d
ER
114;; * Footer line --- marks end-of-file so it can be distinguished from
115;; an expanded formfeed or the results of truncation.
116
117;;; Change Log:
118
119;; Tue Jul 14 23:44:17 1992 ESR
120;; * Created.
121
122;;; Code:
123
d5eead69
RS
124;;; Variables:
125
666b9413
SE
126(defgroup lisp-mnt nil
127 "Minor mode for Emacs Lisp maintainers."
128 :prefix "lm-"
129 :group 'maint)
130
af95e0d1
DL
131;; At least some of these defcustoms should probably be defconsts,
132;; since they define, or are defined by, the header format. -- fx
133
438cdcde 134(defcustom lm-header-prefix "^;+[ \t]+\\(@(#)\\)?[ \t]*\\$?"
d5eead69 135 "Prefix that is ignored before the tag.
ca4bd734
RS
136For example, you can write the 1st line synopsis string and headers like this
137in your Lisp package:
d5eead69 138
7a3ee510 139 ;; @(#) package.el -- package description
d5eead69
RS
140 ;;
141 ;; @(#) $Maintainer: Person Foo Bar $
142
143The @(#) construct is used by unix what(1) and
666b9413
SE
144then $identifier: doc string $ is used by GNU ident(1)"
145 :type 'regexp
146 :group 'lisp-mnt)
147
af95e0d1
DL
148(defcustom lm-copyright-prefix "^\\(;+[ \t]\\)+Copyright (C) "
149 "Prefix that is ignored before the dates in a copyright.
150Leading comment characters and whitespace should be in regexp group 1."
13c40e2f
GM
151 :type 'regexp
152 :group 'lisp-mnt)
153
666b9413
SE
154(defcustom lm-comment-column 16
155 "Column used for placing formatted output."
156 :type 'integer
157 :group 'lisp-mnt)
158
159(defcustom lm-commentary-header "Commentary\\|Documentation"
160 "Regexp which matches start of documentation section."
161 :type 'regexp
162 :group 'lisp-mnt)
163
3d1b88f6 164(defcustom lm-history-header "Change ?Log\\|History"
666b9413
SE
165 "Regexp which matches the start of code log section."
166 :type 'regexp
167 :group 'lisp-mnt)
d5eead69
RS
168
169;;; Functions:
170
0fc37e7d
ER
171;; These functions all parse the headers of the current buffer
172
2505742b 173(defun lm-get-header-re (header &optional mode)
6e24ad22 174 "Return regexp for matching HEADER.
ca4bd734
RS
175If called with optional MODE and with value `section',
176return section regexp instead."
438cdcde
SM
177 (if (eq mode 'section)
178 (concat "^;;;;* " header ":[ \t]*$")
179 (concat lm-header-prefix header "[ \t]*:[ \t]*")))
d5eead69 180
2505742b 181(defun lm-get-package-name ()
6e24ad22 182 "Return package name by looking at the first line."
d5eead69
RS
183 (save-excursion
184 (goto-char (point-min))
185 (if (and (looking-at (concat lm-header-prefix))
186 (progn (goto-char (match-end 0))
187 (looking-at "\\([^\t ]+\\)")
188 (match-end 1)))
2505742b 189 (match-string-no-properties 1))))
d5eead69
RS
190
191(defun lm-section-mark (header &optional after)
192 "Return the buffer location of a given section start marker.
ca4bd734
RS
193The HEADER is the section mark string to search for.
194If AFTER is non-nil, return the location of the next line."
0fc37e7d
ER
195 (save-excursion
196 (let ((case-fold-search t))
197 (goto-char (point-min))
d5eead69 198 (if (re-search-forward (lm-get-header-re header 'section) nil t)
0fc37e7d
ER
199 (progn
200 (beginning-of-line)
64e07c7b 201 (if after (forward-line 1))
2505742b 202 (point))))))
0fc37e7d 203
d5eead69 204(defsubst lm-code-mark ()
ca4bd734 205 "Return the buffer location of the `Code' start marker."
0fc37e7d
ER
206 (lm-section-mark "Code"))
207
d5eead69 208(defsubst lm-commentary-mark ()
ca4bd734 209 "Return the buffer location of the `Commentary' start marker."
d5eead69
RS
210 (lm-section-mark lm-commentary-header))
211
212(defsubst lm-history-mark ()
ca4bd734 213 "Return the buffer location of the `History' start marker."
d5eead69
RS
214 (lm-section-mark lm-history-header))
215
13c40e2f
GM
216(defsubst lm-copyright-mark ()
217 "Return the buffer location of the `Copyright' line."
218 (save-excursion
219 (let ((case-fold-search t))
220 (goto-char (point-min))
221 (if (re-search-forward lm-copyright-prefix nil t)
222 (point))))
223 )
224
d5eead69 225(defun lm-header (header)
ca4bd734
RS
226 "Return the contents of the header named HEADER."
227 (goto-char (point-min))
228 (let ((case-fold-search t))
438cdcde
SM
229 (when (and (re-search-forward (lm-get-header-re header) (lm-code-mark) t)
230 ;; RCS ident likes format "$identifier: data$"
231 (looking-at
232 (if (save-excursion
233 (skip-chars-backward "^$" (match-beginning 0))
234 (= (point) (match-beginning 0)))
235 "[^\n]+" "[^$\n]+")))
236 (match-string-no-properties 0))))
0fc37e7d 237
d5eead69 238(defun lm-header-multiline (header)
ca4bd734 239 "Return the contents of the header named HEADER, with continuation lines.
d5eead69 240The returned value is a list of strings, one per line."
0fc37e7d
ER
241 (save-excursion
242 (goto-char (point-min))
d5eead69 243 (let ((res (lm-header header)))
be961cd5 244 (when res
d5eead69
RS
245 (setq res (list res))
246 (forward-line 1)
438cdcde
SM
247 (while (and (or (looking-at (concat lm-header-prefix "[\t ]+"))
248 (and (not (looking-at
249 (lm-get-header-re "\\sw\\(\\sw\\|\\s_\\)*")))
250 (looking-at lm-header-prefix)))
251 (goto-char (match-end 0))
252 (looking-at ".+"))
253 (setq res (cons (match-string-no-properties 0) res))
2505742b 254 (forward-line 1)))
438cdcde 255 (nreverse res))))
0fc37e7d
ER
256
257;; These give us smart access to the header fields and commentary
258
be961cd5 259(defmacro lm-with-file (file &rest body)
13c40e2f
GM
260 "Make a buffer with FILE current, and execute BODY.
261If FILE isn't in a buffer, load it in, and kill it after BODY is executed."
be961cd5
SM
262 (let ((filesym (make-symbol "file")))
263 `(save-excursion
264 (let ((,filesym ,file))
265 (if ,filesym (set-buffer (find-file-noselect ,filesym)))
266 (prog1 (progn ,@body)
267 (if (and ,filesym (not (get-buffer-window (current-buffer) t)))
268 (kill-buffer (current-buffer))))))))
269(put 'lm-with-file 'lisp-indent-function 1)
270(put 'lm-with-file 'edebug-form-spec t)
271
af95e0d1
DL
272;; Fixme: Probably this should be amalgamated with copyright.el; also
273;; we need a check for ranges in copyright years.
274
13c40e2f
GM
275(defun lm-crack-copyright (&optional file)
276 "Return the copyright holder, and a list of copyright years.
277Use the current buffer if FILE is nil.
278Return argument is of the form (\"HOLDER\" \"YEAR1\" ... \"YEARN\")"
279 (lm-with-file file
280 (goto-char (lm-copyright-mark))
281 (let ((holder nil)
282 (years nil)
af95e0d1 283 (start (point))
13c40e2f 284 (end (line-end-position)))
af95e0d1
DL
285 ;; Cope with multi-line copyright `lines'. Assume the second
286 ;; line is indented (with the same commenting style).
287 (save-excursion
288 (beginning-of-line 2)
289 (let ((str (concat (match-string-no-properties 1) "[ \t]+")))
290 (beginning-of-line)
291 (while (looking-at str)
292 (setq end (line-end-position))
293 (beginning-of-line 2))))
294 ;; Make a single line and parse that.
295 (let ((buff (current-buffer)))
296 (with-temp-buffer
297 (insert-buffer-substring buff start end)
298 (goto-char (point-min))
299 (while (re-search-forward "^;+[ \t]+" nil t)
300 (replace-match ""))
301 (goto-char (point-min))
302 (while (re-search-forward " *\n" nil t)
303 (replace-match " "))
304 (goto-char (point-min))
305 (while (re-search-forward "\\([0-9]+\\),? +" nil t)
306 (setq years (cons (match-string-no-properties 1) years)))
307 (if (looking-at ".*$")
308 (setq holder (match-string-no-properties 0)))))
309 (cons holder (nreverse years)))))
13c40e2f 310
0fc37e7d 311(defun lm-summary (&optional file)
ca4bd734 312 "Return the one-line summary of file FILE, or current buffer if FILE is nil."
be961cd5 313 (lm-with-file file
0fc37e7d 314 (goto-char (point-min))
2505742b
DL
315 (if (and (looking-at lm-header-prefix)
316 (progn (goto-char (match-end 0))
317 (looking-at "[^ ]+[ \t]+--+[ \t]+\\(.*\\)")))
318 (let ((summary (match-string-no-properties 1)))
be961cd5
SM
319 ;; Strip off -*- specifications.
320 (if (string-match "[ \t]*-\\*-.*-\\*-" summary)
321 (substring summary 0 (match-beginning 0))
322 summary)))))
0fc37e7d 323
68756f1f 324(defun lm-crack-address (x)
6e24ad22 325 "Split up an email address X into full name and real email address.
ca4bd734 326The value is a cons of the form (FULLNAME . ADDRESS)."
68756f1f 327 (cond ((string-match "\\(.+\\) [(<]\\(\\S-+@\\S-+\\)[>)]" x)
2505742b
DL
328 (cons (match-string 1 x)
329 (match-string 2 x)))
68756f1f 330 ((string-match "\\(\\S-+@\\S-+\\) [(<]\\(.*\\)[>)]" x)
2505742b
DL
331 (cons (match-string 2 x)
332 (match-string 1 x)))
68756f1f
ER
333 ((string-match "\\S-+@\\S-+" x)
334 (cons nil x))
335 (t
336 (cons x nil))))
337
0fc37e7d 338(defun lm-authors (&optional file)
ca4bd734
RS
339 "Return the author list of file FILE, or current buffer if FILE is nil.
340Each element of the list is a cons; the car is the full name,
341the cdr is an email address."
be961cd5 342 (lm-with-file file
68756f1f 343 (let ((authorlist (lm-header-multiline "author")))
be961cd5 344 (mapcar 'lm-crack-address authorlist))))
0fc37e7d
ER
345
346(defun lm-maintainer (&optional file)
ca4bd734
RS
347 "Return the maintainer of file FILE, or current buffer if FILE is nil.
348The return value has the form (NAME . ADDRESS)."
be961cd5
SM
349 (lm-with-file file
350 (let ((maint (lm-header "maintainer")))
351 (if maint
352 (lm-crack-address maint)
353 (car (lm-authors))))))
0fc37e7d
ER
354
355(defun lm-creation-date (&optional file)
ca4bd734 356 "Return the created date given in file FILE, or current buffer if FILE is nil."
be961cd5
SM
357 (lm-with-file file
358 (lm-header "created")))
0fc37e7d 359
07d505c1
GM
360(defun lm-last-modified-date (&optional file iso-date)
361 "Return the modify-date given in file FILE, or current buffer if FILE is nil.
362ISO-DATE non-nil means return the date in ISO 8601 format."
be961cd5 363 (lm-with-file file
07d505c1
GM
364 (when (progn (goto-char (point-min))
365 (re-search-forward
366 "\\$[I]d: [^ ]+ [^ ]+ \\([^/]+\\)/\\([^/]+\\)/\\([^ ]+\\) "
367 (lm-code-mark) t))
368 (let ((dd (match-string 3))
369 (mm (match-string 2))
370 (yyyy (match-string 1)))
371 (if iso-date
372 (format "%s-%s-%s" yyyy mm dd)
373 (format "%s %s %s"
374 dd
375 (nth (string-to-int mm)
376 '("" "Jan" "Feb" "Mar" "Apr" "May" "Jun"
377 "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"))
378 yyyy))))))
0fc37e7d
ER
379
380(defun lm-version (&optional file)
ca4bd734 381 "Return the version listed in file FILE, or current buffer if FILE is nil.
2505742b 382This can be found in an RCS or SCCS header."
be961cd5 383 (lm-with-file file
2505742b
DL
384 (or (lm-header "version")
385 (let ((header-max (lm-code-mark)))
386 (goto-char (point-min))
387 (cond
388 ;; Look for an RCS header
389 ((re-search-forward "\\$[I]d: [^ ]+ \\([^ ]+\\) " header-max t)
390 (match-string-no-properties 1))
391 ((re-search-forward "\\$Revision: +\\([^ ]+\\) " header-max t)
392 (match-string-no-properties 1))
393 ;; Look for an SCCS header
394 ((re-search-forward
395 (concat
396 (regexp-quote "@(#)")
397 (regexp-quote (file-name-nondirectory (buffer-file-name)))
398 "\t\\([012345679.]*\\)")
399 header-max t)
400 (match-string-no-properties 1)))))))
0fc37e7d
ER
401
402(defun lm-keywords (&optional file)
ca4bd734 403 "Return the keywords given in file FILE, or current buffer if FILE is nil."
be961cd5
SM
404 (lm-with-file file
405 (let ((keywords (lm-header "keywords")))
406 (and keywords (downcase keywords)))))
0fc37e7d 407
5efa6032
GM
408(defun lm-keywords-list (&optional file)
409 "Return list of keywords given in file FILE."
410 (let ((keywords (lm-keywords file)))
411 (if keywords
412 (split-string keywords ",?[ \t]"))))
413
414(defun lm-keywords-finder-p (&optional file)
415 "Return non-nil if any keywords in FILE are known to finder."
416 (require 'finder)
417 (let ((keys (lm-keywords-list file)))
418 (catch 'keyword-found
419 (while keys
420 (if (assoc (intern (car keys)) finder-known-keywords)
421 (throw 'keyword-found t))
422 (setq keys (cdr keys)))
423 nil)))
424
0fc37e7d 425(defun lm-adapted-by (&optional file)
ca4bd734
RS
426 "Return the adapted-by names in file FILE, or current buffer if FILE is nil.
427This is the name of the person who cleaned up this package for
428distribution."
be961cd5
SM
429 (lm-with-file file
430 (lm-header "adapted-by")))
0fc37e7d 431
64e07c7b 432(defun lm-commentary (&optional file)
ca4bd734 433 "Return the commentary in file FILE, or current buffer if FILE is nil.
e7b377f0
DL
434The value is returned as a string. In the file, the commentary starts
435with the tag `Commentary' or `Documentation' and ends with one of the
436tags `Code', `Change Log' or `History'."
be961cd5 437 (lm-with-file file
2505742b
DL
438 (let ((commentary (lm-commentary-mark))
439 (change-log (lm-history-mark))
440 (code (lm-code-mark)))
441 (cond
442 ((and commentary change-log)
443 (buffer-substring-no-properties commentary change-log))
444 ((and commentary code)
445 (buffer-substring-no-properties commentary code))))))
0fc37e7d
ER
446
447;;; Verification and synopses
448
d5eead69 449(defun lm-insert-at-column (col &rest strings)
6e24ad22 450 "Insert, at column COL, list of STRINGS."
d5eead69 451 (if (> (current-column) col) (insert "\n"))
b4d73c71 452 (move-to-column col t)
d5eead69 453 (apply 'insert strings))
0fc37e7d 454
179e152a 455(defun lm-verify (&optional file showok verbose non-fsf-ok)
0fc37e7d 456 "Check that the current buffer (or FILE if given) is in proper format.
13c40e2f 457If FILE is a directory, recurse on its files and generate a report in a
179e152a
RS
458temporary buffer. In that case, the optional argument SHOWOK
459says display \"OK\" in temp buffer for files that have no problems.
460
461Optional argument VERBOSE specifies verbosity level.
462Optional argument NON-FSF-OK if non-nil means a non-FSF
463copyright notice is allowed."
464 (interactive (list nil nil t))
465 (let* ((ret (and verbose "Ok"))
2505742b 466 name)
d5eead69 467 (if (and file (file-directory-p file))
2505742b
DL
468 (setq ret
469 (with-temp-buffer
470 (mapcar
471 (lambda (f)
472 (if (string-match ".*\\.el\\'" f)
473 (let ((status (lm-verify f)))
474 (insert f ":")
475 (if status
476 (lm-insert-at-column lm-comment-column status
477 "\n")
478 (if showok
479 (lm-insert-at-column lm-comment-column
480 "OK\n"))))))
481 (directory-files file))))
be961cd5 482 (lm-with-file file
d5eead69 483 (setq name (lm-get-package-name))
2505742b
DL
484 (setq ret
485 (cond
486 ((null name)
179e152a 487 (format "Package %s does not exist"))
2505742b 488 ((not (lm-authors))
179e152a 489 "`Author:' tag missing")
2505742b 490 ((not (lm-maintainer))
179e152a 491 "`Maintainer:' tag missing")
2505742b 492 ((not (lm-summary))
179e152a 493 "Can't find the one-line summary description")
2505742b 494 ((not (lm-keywords))
179e152a 495 "`Keywords:' tag missing")
5efa6032 496 ((not (lm-keywords-finder-p))
179e152a 497 "`Keywords:' has no valid finder keywords (see `finder-known-keywords')")
2505742b 498 ((not (lm-commentary-mark))
179e152a 499 "Can't find a 'Commentary' section marker")
2505742b 500 ((not (lm-history-mark))
179e152a 501 "Can't find a 'History' section marker")
2505742b
DL
502 ((not (lm-code-mark))
503 "Can't find a 'Code' section marker")
504 ((progn
505 (goto-char (point-max))
506 (not
507 (re-search-backward
508 (concat "^;;;[ \t]+" name "[ \t]+ends here[ \t]*$"
509 "\\|^;;;[ \t]+ End of file[ \t]+" name)
510 nil t)))
5e18d632 511 (format "Can't find the footer line"))
13c40e2f 512 ((not (and (lm-copyright-mark) (lm-crack-copyright)))
179e152a
RS
513 "Can't find a valid copyright notice")
514 ((not (or non-fsf-ok
515 (string-match "Free Software Foundation"
516 (car (lm-crack-copyright)))))
517 "Copyright holder is not the Free Software Foundation")
2505742b
DL
518 (t
519 ret)))))
179e152a 520 (if verbose
d5eead69 521 (message ret))
2505742b 522 ret))
0fc37e7d
ER
523
524(defun lm-synopsis (&optional file showall)
525 "Generate a synopsis listing for the buffer or the given FILE if given.
ca4bd734
RS
526If FILE is a directory, recurse on its files and generate a report in
527a temporary buffer. If SHOWALL is non-nil, also generate a line for files
0fc37e7d 528which do not include a recognizable synopsis."
d5eead69
RS
529 (interactive
530 (list
531 (read-file-name "Synopsis for (file or dir): ")))
532
0fc37e7d 533 (if (and file (file-directory-p file))
2505742b 534 (with-temp-buffer
0fc37e7d 535 (mapcar
2505742b
DL
536 (lambda (f)
537 (if (string-match "\\.el\\'" f)
538 (let ((syn (lm-synopsis f)))
539 (if syn
540 (progn
541 (insert f ":")
542 (lm-insert-at-column lm-comment-column syn "\n"))
543 (when showall
544 (insert f ":")
545 (lm-insert-at-column lm-comment-column "NA\n"))))))
546 (directory-files file)))
547 (save-excursion
548 (if file
549 (find-file file))
550 (prog1
551 (lm-summary)
552 (if file
553 (kill-buffer (current-buffer)))))))
554
555(eval-when-compile (defvar report-emacs-bug-address))
0fc37e7d
ER
556
557(defun lm-report-bug (topic)
558 "Report a bug in the package currently being visited to its maintainer.
6e24ad22 559Prompts for bug subject TOPIC. Leaves you in a mail buffer."
68756f1f 560 (interactive "sBug Subject: ")
2505742b
DL
561 (require 'emacsbug)
562 (let ((package (lm-get-package-name))
563 (addr (lm-maintainer))
564 (version (lm-version)))
565 (compose-mail (if addr
566 (concat (car addr) " <" (cdr addr) ">")
567 report-emacs-bug-address)
568 topic)
0fc37e7d 569 (goto-char (point-max))
2505742b
DL
570 (insert "\nIn " package)
571 (if version
572 (insert " version " version))
573 (newline 2)
d5eead69 574 (message
0fc37e7d
ER
575 (substitute-command-keys "Type \\[mail-send] to send bug report."))))
576
577(provide 'lisp-mnt)
578
579;;; lisp-mnt.el ends here