]> code.delx.au - gnu-emacs/blobdiff - admin/authors.el
Merge from emacs-24; up to 2014-07-27T01:00:26Z!fgallina@gnu.org
[gnu-emacs] / admin / authors.el
similarity index 98%
rename from lisp/emacs-lisp/authors.el
rename to admin/authors.el
index 51bd41530ccac84ec2fcae5ea52d361266fbc45d..aefd947e802cf0883cd2938c8f32069608e49f1f 100644 (file)
@@ -301,6 +301,7 @@ Changes to files matching one of the regexps in this list are not listed.")
     "images/icons/allout-widgets-dark-bg"
     "images/icons/allout-widgets-light-bg"
     ;; Never had any meaningful changes logged, now deleted:
+    "lib/stdarg.in.h" "lib/stdbool.in.h"
     "unidata/bidimirror.awk" "unidata/biditype.awk"
     "split-man" "Xkeymap.txt" "ms-7bkermit" "ulimit.hack"
     "gnu-hp300" "refcard.bit" "ledit.l" "forms.README" "forms-d2.dat"
@@ -593,9 +594,10 @@ Changes to files in this list are not listed.")
     "README"
     ;; There were a few of these, not just the generated top-level one.
     "configure" "config.h"
+    "is_exec.c" "sigaction.c"
     ;; nt/
     "ebuild.bat" "install.bat" "fast-install.bat"
-    "debug.bat.in" "emacs.bat.in"
+    "debug.bat.in" "emacs.bat.in" "addsection.c"
     "inc/sys/dir.h" "inc/gettext.h"
     ".gdbinit-union"
     "alloca.s"
@@ -649,6 +651,8 @@ Changes to files in this list are not listed.")
     "mh-exec.el" "mh-init.el" "mh-customize.el"
     "net/zone-mode.el" "xesam.el"
     "term/mac-win.el" "sup-mouse.el"
+    "term/vt102.el" "term/vt201.el" "term/vt220.el" "term/vt300.el"
+    "term/vt320.el" "term/vt400.el" "term/vt420.el"
     "url-https.el"
     "org-mac-message.el" "org-mew.el" "org-w3m.el" "org-vm.el" "org-wl.el"
     "org-mks.el" "org-remember.el" "org-xoxo.el" "org-docbook.el"
@@ -656,6 +660,7 @@ Changes to files in this list are not listed.")
     "org-exp-blocks.el"                     ; maybe this is ob-exp now? dunno
     "org-lparse.el"
     "org-special-blocks.el" "org-taskjuggler.el"
+    "progmodes/cap-words.el"
     ;; gnus
     "nnwfm.el" "nnlistserv.el" "nnkiboze.el" "nndb.el" "nnsoup.el"
     "netrc.el" "password.el" "sasl-cram.el" "sasl-digest.el" "sasl-ntlm.el"
@@ -774,6 +779,13 @@ in the repository.")
     ;; Obsolete.
     ("emacs-lisp/assoc.el" . "assoc.el")
     ("emacs-lisp/cust-print.el" . "cust-print.el")
+    ("emacs-lisp/gulp.el" . "gulp.el")
+    ("emulation/crisp.el" . "crisp.el")
+    ("emulation/tpu-edt.el" . "tpu-edt.el")
+    ("emulation/tpu-extras.el" . "tpu-extras.el")
+    ("emulation/vi.el" . "vi.el")
+    ("emulation/vip.el" . "vip.el")
+    ("emulation/ws-mode.el" . "ws-mode.el")
     ("mail/mailpost.el" . "mailpost.el")
     ("play/bruce.el" . "bruce.el")
     ("play/yow.el" . "yow.el")
@@ -787,6 +799,7 @@ in the repository.")
     ;; The one in lisp is eshell/eshell.el.
     ("eshell.el" . "automated/eshell.el")
     ("eshell/esh-test.el" . "automated/eshell.el")
+    ("automated/package-x-test.el" . "automated/package-test.el")
     ;; INSTALL-CVS -> .CVS -> .BZR -> .REPO
     ("INSTALL-CVS" . "INSTALL.REPO")
     ("INSTALL.CVS" . "INSTALL.REPO")
@@ -805,6 +818,8 @@ in the repository.")
     ("emacs.tex" . "emacs.texi")
     ("faq.texi" . "efaq.texi")
     ("major.texi" . "modes.texi")
+    ("msdog-xtra.texi" . "msdos-xtra.texi")
+    ("msdog.texi" . "msdos.texi")
     ;; And from emacs/ to misc/ and back again.
     ("ns-emacs.texi" . "macos.texi")
     ("overrides.texi" . "gnus-overrides.texi")
@@ -843,6 +858,8 @@ in the repository.")
     ("autogen/update_autogen" . "update_autogen")
     ;; Moved from etc/ to admin/.
     ("grammars" . "grammars")
+    ;; Moved from lisp/emacs-lisp/ to admin/.
+    ("emacs-lisp/authors.el" . "authors.el")
     ;; From etc to lisp/cedet/semantic/.
     ("grammars/bovine-grammar.el" . "bovine/grammar.el")
     ("grammars/wisent-grammar.el" . "wisent/grammar.el")
@@ -1325,7 +1342,11 @@ list of their contributions.\n")
       (maphash #'authors-add-to-author-list table)
       (setq authors-author-list
            (sort authors-author-list
-                 (lambda (a b) (string-lessp (car a) (car b)))))
+                 (lambda (a b)
+                   (string-collate-lessp (car a) (car b)
+                                         (if (eq system-type 'windows-nt)
+                                             "enu_USA"
+                                           "en_US.UTF-8")))))
       (dolist (a authors-author-list)
        (let ((author (car a))
              (wrote (nth 1 a))