emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r99818: Fix bug in batch-update-autho


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99818: Fix bug in batch-update-authors. Add bidi to AUTHORS.
Date: Sat, 03 Apr 2010 11:59:36 +0300
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99818
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Sat 2010-04-03 11:59:36 +0300
message:
  Fix bug in batch-update-authors.  Add bidi to AUTHORS.
  
   emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli Zaretskii.
   (batch-update-authors): Fix popping arguments from command line.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/authors.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-04-03 01:54:24 +0000
+++ b/lisp/ChangeLog    2010-04-03 08:59:36 +0000
@@ -1,3 +1,9 @@
+2010-04-03  Eli Zaretskii  <address@hidden>
+
+       * 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>
 
        * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)

=== modified file 'lisp/emacs-lisp/authors.el'
--- a/lisp/emacs-lisp/authors.el        2010-02-18 06:05:45 +0000
+++ b/lisp/emacs-lisp/authors.el        2010-04-03 08:59:36 +0000
@@ -427,6 +427,7 @@
     ("Geoff Voelker" :wrote "w32-fns.el" "w32.c" "w32.h" "w32heap.c"
      "w32heap.h" "w32inevt.c" "w32proc.c" "w32term.c" "ms-w32.h")
     ("Morten Welinder" :wrote "dosfns.c" "[many MS-DOS files]" "msdos.h")
+    ("Eli Zaretskii" :wrote "bidi.c" "[bidirectional display in xdisp.c]")
     ;; Not using this version any more.
 ;;;    ("Pace Willisson" :wrote "ispell.el")
     ;; FIXME overwritten by Author:.
@@ -949,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* ((file (pop command-line-args-left))
-        (root (pop command-line-args-left)))
+  (let* ((root (pop command-line-args-left))
+        (file (pop command-line-args-left)))
     (authors root)
     (write-file file)))
 


reply via email to

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