From 3f019167b85ac7848da0df04875e39e01e2787c7 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Tue, 20 Aug 2024 19:23:48 +0200 Subject: [PATCH 1/4] Suppress shallow cloning on emba * test/infra/gitlab-ci.yml (variables): Set GIT_DEPTH to 0 in order to avoid shallow cloning. --- test/infra/gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/test/infra/gitlab-ci.yml b/test/infra/gitlab-ci.yml index e16dcd54a45..320e869ea8b 100644 --- a/test/infra/gitlab-ci.yml +++ b/test/infra/gitlab-ci.yml @@ -42,6 +42,7 @@ workflow: - when: always variables: + GIT_DEPTH: 0 GIT_STRATEGY: fetch EMACS_EMBA_CI: 1 EMACS_TEST_JUNIT_REPORT: junit-test-report.xml From 9d7151c0ffa19ef6fc07ca78f7be0487176a1bb5 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Tue, 20 Aug 2024 20:11:08 +0200 Subject: [PATCH 2/4] Add missing :version tags in use-package * lisp/use-package/use-package-core.el (use-package-keywords) (use-package-deferring-keywords, use-package-ignore-unknown-keywords) (use-package-use-theme, use-package-verbose) (use-package-check-before-init, use-package-always-defer) (use-package-always-demand, use-package-defaults) (use-package-merge-key-alist, use-package-hook-name-suffix) (use-package-minimum-reported-time, use-package-inject-hooks) (use-package-expand-minimally, use-package-form-regexp-eval) (use-package-enable-imenu-support, use-package-compute-statistics): * lisp/use-package/use-package-ensure.el (use-package-always-ensure) (use-package-always-pin, use-package-ensure-function): Add missing :version tags. --- lisp/use-package/use-package-core.el | 51 +++++++++++++++++--------- lisp/use-package/use-package-ensure.el | 9 +++-- 2 files changed, 40 insertions(+), 20 deletions(-) diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index 8c3241d5ee0..7148c334126 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el @@ -114,7 +114,8 @@ Note that `:disabled' is special in this list, as it causes nothing at all to happen, even if the rest of the `use-package' declaration is incorrect." :type '(repeat symbol) - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-deferring-keywords '(:bind-keymap @@ -128,21 +129,24 @@ function symbols that can be autoloaded from the module; whereas the default keywords provided here always defer loading unless otherwise requested." :type '(repeat symbol) - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-ignore-unknown-keywords nil "If non-nil, warn instead of signaling error for unknown keywords. The unknown keyword and its associated arguments will be ignored in the `use-package' expansion." :type 'boolean - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-use-theme t "If non-nil, use a custom theme to avoid saving :custom variables twice (once in the Custom file, once in the use-package call)." :type 'boolean - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-verbose nil "Whether to report about loading and configuration details. @@ -154,25 +158,29 @@ then the expanded macros do their job silently." (const :tag "Quiet" nil) (const :tag "Verbose" t) (const :tag "Debug" debug)) - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-check-before-init nil "If non-nil, check that package exists before executing its `:init' block. This check is performed by calling `locate-library'." :type 'boolean - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-always-defer nil "If non-nil, assume `:defer t' unless `:demand' is used. See also `use-package-defaults', which uses this value." :type 'boolean - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-always-demand nil "If non-nil, assume `:demand t' unless `:defer' is used. See also `use-package-defaults', which uses this value." :type 'boolean - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-defaults '(;; this '(t) has special meaning; see `use-package-handler/:config' @@ -214,7 +222,8 @@ attempted." (list (symbol :tag "Keyword") (choice :tag "Default value" sexp function) (choice :tag "Enable if non-nil" sexp function))) - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-merge-key-alist '((:if . (lambda (new old) `(and ,new ,old))) @@ -238,21 +247,24 @@ handler is called only once." use-package-keywords) (const :tag "Any" t)) function)) - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-hook-name-suffix "-hook" "Text append to the name of hooks mentioned by :hook. Set to nil if you don't want this to happen; it's only a convenience." :type '(choice string (const :tag "No suffix" nil)) - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-minimum-reported-time 0.1 "Minimal load time that will be reported. Note that `use-package-verbose' has to be set to a non-nil value for anything to be reported at all." :type 'number - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-inject-hooks nil "If non-nil, add hooks to the `:init' and `:config' sections. @@ -278,7 +290,8 @@ user-supplied configuration is not evaluated, so be certain to return t if you only wish to add behavior to what the user had specified." :type 'boolean - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-expand-minimally nil "If non-nil, make the expanded code as minimal as possible. @@ -293,7 +306,8 @@ configuration works, it will make the byte-compiled file as minimal as possible. It can also help with reading macro-expanded definitions, to understand the main intent of what's happening." :type 'boolean - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-form-regexp-eval `(concat ,(eval-when-compile @@ -306,7 +320,8 @@ definitions, to understand the main intent of what's happening." This is used by `use-package-jump-to-package-form' and `use-package-enable-imenu-support'." :type 'sexp - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-enable-imenu-support nil "If non-nil, cause imenu to see `use-package' declarations. @@ -325,7 +340,8 @@ Must be set before loading `use-package'." (remove (list "Packages" ,use-package-form-regexp-eval 2) lisp-imenu-generic-expression)))) (set-default sym value)) - :group 'use-package) + :group 'use-package + :version "29.1") ;; Redundant in Emacs 26 or later, which already highlights macro names. (defconst use-package-font-lock-keywords @@ -344,7 +360,8 @@ if this option is enabled, you must require `use-package' in your user init file at loadup time, or you will see errors concerning undefined variables." :type 'boolean - :group 'use-package) + :group 'use-package + :version "29.1") (defcustom use-package-vc-prefer-newest nil "Prefer the newest commit over the latest release. diff --git a/lisp/use-package/use-package-ensure.el b/lisp/use-package/use-package-ensure.el index 5f75b6b59ea..817c62276ad 100644 --- a/lisp/use-package/use-package-ensure.el +++ b/lisp/use-package/use-package-ensure.el @@ -46,13 +46,15 @@ "Treat every package as though it had specified using `:ensure SEXP'. See also `use-package-defaults', which uses this value." :type 'sexp - :group 'use-package-ensure) + :group 'use-package-ensure + :version "29.1") (defcustom use-package-always-pin nil "Treat every package as though it had specified using `:pin SYM'. See also `use-package-defaults', which uses this value." :type 'symbol - :group 'use-package-ensure) + :group 'use-package-ensure + :version "29.1") (defcustom use-package-ensure-function 'use-package-ensure-elpa "Function that ensures a package is installed. @@ -70,7 +72,8 @@ This function should return non-nil if the package is installed. The default value uses package.el to install the package." :type '(choice (const :tag "package.el" use-package-ensure-elpa) (function :tag "Custom")) - :group 'use-package-ensure) + :group 'use-package-ensure + :version "29.1") ;;;; :pin From 58088b36e8af92bd8cd27c4e09a6ed1a5dd7941d Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 18 Aug 2024 12:35:15 +0200 Subject: [PATCH 3/4] * admin/authors.el: Pick-up version from emacs-29. --- admin/authors.el | 121 +++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 107 insertions(+), 14 deletions(-) diff --git a/admin/authors.el b/admin/authors.el index 915596a20c4..904551dcb01 100644 --- a/admin/authors.el +++ b/admin/authors.el @@ -48,7 +48,9 @@ files.") ("Alexander Gramiak" "Alex Gramiak") ("Alexandru Harsanyi" "Alex Harsanyi") ("Álvar Jesús Ibeas Martín" "Álvar Ibeas") + (nil "ambihelical") ("Andrea Corallo" "AndreaCorallo") + ("Andrii Kolomoiets" "andreyk\\.mad@gmail\\.com") ("Andrew Csillag" "Drew Csillag") ("Andrew G Cohen" "Andrew Cohen") ("Anna M. Bigatti" "Anna Bigatti") @@ -56,19 +58,26 @@ files.") ("Barry A. Warsaw" "Barry A. Warsaw, Century Computing, Inc." "Barry A. Warsaw, ITB" "Barry Warsaw") ("Bastien Guerry" "Bastien .*bzg") + ("Benjamin Carlsson" "glacials" "ben@twos\\.dev") + ("Benjamin Schwerdtner" "Benjamin\\.Schwerdtner@gmail\\.com" "Ben Schw") ("Bill Carpenter" "WJ Carpenter") ("Bill Mann" "William F. Mann") ("Bill Rozas" "Guillermo J. Rozas") - (nil "binjo.cn@gmail.com") - (nil "bug-gnu-emacs@gnu.org") ; mistake + ("Billy Zheng" "vil963@gmail\\.com") + (nil "binjo\\.cn@gmail\\.com") + (nil "bug-gnu-emacs@gnu\\.org") ; mistake ("Björn Torkelsson" "Bjorn Torkelsson") ("Brian Fox" "Brian J. Fox") ("Brian P Templeton" "BT Templeton") ("Brian Sniffen" "Brian T. Sniffen") + (nil "brotzeitmacher@gmail\\.com") (nil "castor@my-dejanews") - (nil "chengang31@gmail.com") + (nil "chengang31@gmail\\.com") (nil "chuntaro") ("Clément Pit-Claudel" "Clément Pit--Claudel") + (nil "Cristian" "crstml@libero\\.it") + ("Le Trung Dan" "daanturo@gmail\\.com" "Daanturo") + ("Daniel Freeman" "dannyfreeman") ("David Abrahams" "Dave Abrahams") ("David J. Biesack" "David Biesack") ("David De La Harpe Golden" "David Golden") @@ -81,7 +90,7 @@ files.") ("Daniel Laurens Nicolai" "dalanicolai") (nil "deech@deech") ("Deepak Goel" "D. Goel") - ("Earl Hyatt" "Earl" "ej32u@protonmail.com") + ("Earl Hyatt" "Earl" "ej32u@protonmail\\.com") ("Ed L. Cashin" "Ed L Cashin") ("Edward M. Reingold" "Ed\\(ward\\( M\\)?\\)? Reingold" "Reingold Edward M") ("Emilio C. Lopes" "Emilio Lopes") @@ -93,19 +102,26 @@ files.") (nil "felix\\.dick@web\\.de") ("Felicián Németh" "Felician Nemeth") (nil "foudfou") + ("Feraidoon Mehri" + "NightMachinary" + "rudiwillalwaysloveyou@gmail\\.com" "fifymehry@gmail\\.com") ("Francis Litterio" "Fran Litterio") ("Francis J. Wright" "Dr Francis J. Wright" "Francis Wright") ("François Pinard" "Francois Pinard") ("Francesco Potortì" "Francesco Potorti" "Francesco Potorti`") ("Frederic Pierresteguy" "Fred Pierresteguy") (nil "^FSF") + (nil "galeo") + ("Garid Zorigoo" "garid3000" "garidzorigoo@gmail\\.com") ("Gerd Möllmann" "Gerd Moellmann") (nil "haqle314") ("Grégoire Jadi" "Gregoire Jadi") ("Hallvard B. Furuseth" "Hallvard B Furuseth" "Hallvard Furuseth") + (nil "hokomo@airmail\\.cc" "hokomo") ("Hrvoje Nikšić" "Hrvoje Niksic") ("Ian Dunn" "^Ian D\\>") ;; lisp/org/ChangeLog.1 2010-11-11. + ("Ignacio Casso" "ignacio\\.decasso@imdea\\.org" "ignaciocasso@hotmail\\.com") (nil "immerrr") (nil "aaa bbb") (nil "Code Extracted") ; lisp/newcomment.el's "Author:" header @@ -123,6 +139,8 @@ files.") ("Jérémie Courrèges-Anglas" "Jeremie Courreges-Anglas") ("Jeremy Bertram Maitin-Shepard" "Jeremy Maitin-Shepard") ("Jérémy Compostella" "Jeremy Compostella") + (nil "jgarte@" "jgart") + (nil "jicksaw@pm\\.me" "jicksaw") ("Jimmy Aguilar Mena" "Ergus") ("Jindřich Makovička" "Jindrich Makovicka") ("Johan Bockgård" "Johan Bockgard") @@ -137,6 +155,7 @@ files.") ("Juan León Lahoz García" "Juan-Leon Lahoz Garcia") ("Jürgen Hötzel" "Juergen Hoetzel") (nil "k3tu0isui") + (nil "kby@tilde\\.team") ("K. Shane Hartman" "Shane Hartman") ("Kai Großjohann" "Kai Grossjohann") ("Karl Berry" "K. Berry") @@ -152,6 +171,9 @@ files.") ("Koen van Greevenbroek" "realcomplex" "koenvg@posteo\\.net") ("Kyle Jones" "Kyle E. Jones") ("Lars Magne Ingebrigtsen" "Lars Ingebrigtsen") + ("Laurence Warne" "lWarne" "laurencewarne@gmail\\.com") + (nil "lensplaysgames@gmail\\.com") + (nil "lorniu@gmail\\.com") (nil "LynX@bk.ru") (nil "lu4nx") ("Marcus G. Daniels" "Marcus Daniels") @@ -173,7 +195,7 @@ files.") ("Michael R. Cook" "Michael Cook") ("Michael Sperber" "Mike Sperber" "Michael Sperber \\[Mr. Preprocessor\\]") ("Michalis V" "^mvar") - ("Miha Rihtaršič" "Miha Rihtarsic") + ("Miha Rihtaršič" "Miha Rihtarsic" "miha@kamnitnik\\.top" "miha") ("Mikio Nakajima" "Nakajima Mikio") (nil "montag451@laposte\\.net") ("Morgan Smith" "Morgan J\\. Smith") @@ -184,9 +206,12 @@ files.") ("Noah Peart" "noah\\.v\\.peart@gmail\\.com") ("Noorul Islam" "Noorul Islam K M") ;;; ("Tetsurou Okazaki" "OKAZAKI Tetsurou") ; FIXME? + (nil "odanoburu@") + (nil "one\\.last\\.kiss@outlook\\.com") + ("Cao ZhenXiang" "mail@ookami\\.one") ("Óscar Fuentes" "Oscar Fuentes") (nil "pillule") - (nil "psyberbits@gmail.com") + (nil "psyberbits@gmail\\.com") ("Paul Eggert" "Paul R\\. Eggert") ("Pavel Janík" "Pavel Janík Ml." "Pavel Janik Ml." "Pavel Janik") ("Pavel Kobiakov" "Pavel Kobyakov") @@ -198,15 +223,19 @@ files.") ("Philip Kaludercic" "Philip K\\." "Philip K") ("Philipp Stephani" "Philipp .*phst@google") ("Piotr Zieliński" "Piotr Zielinski") - ("Po Lu" "Po Lu Via" "Your Name") ; looks like a mistake + ("Po Lu" "Po Lu Via") ; looks like a mistake + ("Po Lu" "oldosfan" "luangruo@yahoo\\.com") ("Przemysław Wojnowski" "Przemyslaw Wojnowski") - ("R. Bernstein" "rb@dustyfeet.com") + ("Qifan Wang" "LdBeth" "andpuke@foxmail\\.com") + ("R. Bernstein" "rb@dustyfeet\\.com") ("Rainer Schöpf" "Rainer Schoepf") ("Raja R. Harinath" "Raja R Harinath") ("Rasmus Pank Roulund" "Rasmus .*rasmus@gmx") + (nil "rbrtb@") ("Richard G. Bielawski" "Richard G Bielawski" "Richard Bielawski") ("Richard King" "Dick King") ("Richard M. Stallman" "Richard Stallman" "rms@gnu.org") + (nil "webmaster@robario\\.com") ("Robert J. Chassell" "Bob Chassell") ("Roberto Huelga Díaz" "Roberto Huelga") ("Rodney J. Whitby" "Rod Whitby") @@ -214,19 +243,21 @@ files.") ("Ron Schnell" "Ronnie Schnell") ("Rui-Tao Dong" "Rui-Tao Dong ~{6-HpLN~}") ("Ryan Thompson" "Ryan .*rct@thompsonclan") + (nil "rvs314") (nil "rzl24ozi") ("Sacha Chua" "Sandra Jean Chua") ("Sam Steingold" "Sam Shteingold") ("Satyaki Das" "Indexed search by Satyaki Das") ("Sébastien Vauban" "Sebastien Vauban") ("Sergey Litvinov" "Litvinov Sergey") - ("Simen Heggestøyl" "simenheg@gmail.com") + ("Simen Heggestøyl" "simenheg@gmail\\.com") (nil "prime.wizard") ("Shun-ichi Goto" "Shun-ichi GOTO") ;; The trailing dash is a kludge, so this contributor is not ignored. ("skykanin-" "skykanin@users\\.noreply\\.github\\.com") ;; There are other Stefans. ;;; ("Stefan Monnier" "Stefan") + (nil "ssnnoo") ("Steven L. Baur" "SL Baur" "Steven L Baur") ("Stewart M. Clamen" "Stewart Clamen") ("Stuart D. Herring" "Stuart Herring" "Davis Herring") @@ -240,6 +271,7 @@ files.") ("Thomas Dye" "Tom Dye") ("Thomas Horsley" "Tom Horsley") ; FIXME ? ("Thomas Wurgler" "Tom Wurgler") + (nil "thuna\\.cing@gmail\\.com") ("Toby Cubitt" "Toby S\\. Cubitt") ("Tomohiko Morioka" "MORIOKA Tomohiko") ("Torbjörn Axelsson" "Torbjvrn Axelsson") @@ -248,23 +280,29 @@ files.") ("Tsugutomo Enami" "enami tsugutomo") ("Ulrich Müller" "Ulrich Mueller") (nil "vividsnow") + (nil "Valenoern" "valenoern@distributary\\.network") ("Vincent Del Vecchio" "Vince Del Vecchio") + ("M Visuwesh" "visuweshm@gmail\\.com") + (nil "vjoki@") + (nil "whatacold@gmail\\.com") ("William M. Perry" "Bill Perry") ("Wlodzimierz Bzyl" "W.*dek Bzyl") (nil "xyblor") + ("Yilkal Argaw" "yilkalargaw" "yilkalargawworkneh@gmail\\.com") ("Yoni Rabkin" "Yoni Rabkin Katzenell") ("Yoshinori Koseki" "KOSEKI Yoshinori" "小関 吉則") + ("Yuzhana Ego" "YugaEgo" "yet@ego\\.team") ("Yutaka NIIBE" "NIIBE Yutaka") (nil "stardiviner") - (nil "lin.sun") + (nil "lin\\.sun") ("Nitish Chinta" "nitishch") ("Carlos Pita" "memeplex") ("Vinicius Jose Latorre" "viniciusjl") ("Gaby Launay" "galaunay") ("Dick R. Chiang" "dickmao") - ("Lin Zhou" "georgealbert@qq.com") - (nil "yan@metatem.net") - (nil "gnu_lists@halloleo.hailmail.net") + ("Lin Zhou" "georgealbert@qq\\.com") + (nil "yan@metatem\\.net") + (nil "gnu_lists@halloleo\\.hailmail\\.net") ) "Alist of author aliases. @@ -941,9 +979,30 @@ Changes to files in this list are not listed.") "emacsclient.c" "etags.c" "hexl.c" "make-docfile.c" "movemail.c" "test-distrib.c" "testfile" "tpu-edt.doc" ; see below + ;; etc/images/gnus/ + "etc/images/gnus/important.pbm" + "etc/images/gnus/receipt.pbm" + "etc/images/gnus/unimportant.pbm" "iso-swed.el" + ;; lisp/obsolete/ "lisp/obsolete/vc-mcvs.el" "obsolete/vc-mcvs.el" + "lisp/obsolete/patcomp.el" + "lisp/obsolete/abbrevlist.el" + "lisp/obsolete/assoc.el" + "obsolete/assoc.el" + "lisp/obsolete/complete.el" + "lisp/obsolete/cust-print.el" + "lisp/obsolete/erc-hecomplete.el" + "lisp/obsolete/mailpost.el" + "obsolete/mailpost.el" + "lisp/obsolete/mouse-sel.el" + "lisp/obsolete/old-emacs-lock.el" + "obsolete/old-emacs-lock.el" + "lisp/obsolete/patcomp.el" + "lisp/obsolete/pc-select.el" + "lisp/obsolete/s-region.el" + "obsolete/pc-select.el" "nnwarchive.el" "nnultimate.el" "nnslashdot.el" @@ -979,7 +1038,41 @@ Changes to files in this list are not listed.") "flymake-ui.el" "pinentry.el" "ledit.el" - "lmenu.el") + "lmenu.el" + "src/pgtkselect.h" + "test/manual/noverlay/many-errors.h" + "lisp/better-pixel-scroll.el" + "test/infra/default-gitlab-ci.yml" + "test/infra/test-jobs-generator.sh" + "org-install.el" + ;; use-package stuff removed after it was added + "etc/USE-PACKAGE-NEWS" + "lisp/use-package/bind-chord.el" + "lisp/use-package/use-package-chords.el" + "lisp/use-package/use-package-chords-tests.el" + "test/lisp/use-package/use-package-chords-tests.el" + ;; Eglot stuff removed after it was added + "README.mdown" + "README.md" + ".travis.yml" + ;; Tree-sitter stuff + "admin/notes/tree-sitter/html-manual/Parser_002dbased-Font-Lock.html" + "admin/notes/tree-sitter/html-manual/Parsing-Program-Source.html" + "admin/notes/tree-sitter/html-manual/build-manual.sh" + "admin/notes/tree-sitter/html-manual/Accessing-Node.html" + "admin/notes/tree-sitter/html-manual/Language-Definitions.html" + "admin/notes/tree-sitter/html-manual/Multiple-Languages.html" + "admin/notes/tree-sitter/html-manual/Parser_002dbased-Indentation.html" + "admin/notes/tree-sitter/html-manual/Pattern-Matching.html" + "admin/notes/tree-sitter/html-manual/Retrieving-Node.html" + "admin/notes/tree-sitter/html-manual/Tree_002dsitter-C-API.html" + "admin/notes/tree-sitter/html-manual/Using-Parser.html" + "admin/notes/tree-sitter/html-manual/manual.css" + "admin/notes/tree-sitter/build-module/build.sh" + "admin/notes/tree-sitter/build-module/batch.sh" + "doc/misc/gnus-coding.texi" + "gnus-coding.texi" + ) "File names which are valid, but no longer exist (or cannot be found) in the repository.") From a0b65be8eb0574c3eda96787c3e0969b3fda4a7a Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Tue, 20 Aug 2024 12:56:11 +0200 Subject: [PATCH 4/4] * admin/authors.el (authors-aliases, authors-ignored-files): Update. --- admin/authors.el | 95 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 93 insertions(+), 2 deletions(-) diff --git a/admin/authors.el b/admin/authors.el index 904551dcb01..4addfdd6f19 100644 --- a/admin/authors.el +++ b/admin/authors.el @@ -55,6 +55,7 @@ files.") ("Andrew G Cohen" "Andrew Cohen") ("Anna M. Bigatti" "Anna Bigatti") ("Aurélien Aptel" "Aurelien Aptel") + ("Azeem Hasan" "Rahguzar" "rahguzar@zohomail.eu") ("Barry A. Warsaw" "Barry A. Warsaw, Century Computing, Inc." "Barry A. Warsaw, ITB" "Barry Warsaw") ("Bastien Guerry" "Bastien .*bzg") @@ -65,8 +66,10 @@ files.") ("Bill Rozas" "Guillermo J. Rozas") ("Billy Zheng" "vil963@gmail\\.com") (nil "binjo\\.cn@gmail\\.com") + (nil "BlaCk_Void" "alstjr7375@daum.net") (nil "bug-gnu-emacs@gnu\\.org") ; mistake ("Björn Torkelsson" "Bjorn Torkelsson") + (nil "brandon.irizarry@gmail.com") ("Brian Fox" "Brian J. Fox") ("Brian P Templeton" "BT Templeton") ("Brian Sniffen" "Brian T. Sniffen") @@ -77,6 +80,7 @@ files.") ("Clément Pit-Claudel" "Clément Pit--Claudel") (nil "Cristian" "crstml@libero\\.it") ("Le Trung Dan" "daanturo@gmail\\.com" "Daanturo") + (nil "D.K" "beerandhot@gmail.com") ("Daniel Freeman" "dannyfreeman") ("David Abrahams" "Dave Abrahams") ("David J. Biesack" "David Biesack") @@ -154,6 +158,7 @@ files.") ("Joseph M. Kelsey" "Joe Kelsey") ; FIXME ? ("Juan León Lahoz García" "Juan-Leon Lahoz Garcia") ("Jürgen Hötzel" "Juergen Hoetzel") + ("Justin Burkett" "justbur" "justin@burkett.cc") (nil "k3tu0isui") (nil "kby@tilde\\.team") ("K. Shane Hartman" "Shane Hartman") @@ -196,6 +201,7 @@ files.") ("Michael Sperber" "Mike Sperber" "Michael Sperber \\[Mr. Preprocessor\\]") ("Michalis V" "^mvar") ("Miha Rihtaršič" "Miha Rihtarsic" "miha@kamnitnik\\.top" "miha") + (nil "mikpom" "mikpom@mikpom.ru") ("Mikio Nakajima" "Nakajima Mikio") (nil "montag451@laposte\\.net") ("Morgan Smith" "Morgan J\\. Smith") @@ -260,6 +266,7 @@ files.") (nil "ssnnoo") ("Steven L. Baur" "SL Baur" "Steven L Baur") ("Stewart M. Clamen" "Stewart Clamen") + (nil "StrawberryTea" "look@strawberrytea.xyz") ("Stuart D. Herring" "Stuart Herring" "Davis Herring") ("T.V. Raman" "T\\. V\\. Raman") ("Taichi Kawabata" "KAWABATA,? Taichi") @@ -277,6 +284,7 @@ files.") ("Torbjörn Axelsson" "Torbjvrn Axelsson") ("Torbjörn Einarsson" "Torbj.*rn Einarsson") ("Toru Tomabechi" "Toru TOMABECHI") + ("Toshi Umehara" "niceume" "toshi@niceume.com") ("Tsugutomo Enami" "enami tsugutomo") ("Ulrich Müller" "Ulrich Mueller") (nil "vividsnow") @@ -612,7 +620,72 @@ Changes to files matching one of the regexps in this list are not listed.") "lisp/org/ob-J.el" ;; Removed -- for now. "test/src/doc-tests.el" - ) + "xcompile" + "java/org/gnu/emacs/EmacsPaintQueue.java" + "java/org/gnu/emacs/EmacsPaintReq.java" + "xcompile/lib/unistd.c" + "xcompile/lib/open.c" + "xcompile/lib/fpending.c" + "xcompile/lib/gnulib.mk.in" + "cross/lib/math.h" + "cross/ndk-build/ndk-build.in" + "cross/lib/stdalign.in.h" + "cross/lib/_Noreturn.h" + "test/lisp/tramp-tests.el" + "lib/vasnprintf.c" + "lib/isnan.c" + "cross/lib/verify.h" + "cross/lib/libc-config.h" + "cross/lib/cdefs.h" + "java/org/gnu/emacs/EmacsEditable.java" + "lib/math.h" + "cross/lib/vasnprintf.c" + "cross/lib/openat-proc.c" + "lib/math.in.h" + "cross/lib/string.in.h" + "cross/lib/stpncpy.c" + "cross/lib/limits.in.h" + "cross/lib/getopt-pfx-core.h" + "cross/lib/unistd.in.h" + "INSTALL.android" + "lisp/eshell/em-arg.el" + "test/lisp/erc/resources/base/renick/regain/normal.eld" + "test/lisp/erc/resources/fill/snapshots/merge-wrap-indicator-post-01.eld" + "if-11.cc" + "if-11.res" + "java/org/gnu/emacs/EmacsWindowAttachmentManager.java" + "lisp/gnus/legacy-gnus-agent.el" + "admin/coccinelle/xsave.cocci" + "register-tests.el" + "feat" "build" "docs" "chore" + "nt/ftime-nostartup.bat" "nt/ftime.bat" + "java/org/gnu/emacs/EmacsCopyArea.java" + "test/lisp/erc/resources/base/renick/regain/normal-again.eld" + "test/lisp/erc/resources/base/commands/motd.eld" + "cross/lib/math.in.h" + "lib/strncpy.c" + "cross/lib/isnan.c" + "lib/count-one-bits.c" + "lib/count-one-bits.h" + "lib/count-trailing-zeros.c" + "lib/count-trailing-zeros.h" + "lib/count-leading-zeros.h" + "lib/count-leading-zeros.c" + "lisp/org/ob-asymptote.el" + "lisp/org/ob-io.el" + "lisp/org/ob-shen.el" + "lisp/progmodes/ada-stmt.el" + "lib-src/profile.c" + "doc/misc/gnus-overrides.texi" + "etc/CENSORSHIP" "etc/FTP" "etc/GNU" "etc/LINUX-GNU" "etc/MORE.STUFF" "etc/ORDERS" + "etc/THE-GNU-PROJECT" "etc/WHY-FREE" + "lisp/obsolete/options.el" + "etc/emacs.appdata.xml" + "lisp/obsolete/sregex.el" + "lisp/org/ob-picolisp.el" + "lisp/obsolete/levents.el" + "lisp/obsolete/lucid.el" + "lisp/obsolete/old-whitespace.el") "List of files and directories to ignore. Changes to files in this list are not listed.") @@ -1614,7 +1687,25 @@ in the repository.") ("lisp/emacs-lisp/autoload.el" . "autoload.el") ("lisp/emacs-lisp/eieio-compat.el" . "eieio-compat.el") ("autoarg.el" . "autoarg.el") - ) + ("xcompile/Makefile.in" . "cross/Makefile.in") + ("xcompile/README" . "cross/README") + ("xcompile/langinfo.h" . "cross/langinfo.h") + ("xcompile/verbose.mk.android" . "cross/verbose.mk.android") + ("test/lisp/peg-tests.el" . "test/lisp/progmodes/peg-tests.el") + ("doc/lispref/type_hierarchy.txt" . "doc/lispref/elisp_type_hierarchy.txt") + ("doc/lispref/type_hierarchy.jpg" . "doc/lispref/elisp_type_hierarchy.jpg") + ("etc/syncdoc-type-hierarchy.el" . "admin/syncdoc-type-hierarchy.el") + ("doc/lang/fr/misc/ses-fr.texi" . "doc/translations/fr/misc/ses-fr.texi") + ("lisp/use-package/bind-key.el" . "lisp/bind-key.el") + ("lisp/autoarg.el" . "lisp/obsolete/autoarg.el") + ("lisp/url/url-ns.el" . "lisp/obsolete/url-ns.el") + ("lisp/mail/rfc2368.el" . "lisp/obsolete/mail/rfc2368.el") + ("lisp/vt-control.el" . "lisp/obsolete/vt-control.el") + ("lisp/cedet/inversion.el" . "lisp/obsolete/inversion.el") + ("lisp/emacs-lisp/tcover-unsafep.el" . "test/lisp/emacs-lisp/unsafep-tests.el") + ("lisp/vt100-led.el" . "lisp/obsolete/vt100-led.el") + ("lisp/mail/metamail.el" . "lisp/obsolete/metamail.el") + ("lisp/sb-image.el" . "lisp/obsolete/sb-image.el")) "Alist of files which have been renamed during their lifetime. Elements are (OLDNAME . NEWNAME).")