emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r102977: Undo part of previous copyri


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102977: Undo part of previous copyright.el change.
Date: Tue, 25 Jan 2011 09:41:28 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102977
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2011-01-25 09:41:28 -0800
message:
  Undo part of previous copyright.el change.
  
  * lisp/emacs-lisp/copyright.el (copyright-update-directory):
  Undo part of previous change - don't find files literally, we need
  comment-start-skip, etc.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/copyright.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-01-25 16:01:53 +0000
+++ b/lisp/ChangeLog    2011-01-25 17:41:28 +0000
@@ -15,7 +15,7 @@
        Do not mess with the fill-prefix.
        Do not call copyright-update.
        (copyright-update-directory): Optionally, fix years rather than update.
-       Skip directories.  Find files literally, with only safe local vars.
+       Skip directories.  Find files with only safe local vars.
 
 2011-01-25  Stefan Monnier  <address@hidden>
 

=== modified file 'lisp/emacs-lisp/copyright.el'
--- a/lisp/emacs-lisp/copyright.el      2011-01-25 08:36:34 +0000
+++ b/lisp/emacs-lisp/copyright.el      2011-01-25 17:41:28 +0000
@@ -363,7 +363,7 @@
   (dolist (file (directory-files directory t match nil))
     (unless (file-directory-p file)
       (message "Updating file `%s'" file)
-      (find-file-literally file)
+      (find-file file)
       (let ((inhibit-read-only t)
            (enable-local-variables :safe)
            copyright-query)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]