# HG changeset patch # User Lute Kamstra # Date 1116342247 0 # Node ID 9ffac6fd4aa884d2cd370e6f10bc24ea87896f7a # Parent a25a4c4602a44934eb1bca35ccc06a45adf7dde1 (authors): Do parse the ChangeLogs of the Emacs Lisp Reference Manual. diff -r a25a4c4602a4 -r 9ffac6fd4aa8 lisp/emacs-lisp/authors.el --- a/lisp/emacs-lisp/authors.el Tue May 17 15:03:12 2005 +0000 +++ b/lisp/emacs-lisp/authors.el Tue May 17 15:04:07 2005 +0000 @@ -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 ;; Maintainer: Kim F. Storm @@ -597,8 +597,7 @@ (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")))