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