summaryrefslogtreecommitdiff
path: root/admin/authors.el
Commit message (Collapse)AuthorAgeFilesLines
* Merge from origin/emacs-27Glenn Morris2020-08-031-1/+0
|\ | | | | | | | | | | | | | | e12d1fbc15 ; ChangeLog.3 and etc/AUTHORS fixes 748f0d4bc6 * admin/authors.el (authors-aliases): Remove a faulty regexp. # Conflicts: # etc/AUTHORS
| * * admin/authors.el (authors-aliases): Remove a faulty regexp.Nicolas Petton2020-07-301-1/+0
| |
| * Update authors.elNicolas Petton2020-07-281-0/+2
| | | | | | | | * admin/authors.el (authors-aliases): Add author aliases.
* | Update authors.elNicolas Petton2020-07-281-1/+10
| | | | | | | | | | | | | | * admin/authors.el (authors-aliases): Add author aliases. (authors-ignored-files): (authors-valid-file-names): (authors-renamed-files-alist): Update file lists.
* | Delete libraries obsolete since 23.1 and 23.2Stefan Kangas2020-05-151-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Emacs 23.2 was released 10 years ago. old-whitespace.el has a replacement in whitespace.el and is no longer relevant. The other libraries implement compatibility with Lucid Emacs, a modified version of Emacs last released in the 1990s. * lisp/obsolete/ledit.el: * lisp/obsolete/lmenu.el: * lisp/obsolete/lucid.el: * lisp/obsolete/old-whitespace.el: Delete files. These libraries have been obsolete since Emacs 23.1 or 23.2. * etc/NEWS: Announce their deletion. * admin/authors.el (authors-ignored-files) (authors-fixed-entries, authors-valid-file-names): * lisp/emulation/viper.el (viper-mode): * lisp/ffap.el (ffap-menu-ask): Remove references to deleted files.
* | Regularise some file-matching regexpsMattias EngdegÄrd2020-04-161-10/+10
|/ | | | | * admin/authors.el (authors-obsolete-files-regexps) (authors-renamed-files-regexps): Replace ^ and $ with \` and \'.
* * admin/authors.el: Add an author alias.Nicolas Petton2020-04-151-0/+1
|
* * admin/authors.el: Add missing author aliases.Nicolas Petton2020-04-141-0/+4
|
* Fix edge case errors in filename-matching regexpsMattias EngdegÄrd2020-04-141-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These changes fix actual or latent bugs in regexps that match file names, such as PATTERN arguments to 'directory-files'. See https://lists.gnu.org/archive/html/emacs-devel/2020-04/msg00265.html * admin/authors.el (authors-obsolete-files-regexps) (authors-renamed-files-regexps): * lisp/auth-source-pass.el (auth-source-pass-entries): * lisp/calendar/todo-mode.el (todo-show, todo-find-filtered-items-file) (todo-filter-items, todo-reset-nondiary-marker, todo-reset-done-string) (todo-reset-comment-string, todo-reset-highlight-item): * lisp/cedet/semantic/db-ebrowse.el (semanticdb-load-ebrowse-caches): * lisp/cedet/semantic/texi.el (semantic-texi-associated-files): * lisp/cedet/srecode/map.el (srecode-map-update-map): * lisp/dired.el (dired-re-no-dot): * lisp/emacs-lisp/autoload.el (update-directory-autoloads): * lisp/emacs-lisp/shadow.el (load-path-shadows-find): * lisp/files.el (auto-mode-alist, directory-files-no-dot-files-regexp): * lisp/finder.el (finder-compile-keywords): * lisp/generic-x.el (inetd-conf-generic-mode, named-boot-generic-mode) (resolve-conf-generic-mode, etc-modules-conf-generic-mode): * lisp/gnus/gnus-agent.el (gnus-agent-read-agentview) (gnus-agent-regenerate-group, gnus-agent-update-files-total-fetched-for): * lisp/gnus/gnus-cache.el (gnus-cache-articles-in-group): * lisp/gnus/gnus-score.el (gnus-score-search-global-directories): * lisp/gnus/gnus-util.el (gnus-delete-directory): * lisp/gnus/gnus-uu.el (gnus-uu-dir-files): * lisp/gnus/nndraft.el (nndraft-request-group): * lisp/gnus/nnmh.el (nnmh-request-group, nnmh-request-create-group): (nnmh-request-delete-group, nnmh-active-number, nnmh-update-gnus-unreads): * lisp/gnus/nnspool.el (nnspool-request-group): * lisp/gnus/spam-stat.el (spam-stat-process-directory) (spam-stat-test-directory): * lisp/help-fns.el (help-fns--first-release): * lisp/help.el (view-emacs-news): * lisp/international/quail.el (quail-update-leim-list-file): * lisp/international/titdic-cnv.el (batch-titdic-convert): * lisp/mail/mspools.el (mspools-set-vm-spool-files) (mspools-get-spool-files): * lisp/mail/rmail.el (rmail-secondary-file-regexp) (rmail-speedbar-match-folder-regexp): * lisp/net/ange-ftp.el (ange-ftp-delete-directory): * lisp/net/tramp.el (tramp-use-absolute-autoload-file-names): * lisp/obsolete/gulp.el (gulp-send-requests): * lisp/obsolete/vc-arch.el (vc-arch-trim-revlib): * lisp/org/ob-core.el (org-babel-remove-temporary-directory): * lisp/progmodes/ebnf2ps.el (ebnf-file-suffix-regexp, ebnf-style-database): * lisp/progmodes/executable.el (executable-command-find-posix-p): * lisp/startup.el (command-line): * lisp/textmodes/refer.el (refer-get-bib-files): * lisp/url/url-about.el (url-probe-protocols): * lisp/vc/vc-rcs.el (vc-rcs-register, vc-rcs-unregister): * test/lisp/net/tramp-archive-tests.el (tramp-archive-test19-directory-files-and-attributes): * test/lisp/net/tramp-tests.el (tramp-test19-directory-files-and-attributes): Replace ^ and $ with \` and \', respectively. Use (rx (or (not ".") "...")), translated into "[^.]\\|\\.\\.\\.", to match anything but "." and "..", instead of several incorrect regexps.
* * admin/authors.el (authors-ignored-files): Fix entries.Nicolas Petton2020-02-271-5/+6
|
* * admin/authors.el: Add missing entriesNicolas Petton2020-02-261-1/+11
|
* * admin/authors.el: Add missing entries.Nicolas Petton2020-01-291-0/+27
|
* Update copyright year to 2020Paul Eggert2020-01-011-1/+1
| | | | Run "TZ=UTC0 admin/update-copyright $(git ls-files)".
* Go back to "Maintainer: emacs-devel@gnu.org"Paul Eggert2019-05-251-0/+1
| | | | | | Restore lines saying "Maintainer: emacs-devel@gnu.org" when there is no special maintainer for a file. Although this wasn't documented it was common practice and removing the lines didn't have consensus.
* Fixes for "Maintainer:" and related linesPaul Eggert2019-05-191-2/+0
| | | | | | Mostly, this just removes "Maintainer: emacs-devel@gnu.org" lines, which are not that useful. It also cleans up and regularizes a few similar lines.
* Update copyright year to 2019Paul Eggert2019-01-011-1/+1
| | | | Run 'TZ=UTC0 admin/update-copyright $(git ls-files)'.
* ; * admin/authors.el: Update.Nicolas Petton2018-05-251-1/+1
|
* * admin/authors.el (authors-aliases): Tighten more entries.Glenn Morris2018-01-161-3/+3
|
* authors-aliases is based on regexps, not literalsGlenn Morris2018-01-161-9/+9
| | | | * admin/authors.el (authors-aliases): Replace overly-broad entries.
* Fix an entry in authors-aliasesNicolas Petton2018-01-131-1/+1
| | | | | * admin/authors.el (authors-aliases): Replace regexp from "Max", which is too broad, to an email address ("mu@magi.net.ru").
* Update authorsNicolas Petton2018-01-121-1/+3
| | | | | * admin/authors.el (authors-aliases, authors-valid-file-names): Additions. * etc/AUTHORS: Update AUTHORS file.
* Update copyright year to 2018Paul Eggert2018-01-011-1/+1
| | | | Run admin/update-copyright.
* * admin/authors.el (authors-canonical-author-name):Glenn Morris2017-10-231-3/+4
| | | | Ignore name issues in "lax" ChangeLogs.
* Update authors.elNicolas Petton2017-10-111-1/+15
| | | | | * admin/authors.el (authors-valid-file-names) (authors-renamed-files-alist): Additions.
* * admin/authors.el (authors-aliases): Additions.Nicolas Petton2017-10-111-0/+18
|
* * admin/authors.el (authors-renamed-files-alist): addition.Nicolas Petton2017-10-091-0/+1
|
* Update authors.elNicolas Petton2017-10-051-2/+5
| | | | | * admin/authors.el (authors-renamed-files-alist) (authors-valid-file-names): Additions.
* Update authors.elNicolas Petton2017-10-031-3/+21
| | | | | * admin/authors.el (authors-ignored-files, authors-valid-file-names) (authors-renamed-files-alist): Additions.
* Prefer HTTPS to FTP and HTTP in documentationPaul Eggert2017-09-131-1/+1
| | | | | | | | | | | | | Most of this change is to boilerplate commentary such as license URLs. This change was prompted by ftp://ftp.gnu.org's going-away party, planned for November. Change these FTP URLs to https://ftp.gnu.org instead. Make similar changes for URLs to other organizations moving away from FTP. Also, change HTTP to HTTPS for URLs to gnu.org and fsf.org when this works, as this will further help defend against man-in-the-middle attacks (for this part I omitted the MS-DOS and MS-Windows sources and the test tarballs to keep the workload down). HTTPS is not fully working to lists.gnu.org so I left those URLs alone for now.
* More authors.el updatesGlenn Morris2017-06-071-3/+24
| | | | | | | * admin/authors.el (authors-ignored-files, authors-valid-file-names) (authors-renamed-files-alist): Additions. ; ChangeLog fixes
* More authors.el updatesGlenn Morris2017-06-061-4/+18
| | | | | | * admin/authors.el (authors-obsolete-files-regexps) (authors-valid-file-names, authors-renamed-files-alist) (authors-renamed-files-regexps): Additions.
* ; * admin/authors.el (authors-obsolete-files-regexps): Tweak previous.Glenn Morris2017-06-061-1/+1
|
* More small authors.el updatesGlenn Morris2017-06-061-11/+31
| | | | | | | | | | * admin/authors.el (authors-aliases): Fix recent addition. (authors-obsolete-files-regexps, authors-no-scan-regexps) (authors-ignored-files, authors-valid-file-names) (authors-renamed-files-alist): Additions. ; * lisp/vc/pcvs.el, test/lisp/emacs-lisp/checkdoc-tests.el: ; Fix Author headers. ; * ChangeLog.2: Fixes.
* Make authors.el report names that were ignoredGlenn Morris2017-06-051-10/+24
| | | | | | | | | * admin/authors.el (authors-ignored-names): New. (authors-canonical-author-name): Add file and position arguments. Record ignored authors. (authors-scan-change-log, authors-scan-el): Pass file and position to authors-canonical-author-name. (authors): Also print authors that were ignored.
* * admin/authors.el (authors-aliases): Additions.Glenn Morris2017-06-051-4/+4
|
* * admin/authors.el (authors-aliases): Addition.Glenn Morris2017-06-021-0/+2
|
* ; Update contributor nameGlenn Morris2017-05-061-1/+1
| | | | ; Ref http://lists.gnu.org/archive/html/emacs-devel/2017-05/msg00114.html
* Merge from gnulibPaul Eggert2017-03-141-1/+1
| | | | | | | | | | | | | | | | | | | | This incorporates: 2017-03-14 snippets: move unadjusted snippet sources to lib 2017-03-14 gnulib-tool: fix typo in comment output 2017-03-14 snippets: work around GNU Make 3.82 VPATH 2017-03-13 gnulib-tool: minor --gnu-make fixups 2017-03-12 gnulib-tool: new option --gnu-make * .gitignore: Remove lib/arg-nonnull.h, lib/c++defs.h, lib/warn-on-use.h. Change exception from build-aux/snippet/_Noreturn.h to lib/_Noreturn.h. * admin/authors.el (authors-renamed-files-regexps): * admin/notes/copyright, make-dist: The snippet files moved from build-aux/snippet to lib. * lib/_Noreturn.h: Rename from build-aux/snippet/_Noreturn.h. * lib/arg-nonnull.h: Rename from build-aux/snippet/arg-nonnull.h. * lib/c++defs.h: Rename from build-aux/snippet/c++defs.h. * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate. * lib/warn-on-use.h: Rename from build-aux/snippet/warn-on-use.h.
* Update copyright year to 2017Paul Eggert2016-12-311-1/+1
| | | | Run admin/update-copyright.
* * admin/authors.el (authors-renamed-files-alist): Addition.Nicolas Petton2016-11-281-1/+1
|
* * admin/authors.el (authors-aliases): Add an entry.Glenn Morris2016-11-231-0/+1
|
* Update ChangeLog files and authors.elNicolas Petton2016-11-211-0/+2
| | | | | | * admin/authors.el (authors-renamed-files-alist): Add entries for obsolete files. * ChangeLog.2: Update.
* Update admin/authors.elEli Zaretskii2016-09-151-0/+2
| | | | | * admin/authors.el (authors-fixed-entries): Add an entry for Bob Weiner.
* * admin/authors.el (authors-valid-file-names): Addition.Nicolas Petton2016-07-241-0/+1
|
* * admin/authors.el: Additions.Nicolas Petton2016-07-241-2/+18
|
* * admin/authors.el (authors-ignored-files, authors-valid-file-names)Glenn Morris2016-06-191-2/+11
| | | | (authors-renamed-files-alist): Additions.
* * admin/authors.el (authors-aliases, authors-fixed-case): Additions.Glenn Morris2016-06-191-1/+13
|
* add entries to authors.elNicolas Petton2016-06-111-0/+2
| | | | * admin/authors.el (authors-renamed-files-alist): Add char-fold files.
* * admin/authors.el (authors): First update the ChangeLog.Glenn Morris2016-05-251-10/+22
| | | | * admin/make-tarball.txt: Related updates.
* * admin/authors.el (authors-ignored-files): Additions.Nicolas Petton2016-04-221-3/+4
|