emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r99819: Revert last change in batch-u


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99819: Revert last change in batch-update-authors.
Date: Sat, 03 Apr 2010 12:04:46 +0300
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99819
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Sat 2010-04-03 12:04:46 +0300
message:
  Revert last change in batch-update-authors.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/authors.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-04-03 08:59:36 +0000
+++ b/lisp/ChangeLog    2010-04-03 09:04:46 +0000
@@ -2,7 +2,6 @@
 
        * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
        Zaretskii.
-       (batch-update-authors): Fix popping arguments from command line.
 
 2010-04-02  Juanma Barranquero  <address@hidden>
 

=== modified file 'lisp/emacs-lisp/authors.el'
--- a/lisp/emacs-lisp/authors.el        2010-04-03 08:59:36 +0000
+++ b/lisp/emacs-lisp/authors.el        2010-04-03 09:04:46 +0000
@@ -950,8 +950,8 @@
     (error "`batch-update-authors' is to be used only with -batch"))
   (when (/= (length command-line-args-left) 2)
     (error "Call `batch-update-authors' with the name of the file to write"))
-  (let* ((root (pop command-line-args-left))
-        (file (pop command-line-args-left)))
+  (let* ((file (pop command-line-args-left))
+        (root (pop command-line-args-left)))
     (authors root)
     (write-file file)))
 


reply via email to

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