1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00
emacs/lisp/org
Mattias Engdegård 4acdd7fe58 Fix edge case errors in filename-matching regexps
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.
2020-04-14 12:25:16 +02:00
..
ChangeLog.1 Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-abc.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-asymptote.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-awk.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-C.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-calc.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-clojure.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-comint.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-coq.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-core.el Fix edge case errors in filename-matching regexps 2020-04-14 12:25:16 +02:00
ob-css.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-ditaa.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-dot.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-ebnf.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-emacs-lisp.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-eshell.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-eval.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-exp.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-forth.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-fortran.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-gnuplot.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-groovy.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-haskell.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-hledger.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-io.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-J.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-java.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-js.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-latex.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-ledger.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-lilypond.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-lisp.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-lob.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-lua.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-makefile.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-matlab.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-maxima.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-mscgen.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-ocaml.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-octave.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-org.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-perl.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-picolisp.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-plantuml.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-processing.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-python.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-R.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-ref.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-ruby.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-sass.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-scheme.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-screen.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-sed.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-shell.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-shen.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-sql.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-sqlite.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-stan.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-table.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-tangle.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob-vala.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ob.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-bbdb.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-bibtex.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-docview.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-eshell.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-eww.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-gnus.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-info.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-irc.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-mhe.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-rmail.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol-w3m.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ol.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-agenda.el Move “Fix some broken conditional forms” to master 2020-01-05 11:50:31 -08:00
org-archive.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-attach-git.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-attach.el Correct "different than" to "different from" where appropriate 2020-02-09 14:33:14 +00:00
org-capture.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-clock.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-colview.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-compat.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-crypt.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-ctags.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-datetree.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-duration.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-element.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-entities.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-faces.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-feed.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-footnote.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-goto.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-habit.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-id.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-indent.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-inlinetask.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-install.el
org-keys.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-lint.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-list.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-macro.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-macs.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-mobile.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-mouse.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-num.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-pcomplete.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-plot.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-protocol.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-src.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-table.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-tempo.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-timer.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
org-version.el Update Org to 9.3 2019-12-03 23:27:04 +01:00
org.el Replace add-to-list to lexical variable with push (bug#39373) 2020-02-01 22:27:23 +01:00
ox-ascii.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ox-beamer.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ox-html.el Fix copyright years by hand 2020-01-01 01:01:53 +00:00
ox-icalendar.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ox-latex.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ox-man.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ox-md.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ox-odt.el Move “Fix some broken conditional forms” to master 2020-01-05 11:50:31 -08:00
ox-org.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ox-publish.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ox-texinfo.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00
ox.el Update copyright year to 2020 2020-01-01 00:59:52 +00:00