summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorLute Kamstra <lute@gnu.org>2005-05-17 15:05:02 +0000
committerLute Kamstra <lute@gnu.org>2005-05-17 15:05:02 +0000
commit77777daf1d13c411dc0439f09fc1c0a39de14475 (patch)
tree677bc15ed60c0a566fa1abd4c8b8326a94c9501a /lisp/emacs-lisp
parentcb011c67aa8a93e0ae8970d6f94f790c72e4cb1f (diff)
downloademacs-77777daf1d13c411dc0439f09fc1c0a39de14475.tar.gz
emacs-77777daf1d13c411dc0439f09fc1c0a39de14475.tar.bz2
emacs-77777daf1d13c411dc0439f09fc1c0a39de14475.zip
(authors): Do parse the ChangeLogs of the Emacs Lisp Reference Manual.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/authors.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el
index 8eb177dd9ca..6280af2fb72 100644
--- a/lisp/emacs-lisp/authors.el
+++ b/lisp/emacs-lisp/authors.el
@@ -1,6 +1,6 @@
;;; authors.el --- utility for maintaining Emacs' AUTHORS file -*-coding: iso-2022-7bit;-*-
-;; Copyright (C) 2000, 2003 Free Software Foundation, Inc.
+;; Copyright (C) 2000, 2003, 2005 Free Software Foundation, Inc.
;; Author: Gerd Moellmann <gerd@gnu.org>
;; Maintainer: Kim F. Storm <storm@cua.dk>
@@ -597,8 +597,7 @@ buffer *Authors Errors* containing references to unknown files."
(unless (file-exists-p (expand-file-name "src/emacs.c" root))
(error "Not the root directory of Emacs: %s" root))
(dolist (log logs)
- (when (and (string-match "ChangeLog\\(.[0-9]+\\)?$" log)
- (not (string-match "/lispref/" log)))
+ (when (string-match "ChangeLog\\(.[0-9]+\\)?$" log)
(message "Scanning %s..." log)
(authors-scan-change-log log table)))
(let ((els (authors-process-lines "find" root "-name" "*.el")))