aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/emacs-lisp/authors.el6
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2522fd0a6ab..c47e85857f2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12009-01-03 Reiner Steib <Reiner.Steib@gmx.de> 12009-01-03 Reiner Steib <Reiner.Steib@gmx.de>
2 2
3 * emacs-lisp/authors.el (authors-aliases): Addition.
4 (authors): Allow to use it for other projects.
5
3 * emacs-lisp/copyright.el (copyright-update-directory): Autoload. 6 * emacs-lisp/copyright.el (copyright-update-directory): Autoload.
4 Clarify MATCH argument. Print filenames. 7 Clarify MATCH argument. Print filenames.
5 8
diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el
index 8d0fee18707..448999992da 100644
--- a/lisp/emacs-lisp/authors.el
+++ b/lisp/emacs-lisp/authors.el
@@ -113,7 +113,7 @@ files.")
113 ("Mikio Nakajima" "Nakajima Mikio") 113 ("Mikio Nakajima" "Nakajima Mikio")
114 ("Paul Eggert" "eggert") 114 ("Paul Eggert" "eggert")
115 ("Paul Reilly" "(pmr@legacy.pajato.com)") 115 ("Paul Reilly" "(pmr@legacy.pajato.com)")
116 ("Pavel Janík" "Pavel Janík Ml." "Pavel Janík" "Pavel@Janik.Cz") 116 ("Pavel Janík" "Pavel Janík Ml." "Pavel Janik Ml." "Pavel Janik" "Pavel Janík" "Pavel@Janik.Cz")
117 ("Per Abrahamsen" "Per Abhiddenware") 117 ("Per Abrahamsen" "Per Abhiddenware")
118 ("Peter S. Galbraith" "Peter Galbraith") 118 ("Peter S. Galbraith" "Peter Galbraith")
119 ("Peter Runestig" "Peter 'luna' Runestig") 119 ("Peter Runestig" "Peter 'luna' Runestig")
@@ -750,7 +750,9 @@ buffer *Authors Errors* containing references to unknown files."
750 authors-invalid-file-names) 750 authors-invalid-file-names)
751 (authors-add-fixed-entries table) 751 (authors-add-fixed-entries table)
752 (unless (file-exists-p (expand-file-name "src/emacs.c" root)) 752 (unless (file-exists-p (expand-file-name "src/emacs.c" root))
753 (error "Not the root directory of Emacs: %s" root)) 753 (unless (y-or-n-p
754 (format "Not the root directory of Emacs: %s, continue? " root))
755 (error "Not the root directory.")))
754 (dolist (log logs) 756 (dolist (log logs)
755 (when (string-match "ChangeLog\\(.[0-9]+\\)?$" log) 757 (when (string-match "ChangeLog\\(.[0-9]+\\)?$" log)
756 (message "Scanning %s..." log) 758 (message "Scanning %s..." log)