]> git.eshelyaron.com Git - emacs.git/commitdiff
(copyright-update-directory): Autoload.
authorReiner Steib <Reiner.Steib@gmx.de>
Sat, 3 Jan 2009 19:40:20 +0000 (19:40 +0000)
committerReiner Steib <Reiner.Steib@gmx.de>
Sat, 3 Jan 2009 19:40:20 +0000 (19:40 +0000)
Clarify MATCH argument.  Print filenames.

lisp/ChangeLog
lisp/emacs-lisp/copyright.el

index 2a38194d0961c7108ad61c30c7048f3cdb20b729..2522fd0a6abf38798067af32797fb6b9297b55ed 100644 (file)
@@ -1,3 +1,8 @@
+2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * emacs-lisp/copyright.el (copyright-update-directory): Autoload.
+       Clarify MATCH argument.  Print filenames.
+
 2009-01-03  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/dbus.el (dbus-string-to-byte-array): Handle empty string.
index f8894a7975d5c3db35f6235eafd9d09e6e6b124f..85cd2b4248a1fa917529b07101b421a05ae7f97b 100644 (file)
@@ -1,7 +1,7 @@
 ;;; copyright.el --- update the copyright notice in current buffer
 
 ;; Copyright (C) 1991, 1992, 1993, 1994, 1995, 1998, 2001, 2002, 2003,
-;;   2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+;;   2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 
 ;; Author: Daniel Pfeiffer <occitan@esperanto.org>
 ;; Keywords: maint, tools
@@ -282,10 +282,12 @@ Uses heuristic: year >= 50 means 19xx, < 50 means 20xx."
        (message "Copyright extends beyond `copyright-limit' and won't be updated automatically."))
   comment-end \n)
 
+;;;###autoload
 (defun copyright-update-directory (directory match)
   "Update copyright notice for all files in DIRECTORY matching MATCH."
-  (interactive "DDirectory: \nMFilenames matching: ")
+  (interactive "DDirectory: \nMFilenames matching (regexp): ")
   (dolist (file (directory-files directory t match nil))
+    (message "Updating file `%s'" file)
     (find-file file)
     (let ((copyright-query nil))
       (copyright-update))