aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--org-maint.el53
-rw-r--r--orgmode-backports.org2234
2 files changed, 1832 insertions, 455 deletions
diff --git a/org-maint.el b/org-maint.el
index 8364133..2020f3d 100644
--- a/org-maint.el
+++ b/org-maint.el
@@ -1,6 +1,6 @@
;;; org-maint.el --- Helpers for porting Emacs commits to Org -*- lexical-binding: t; -*-
-;; Copyright (C) 2020 Kyle Meyer
+;; Copyright (C) 2020-2022 Kyle Meyer
;; Author: Kyle Meyer <kyle@kyleam.com>
@@ -21,8 +21,8 @@
(require 'org)
-(defvar org-maint-emacs-dir "~/src/emacs/emacs/")
-(defvar org-maint-org-dir "~/src/emacs/org-mode-devel/")
+(defvar org-maint-emacs-dir "~/src/savannah/emacs/")
+(defvar org-maint-org-dir "~/src/savannah/org-mode--ports/")
(defun org-maint-apply-emacs-commit (commit &optional apply)
"Apply COMMIT from `org-maint-emacs-dir' to `org-maint-org-dir'.
@@ -64,31 +64,38 @@ If APPLY is non-nil, use 'git apply' instead of 'git am'."
(user-error "Next revision item not found"))))
(defun org-maint-check-for-new ()
- "Check for new commits to backport.
-The last commit found is assumed to be the return value of
-`org-maint-rev-from-next-item', and Emacs ref name that should be
-checked is taken from the Org \"ref\" property."
+ "Check for new commits in the Emacs repository to port.
+
+Determine \"new\" commits by looking for commits that 1) touch
+Org files, 2) are contained in the Emacs reference specified by
+the Org \"ref\" property, and 3) are _not_ included in the
+revision returned by `org-maint-rev-from-next-item'.
+
+If a reference is specified by the Org property \"exclude-ref\",
+don't consider commits contained in this reference new."
(interactive)
- (let ((ref (or (org-entry-get (point) "ref")
- (user-error "No reference found")))
- (last-rev (org-maint-rev-from-next-item))
+ (let ((revs (nconc
+ (list (or (org-entry-get (point) "ref")
+ (user-error "No reference found"))
+ (concat "^" (org-maint-rev-from-next-item)))
+ (and-let* ((ex-ref (org-entry-get (point) "exclude-ref")))
+ (list (concat "^" ex-ref)))))
(default-directory org-maint-emacs-dir))
(with-current-buffer (get-buffer-create "*org-maint-new-entries*")
(goto-char (point-min))
(erase-buffer)
- (insert (format ";; %s..%s\n\n" last-rev ref))
- (call-process "git" nil t nil
- "log" "--oneline"
- "--format=- [ ] %H%n%n %s%n %an%n %cd%n"
- (concat "^" last-rev) ref
- "--"
- "doc/misc/org.texi"
- "etc/ORG-NEWS"
- "etc/org"
- "etc/refcards/orgcard.tex"
- "etc/schema/od-manifest-schema-v1.2-os.rnc"
- "etc/schema/od-schema-v1.2-os.rnc"
- "lisp/org")
+ (insert (format ";; revisions: %S\n\n" revs))
+ (apply #'call-process "git" nil t nil
+ "log" "--oneline" "--format=- [ ] %H%n%n %s%n %an%n %cd%n"
+ (nconc revs
+ (list "--"
+ "doc/misc/org.org"
+ "doc/misc/org-setup.org"
+ "etc/ORG-NEWS"
+ "etc/org"
+ "etc/refcards/orgcard.tex"
+ "etc/schema/"
+ "lisp/org")))
(display-buffer (current-buffer)))))
(provide 'org-maint)
diff --git a/orgmode-backports.org b/orgmode-backports.org
index 6b9d299..eb053e0 100644
--- a/orgmode-backports.org
+++ b/orgmode-backports.org
@@ -54,15 +54,1802 @@ After resolving the conflict, run
NOTE: Look for "ONSYNC" for changes that should be considered when
syncing, but that don't seem appropriate for Org backport.
-** master branch [83/83]
+** master branch [42/74]
:PROPERTIES:
-:ref: origin/master
+:ref: origin/master
+:exclude-ref: origin/emacs-29
:END:
-Holding on applying commits here to Org's maint in case any more
-Org->Emacs fixup syncs are needed before 27.2 release. These are in
-km/from-emacs-master branch and will be periodically merged with Org's
-master.
+- [ ] 6d1c1fca0aa7c5a1ff0254af3f89a34d5309ea0d
+
+ ; Simplify (with-current-buffer (get-buffer ...) ...)
+ Tim Landscheidt
+ Thu Mar 14 12:40:26 2024 +0200
+
+- [ ] 6dacb60bb135dbb002c2ce1c70f70430c5d1bbff
+
+ ; Fix last major-mode-remap-defaults change.
+ Basil L. Contovounesios
+ Mon Mar 4 07:19:22 2024 +0100
+
+- [ ] 2b5d43081a30f816dd38a16c7b5bfbad712a779b
+
+ (major-mode-remap(-defaults)): New var and function (bug#69191)
+ Stefan Monnier
+ Sun Mar 3 23:58:18 2024 -0500
+
+- [ ] 445f376e4e613ebee94d2844926269bfa8793858
+
+ Revert "ox-texinfo:: Require only TEXINFO_DIR_CATEGORY"
+ Stefan Monnier
+ Sun Mar 3 22:09:24 2024 -0500
+
+- [ ] 1a37fe3a66930bb8151a29c722dbe3bebc20d033
+
+ Revert "Set org-macro-templates more lazily"
+ Stefan Monnier
+ Sun Mar 3 22:09:19 2024 -0500
+
+- [ ] 99483e214fdafa76e8001c7009dff13a76c33f32
+
+ Set org-macro-templates more lazily
+ Stefan Monnier
+ Sun Mar 3 16:57:56 2024 -0500
+
+- [ ] 5254c582efb3e7171e955dde653e7530d2d3ffef
+
+ ox-texinfo:: Require only TEXINFO_DIR_CATEGORY
+ Stefan Monnier
+ Sun Mar 3 16:57:56 2024 -0500
+
+- [ ] 862dfef88d8e62d12bac3ca2e44e035a2ff5b298
+
+ Pacify more docstring control char warnings
+ Robert Pluim
+ Thu Feb 29 09:31:41 2024 +0100
+
+- [X] 229b3edb072de490f458cf986bf34bc1ffc87837
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Sat Feb 24 06:35:16 2024 -0500
+
+- [ ] 9364c28959a5b00e8ffd5d0d283ff0c0042f1bb0
+
+ ; Fix typos in symbol names
+ Stefan Kangas
+ Sun Jan 21 15:28:06 2024 +0100
+
+- [X] 1b31a784bfb56c3c5d138d906601428ebd3e737b
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Sat Jan 20 06:25:59 2024 -0500
+
+- [X] ecf08f0621c25ad1dfadd96399e204c389ab1695
+
+ Merge from savannah/emacs-29
+ Po Lu
+ Tue Jan 2 10:28:14 2024 +0800
+
+- [X] 083e90dd80a16c9c573f92e0f11603267d15d82b
+
+ Merge from origin/emacs-29
+ Po Lu
+ Tue Jan 2 10:19:48 2024 +0800
+
+- [ ] 0f3be9596fb3cf2f5e8f10fe2b3ef59546de98bb
+
+ ; Prefer finder keyword "text" to deprecated keyword "wp"
+ Stefan Kangas
+ Sat Dec 30 18:14:40 2023 +0100
+
+- [ ] 40dafa9af0ae3b1826409ebed80cb65f56591ffb
+
+ * lisp/org/org-src.el (org-src-font-lock-fontify-block): Fix point-min /= 1
+ Stefan Monnier
+ Wed Dec 20 17:50:09 2023 -0500
+
+- [ ] a1d3862c6240805bde997bb57f60fceb0fbccb85
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Sat Dec 16 09:17:51 2023 -0500
+
+ Resolves ox-beamer.el conflict with 2b311a47dd0 (Assume that
+ font-lock is preloaded, 2023-08-25).
+
+- [X] 0da2a4650cdac008ac9a50ec8a7729093632a6a8
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Sun Dec 10 10:35:54 2023 -0500
+
+- [X] 486094126ba77e45c50acb87f5ad3e4147608446
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Sat Dec 9 07:25:21 2023 -0500
+
+- [X] c9d7740574758d47c8864cbada5fd2a2b2ee8911
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Sat Nov 11 05:31:52 2023 -0500
+
+- [ ] 67977ae5974e54d34034aa7990cf22dd162c179b
+
+ Eliminate some nested repetitions in regexps
+ Mattias Engdegård
+ Sun Oct 29 17:40:36 2023 +0100
+
+- [ ] 2e19e11638339d0ae97958547bd87b4b15c2ee52
+
+ Don't use obsolete `sleep-for` argument
+ Stefan Kangas
+ Sat Oct 21 12:26:36 2023 +0200
+
+- [X] bbccef3ceb63bc17ab9d2aee5326df5d70ce4ab3
+
+ Merge from origin/emacs-29
+ Michael Albinus
+ Fri Oct 13 16:18:06 2023 +0200
+
+- [ ] 6b2219cd2744c711580cc7226554e69c8cec8247
+
+ ; Add several "duplicate value in `cond`" FIXMEs
+ Stefan Kangas
+ Sun Oct 1 19:00:26 2023 +0200
+
+- [X] cc8726d2c8bc0e3b67cb8b97e388f9339bea0f96
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Sat Sep 23 09:32:57 2023 -0400
+
+- [ ] e0070fc574a8621b2fbb1aaca678b974a3dc5fd5
+
+ Improve org-babel-execute:eshell docstring
+ Stefan Kangas
+ Sun Sep 17 16:57:25 2023 +0200
+
+- [ ] 1e270e580d3bb9ca1b3766a296611f76ec13f6f1
+
+ ; Grammar fixes ("allow to" et al)
+ Stefan Kangas
+ Sun Sep 17 16:49:21 2023 +0200
+
+- [ ] ff87aecf8554042b043467a7aaff1a758df0bbae
+
+ Address "Useless clause following default cond clause" warnings
+ Stefan Monnier
+ Tue Sep 12 12:59:03 2023 -0400
+
+- [ ] c0400151f8880862d460f0e47be287237a6182ad
+
+ Correct many instances of ``allows to''
+ Po Lu
+ Sun Sep 10 09:33:50 2023 +0800
+
+- [X] 0273914921833d2e2b6548cf69297c24a50cff74
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Sat Sep 9 04:32:45 2023 -0400
+
+- [X] ec3ea8c036a4dd4d7b331081320502c6c8ff1961
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Sat Sep 2 04:28:17 2023 -0400
+
+- [ ] 64269125156836060eb95b28b01b877c74e800d8
+
+ ; Delete redundant defvars; font-lock is preloaded
+ Stefan Kangas
+ Fri Aug 25 23:54:51 2023 +0200
+
+- [ ] 2b311a47dd0cde82fb9d32c303f13700cae4f0b3
+
+ Assume that font-lock is preloaded
+ Stefan Kangas
+ Fri Aug 25 20:35:38 2023 +0200
+
+- [ ] 73b24a41412eb97a9451a8310da0ebab379f7534
+
+ Make org-mouse compatible with touch screen event emulation
+ Po Lu
+ Wed Aug 23 09:56:35 2023 +0800
+
+- [ ] 4f714dc08137d36d0d1e886814008f2abe5712c0
+
+ Support desktop notifications on Android
+ Po Lu
+ Sun Aug 20 20:25:53 2023 +0800
+
+- [ ] 5856ea5e4e897f4cb5cd1c3c28d14b335fe5cf54
+
+ Introduce support for Desktop Notifications on Haiku
+ Po Lu
+ Thu Aug 17 08:34:32 2023 +0000
+
+- [ ] 1ad318cf2ae22d945f8bfcd61981d619467a36da
+
+ ob-tangle.el: fix unintended range in regexp
+ Mattias Engdegård
+ Wed Aug 16 16:55:38 2023 +0200
+
+- [X] b9b4d8689fa78a5696a5e2d96a08a761fbf3cc82
+
+ Merge from origin/emacs-29
+ Michael Albinus
+ Mon Aug 14 09:45:07 2023 +0200
+
+- [X] a5bbc51f474568ad2e4511a08614ac8ec4ca2481
+
+ This is a stand-in for merges from master into feature/android,
+ starting with fd074f3133a3 and ending with the commit above.
+
+ Based on diff of c75c79971975 (merge of feature/android to master)
+ and a5bbc51f4745, only 9082b4e6ee27 (below) touched Org files.
+
+- [ ] 9082b4e6ee27b995cbb61668cb437d7b91c7f5f8
+
+ Make binaries distributed with Emacs work on Android
+ Po Lu
+ Tue Jan 24 21:37:22 2023 +0800
+
+- [ ] c75c7997197502189023c9f47140474fa7fd719e
+
+ ; Fix http/https thinko in org manual
+ Stefan Kangas
+ Fri Aug 4 09:57:27 2023 +0200
+
+- [ ] 0910230be6ee858d8d8849a1fc9559bfd163dc38
+
+ ; Prefer HTTPS to HTTP in more links
+ Stefan Kangas
+ Wed Aug 2 23:32:28 2023 +0200
+
+ Related emacs-devel discussion:
+ https://yhetil.org/emacs-devel/838rarw94m.fsf@gnu.org
+
+- [X] 30bcd71476127fa20da37372501637b07cd53d6c
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Mon Jul 31 11:11:23 2023 -0400
+
+- [ ] 4c01b0deee13808605b05a89e927e67eaf67edbd
+
+ Fix orgtbl-to-table.el function to include last cell border
+ Jakub Ječmínek
+ Thu Jun 22 17:38:56 2023 +0200
+
+- [ ] ace9f6775580459c35254607d866f3bb22a8c45b
+
+ Avoid using rx `any` for `not-newline`
+ Mattias Engdegård
+ Tue May 30 17:44:53 2023 +0200
+
+- [ ] af4791b5706f494d73fd00c391ff867fb2c5a06d
+
+ Fix apparently wrong `delete` and `delq` value discards (bug#61730)
+ Mattias Engdegård
+ Wed May 24 23:01:10 2023 +0200
+
+- [X] f518543aa4ed00f91842dc5a58cc90a320e3e2e5
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Thu May 18 07:49:49 2023 -0400
+
+- [X] 670174a6d5f7856df523505f8fb8fc90388de47f
+
+ Eliminate some mutation of program constants
+ Mattias Engdegård
+ Wed May 17 11:00:25 2023 +0200
+
+ Ihor ported to bugfix with da1bc002f (Backport Emacs commit
+ 670174a6d5f, 2023-07-30).
+
+- [X] daf602a5c8ec9e5d94f5e1e412182760a02c2505
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Tue May 2 08:50:09 2023 -0400
+
+- [X] 095ec506d03b76155b399fd7b23554279b2cfee0
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Tue Apr 25 09:57:23 2023 -0400
+
+- [X] 62e4eb8fcf71a852117b372809bd4a7953f9b679
+
+ Fix build when Org's version changes
+ Eli Zaretskii
+ Mon Apr 24 14:16:05 2023 +0300
+
+ Ihor ported to bugfix with 8eb209984 (Backport commit 62e4eb8fcf7
+ from Emacs, 2023-04-24).
+
+- [X] f1ce49d148b334a8fb5302c4dd596aceffbb6b57
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Fri Apr 21 07:29:14 2023 -0400
+
+- [ ] 54d40577c4bb64d25db030b7d11ab553364e375d
+
+ (org-table-make-reference): Fix compiler warning
+ Stefan Monnier
+ Mon Apr 10 21:33:56 2023 -0400
+
+- [X] 4f0849a9e6d29e25d23e061bd81bacce9468856d
+
+ Remove unused values in effect context
+ Mattias Engdegård
+ Sun Apr 9 16:45:40 2023 +0200
+
+ This was independently fixed by bugfix's 52dc48050 (Handle compiler
+ warnings from Emacs master, 2023-04-27), but in slightly different
+ way. Ported and merged to bugfix to avoid 'emacs-29 -> master'
+ conflict in the emacs.git: 2ab083dd1 (Merge branch
+ 'km/from-emacs-master' into bugfix, 2023-04-30)
+
+- [X] 2d1a96e878ef8dd9a27fb360aa6c85b1dc9b856e
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Thu Apr 6 14:38:20 2023 -0400
+
+- [X] 42fba8f36b19536964d6deb6a34f3fd1c02b43dd
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Mon Mar 20 06:30:40 2023 +0100
+
+- [X] aad617870b45aa2e68159150c2354db6f7a8cf09
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Mon Mar 6 06:30:13 2023 +0100
+
+- [X] 839a86b02ba0043f5c8d0ac1f33c9c7b55314d00
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Tue Feb 21 10:58:00 2023 +0100
+
+- [X] 609319da870eac75cf4715de8abfaac9233d98f9
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Mon Feb 13 06:30:12 2023 +0100
+
+- [X] 207a0d9408cb97b9ae78469e2487e3075ade03f8
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Mon Jan 30 07:19:43 2023 +0100
+
+- [X] cd42244fca8785fb57c25c731afcf3227c2ad14b
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Sat Jan 28 06:30:25 2023 +0100
+
+- [X] 114912254262ce412f30e43e3798c750a752b741
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Mon Jan 23 06:30:18 2023 +0100
+
+- [X] 60240f54e5fed16a0522fb766ffef073db596f1f
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Tue Jan 10 09:51:57 2023 +0100
+
+- [X] c209802f7b3721a1b95113290934a23fee88f678
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Mon Jan 2 12:06:37 2023 +0100
+
+- [X] 3c55fbd4adfcf5d0d0ee8fdbbd6f012fa951f0b2
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Sun Jan 1 05:47:47 2023 -0500
+
+- [X] 419ca81809c2eda9c9f102b7da820a6eb9685cc8
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Mon Dec 26 06:30:21 2022 +0100
+
+- [X] a5d39e11443fa30c8e8bc58254a1a59550dcd99e
+
+ ; Fix typos
+ Stefan Kangas
+ Fri Dec 23 18:21:10 2022 +0100
+
+ Covered by cherry pick to emacs-29 (2608e5edcca).
+
+- [X] 6c540e38f4d9528f8e6dfdc44d1b95840efab456
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Mon Dec 19 04:42:19 2022 +0100
+
+- [X] 03892d4f7c1253bc1affeedd227eb0a1520de90e
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Fri Dec 16 08:45:06 2022 +0100
+
+- [X] 2f0bd8167c015bab729b998daa1e77d24d54ced4
+
+ Merge from origin/emacs-29
+ Po Lu
+ Fri Dec 9 09:31:37 2022 +0800
+
+- [X] 6c06379c030908a8106bc0f0290d472f67aa503c
+
+ Merge from origin/emacs-29
+ Eli Zaretskii
+ Thu Dec 8 12:52:37 2022 -0500
+
+- [X] 7d6f9753ade57821f5c409bcdeea700be8e53a74
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Thu Dec 1 16:54:53 2022 +0100
+
+- [X] f7c3abb8d2d3a3d26a1198fed8157111bed41d6c
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Thu Dec 1 14:38:29 2022 +0100
+
+- [X] 65468109a53c605df991f72521de5ed3b63ba6b8
+
+ Merge from origin/emacs-29
+ Po Lu
+ Thu Dec 1 14:24:43 2022 +0800
+
+- [X] f3ef75107ba91f1bc5e6f1e11bee5fabab2458e1
+
+ Merge from origin/emacs-29
+ Stefan Kangas
+ Wed Nov 30 16:10:39 2022 +0100
+
+** emacs-29 [149/149]
+:PROPERTIES:
+:ref: origin/emacs-29
+:END:
+
+- [X] 7a5d7be52c5f0690ee47f30bfad973827261abf2
+
+ org--confirm-resource-safe: Fix prompt when prompting in non-file Org buffers
+ Ihor Radchenko
+ Sun Mar 24 08:41:26 2024 -0400
+
+ Covered by Org's 01f10031b169fb88606f136cf64555ce75b0666c
+
+- [X] 2bc865ace050ff118db43f01457f95f95112b877
+
+ org-file-contents: Consider all remote files unsafe
+ Ihor Radchenko
+ Sun Mar 24 08:41:10 2024 -0400
+
+ Covered by Org's 4255d5dcc0657915f90e4fba7e0a5514cced514d
+
+- [X] 6f9ea396f49cbe38c2173e0a72ba6af3e03b271c
+
+ org-latex-preview: Add protection when `untrusted-content' is non-nil
+ Ihor Radchenko
+ Sun Mar 24 08:40:48 2024 -0400
+
+ Cover by Org's 03635a33557752a2849364974b3944ad9e5d4b96
+
+- [X] befa9fcaae29a6c9a283ba371c3c5234c7f644eb
+
+ org-macro--set-templates: Prevent code evaluation
+ Ihor Radchenko
+ Sun Mar 24 08:38:48 2024 -0400
+
+ Covered by Org's 003ddacf1c8d869b1858181c29ea21b731a8d8d9
+
+- [X] e56f0ef51bfdd0e03e817670754bc813fb3702a2
+
+ org: Fix security prompt for downloading remote resource
+ Ihor Radchenko
+ Sat Feb 17 19:31:28 2024 +0200
+
+ Covered by Org's 56748ea4e28fc78935b29f4446e2b4cbc7376ed1
+
+- [X] 65ba3274652a4dac37f41f872330e391cd511ae1
+
+ Revert "Update to Org 9.6.19"
+ Eli Zaretskii
+ Sat Feb 17 18:53:05 2024 +0200
+
+- [X] 07a392f445eb21c5e4681027eee9d981300a4309
+
+ Update to Org 9.6.19
+ Kyle Meyer
+ Sat Feb 17 10:17:41 2024 -0500
+
+- [X] 725a3f32f8ba78ac5fffcd03be5b82cbc2c1b275
+
+ ; Fix typos in symbol names
+ Stefan Kangas
+ Sun Jan 14 15:16:54 2024 +0100
+
+- [X] 6653ee66ca5ebd42322613a09d4c0d2e35af924b
+
+ Improve two docstrings in ox-latex
+ Stefan Kangas
+ Sun Jan 14 14:52:17 2024 +0100
+
+- [X] 8e1c56ae46754dd7baedff49a464f078f0e9912d
+
+ ; Add 2024 to copyright years
+ Po Lu
+ Tue Jan 2 09:47:10 2024 +0800
+
+- [X] 7591acfe38e3f5f3fb9b89e2b1ed08723b0298e6
+
+ Update to Org 9.6.15
+ Kyle Meyer
+ Mon Jan 1 12:47:27 2024 -0500
+
+- [X] 55555a6a0d1d76468f8327972b3cb067b9e35f24
+
+ org-protocol: Minor copy-edits to Commentary
+ Stefan Kangas
+ Sat Dec 30 17:53:53 2023 +0100
+
+- [X] 23c06c7c3080d83ae0eee70c70fb50587339a63e
+
+ Update to Org 9.6.13
+ Kyle Meyer
+ Sun Dec 10 11:16:58 2023 -0500
+
+- [X] 020aff95fa3e503387a7f9b240e0f7e9f2f054ae
+
+ ; Fix typos in ChangeLog files
+ Stefan Kangas
+ Sun Dec 10 12:38:19 2023 +0100
+
+ changelog-only
+
+- [X] 5f923ff1a6a8a9ff6f06dc49c8e0e2ceee111567
+
+ ; Fix typos
+ Stefan Kangas
+ Sun Dec 3 23:31:30 2023 +0100
+
+- [X] 5bdc61bc0efc704c85b78f36f5f7e5f6c42bb877
+
+ Update to Org 9.6.11
+ Kyle Meyer
+ Sun Nov 5 21:46:42 2023 -0500
+
+- [X] eedd9db6190a7f69403aefe8098a554ef2b51371
+
+ Update to Org 9.6.10
+ Kyle Meyer
+ Mon Oct 9 23:47:52 2023 -0400
+
+- [X] 85f49a9bc8b9bf699a692787820efc0f8aa67545
+
+ Update to Org 9.6.9
+ Kyle Meyer
+ Sun Sep 17 22:11:36 2023 -0400
+
+- [X] 3550f44c17c31f829d7d51b2928a83ae381a8558
+
+ ; Fix typos
+ Stefan Kangas
+ Sat Sep 2 18:57:11 2023 +0200
+
+ changelog-only
+
+- [X] 648a5e33e80417855b908693e36cba56cd2c796c
+
+ Update to Org 9.6.8-3-g21171d
+ Kyle Meyer
+ Sun Aug 27 22:38:34 2023 -0400
+
+- [X] 3eff53b4564ba7633807d67708dc9337765db259
+
+ Update to Org 9.6.7-13-g99cc96
+ Kyle Meyer
+ Sun Aug 13 22:11:45 2023 -0400
+
+- [X] 80c9f491fc8dc068421f32cd15e0b387a6d1ee11
+
+ Update to Org 9.6.7-5-gd1d0c3
+ Kyle Meyer
+ Sun Jul 30 16:52:11 2023 -0400
+
+- [X] 95a724abaaca40e3fbad69593cb9fab39a249742
+
+ Update to Org 9.6.6
+ Kyle Meyer
+ Sun May 14 21:04:37 2023 -0400
+
+- [X] 0e52beeacead956cdaa7921e911afc2fd29aea61
+
+ Update to Org 9.6.5-3-g2993f4
+ Kyle Meyer
+ Sun Apr 30 19:36:21 2023 -0400
+
+- [X] 2bcf11d0efecd18a1be8bcf0ac1a1dadb14d971a
+
+ * lisp/org/org-macs.el (org--inhibit-version-check): Fix docstring
+ Stefan Monnier
+ Sun Apr 30 09:41:13 2023 -0400
+
+- [X] d80f959beded280ed61623ec36ea2a9ac07cc747
+
+ Update to Org 9.6.4-9-g8eb209
+ Kyle Meyer
+ Mon Apr 24 19:47:12 2023 -0400
+
+- [X] 596b780ab71d6495f866de35c234fe65a8a7914a
+
+ Update to Org 9.6.4-2-g0f6ae7
+ Kyle Meyer
+ Sun Apr 16 21:13:08 2023 -0400
+
+- [X] 479626dbac97d4415ae861c3f66fc33c5fd6fa14
+
+ Update to Org 9.6.3-2-gf2949d
+ Kyle Meyer
+ Sun Apr 2 23:03:32 2023 -0400
+
+- [X] a8c23677d3939b8af1bcddb63244fe7b5bb384a4
+
+ Update to Org 9.6.2
+ Kyle Meyer
+ Sun Mar 26 17:01:30 2023 -0400
+
+- [X] 829e5dfabea9fd22b1bb04f5f388c0c52b984606
+
+ Update to Org 9.6.1-48-g92471e
+ Kyle Meyer
+ Sat Mar 18 21:41:22 2023 -0400
+
+- [X] b1b3af5b90ba6f5416dfaf60e33729b32ca2f195
+
+ Update to Org 9.6.1-40-g3d817c
+ Kyle Meyer
+ Sun Mar 5 17:34:13 2023 -0500
+
+- [X] fc4bfa76db958f48daed7c5812921b1653c31175
+
+ Update to Org 9.6.1-34-geea8da
+ Kyle Meyer
+ Mon Feb 20 00:41:31 2023 -0500
+
+- [X] fe2ea5ddd8da91c8a0f3064f1447fc4fbbda68ab
+
+ Update to Org 9.6.1-31-gaf1bb1
+ Kyle Meyer
+ Sun Feb 12 15:43:07 2023 -0500
+
+- [X] 8360e12f0ea3a3ccf0305adab3c7ea7e38af36c1
+
+ Update to Org 9.6.1-23-gc45a05
+ Kyle Meyer
+ Sun Jan 29 21:42:17 2023 -0500
+
+- [X] 752c526585fe3f10e064b9ddaca6ae6cdeaa0004
+
+ ; Fix typos
+ Stefan Kangas
+ Fri Jan 27 11:33:35 2023 +0100
+
+ changelog-only
+
+- [X] 647cc9c65e7c2b691267bde7333eff6cc8d9132a
+
+ Update to Org 9.6.1-16-ge37e9b
+ Kyle Meyer
+ Sun Jan 22 21:53:39 2023 -0500
+
+- [X] 34793337783489297313c67d4a56682514877597
+
+ * lisp/org/ob-ruby.el: Fix outdated comments.
+ Dmitry Gutov
+ Fri Jan 20 23:32:21 2023 +0200
+
+- [X] 920a7d38e96134289393b7bfcc3a7b88be73925b
+
+ ; Fix typos
+ Stefan Kangas
+ Sun Jan 15 02:14:19 2023 +0100
+
+ Related emacs-devel discussion:
+ https://yhetil.org/emacs-devel/83a62k72lx.fsf@gnu.org/
+
+- [X] f4f30ff4c44dcfdf780f1981aa541af713f2805f
+
+ Update to Org 9.6.1
+ Kyle Meyer
+ Wed Jan 11 21:15:37 2023 -0500
+
+- [X] e04b3d41bb41ccca3d403345b12b9a614213d488
+
+ Update to Org 9.6-90-ga6523f
+ Kyle Meyer
+ Sat Jan 7 23:50:54 2023 -0500
+
+- [X] 2569ede9c496bb060e0b88428cb541088aaba1f9
+
+ Update to Org 9.6-81-g563a43
+ Kyle Meyer
+ Sun Jan 1 22:24:28 2023 -0500
+
+- [X] cae528457cb862dc886a34240c9d4c73035b6659
+
+ ; Add 2023 to copyright years.
+ Eli Zaretskii
+ Sun Jan 1 05:31:12 2023 -0500
+
+- [X] 9292f595a71870eec1ffdfd187b859cc990c2f0b
+
+ ; Fix typos
+ Stefan Kangas
+ Sat Dec 31 12:43:32 2022 +0100
+
+- [X] 2608e5edcca5094b61b4ccebcef160cc2bfd7f83
+
+ ; Fix typos
+ Stefan Kangas
+ Mon Dec 26 10:42:02 2022 +0100
+
+- [X] b1e68a33d89de34b432d6f39464f31a565604f3f
+
+ Update to Org 9.6-61-g63e073f
+ Kyle Meyer
+ Sun Dec 25 11:36:36 2022 -0500
+
+- [X] 3e02029642c2c4c329c95d1a1381ab4a83a606b5
+
+ Update to Org 9.6-49-g47d129
+ Kyle Meyer
+ Sat Dec 17 17:28:27 2022 -0500
+
+- [X] 033071692c7cd1cd550d25170d4b3168668567ac
+
+ ; Fix typos
+ Stefan Kangas
+ Fri Dec 16 08:29:28 2022 +0100
+
+ changelog-only
+
+- [X] a15cd55044c6bb4d4e9f9aec23b8b5b9cbcb38ac
+
+ ; Don't quote nil in comments
+ Stefan Kangas
+ Thu Dec 15 02:35:00 2022 +0100
+
+- [X] 01154166057e7cf289318a8cfa4d43716f26ca20
+
+ Update to Org 9.6-31-g954a95
+ Kyle Meyer
+ Sat Dec 10 16:59:46 2022 -0500
+
+- [X] 26267040549da6e7f8223bea3b5344d0d5bef527
+
+ ; Normalize GPLv3 license statements in new files
+ Stefan Kangas
+ Fri Dec 9 00:13:00 2022 +0100
+
+- [X] 8fb2afe051168b2eac2bba0ee102039d0af90a05
+
+ ; Fix typos
+ Stefan Kangas
+ Thu Dec 8 07:17:47 2022 +0100
+
+- [X] 70ecdebc92c879af90f2d25a2b751d1cc4f3f80d
+
+ ; Fix typos (don't abbreviate "with" or "without")
+ Stefan Kangas
+ Thu Dec 1 16:36:09 2022 +0100
+
+ changelog-only
+
+- [X] 8b3baadf671b7b3d5058808c4655eca8bd46015e
+
+ Fix compilation of Org 9.6 on MS-Windows
+ Eli Zaretskii
+ Thu Dec 1 14:40:47 2022 +0200
+
+- [X] 4b2f5425d7af1a6f992ad8ce0a4452a2e778815a
+
+ Fix types in various defcustom declarations
+ Mattias Engdegård
+ Thu Dec 1 13:03:19 2022 +0100
+
+- [X] 8617edfffd07eb80561b4de6a37c5b0b5f442e07
+
+ ; Fix typos
+ Stefan Kangas
+ Wed Nov 30 16:59:41 2022 +0100
+
+- [X] c3466099c5f44c52ec73a1bbbb2b42de6f29ac7f
+
+ Org regexp style fixes
+ Mattias Engdegård
+ Wed Nov 30 13:23:38 2022 +0100
+
+- [X] 0625651e8a61c9effc31ff771f15885a3a37c6e6
+
+ Update to Org 9.6-3-ga4d38e
+ Kyle Meyer
+ Tue Nov 29 23:05:53 2022 -0500
+
+- [X] beaa2e49530b8149d2c22cb5fa15b8d48f7937b6
+
+ ; Fix typos (misspelled symbols)
+ Stefan Kangas
+ Mon Nov 21 15:20:11 2022 +0100
+
+- [X] 16318bfb518aa7bc06e502e6fad7e53ec91067f9
+
+ ; Fix typos
+ Stefan Kangas
+ Sun Nov 20 12:59:39 2022 +0100
+
+- [X] ba485eb949ddec53b1d7b5d78f3fcfbe2be60d7d
+
+ ; Fix typos
+ Stefan Kangas
+ Fri Nov 18 16:02:19 2022 +0100
+
+- [X] 93036209fae87dc620b27b2ce2e0146e6252113c
+
+ ; Fix typos (duplicate words)
+ Stefan Kangas
+ Thu Nov 17 09:34:24 2022 +0100
+
+- [X] 623db40dd1cd21623c5cecdc0abbf3ce885f92b1
+
+ ; * lisp/*.el: Fix typos in docstrings
+ Juanma Barranquero
+ Thu Nov 17 08:48:02 2022 +0100
+
+- [X] 6f48b46b03cd58a541684c57e42eb4679794f0fd
+
+ ; Fix typos
+ Stefan Kangas
+ Fri Nov 11 15:52:37 2022 +0100
+
+ changelog only
+
+- [X] 0f5352377539bc2587b9bfd068de0f4b3bf8b248
+
+ Remove redundant library installation instructions
+ Stefan Kangas
+ Fri Nov 11 04:29:29 2022 +0100
+
+- [X] db2ed9f333879e5ac283fb48c8b06ed4022f0af9
+
+ ; Fix several symbol name typos
+ Stefan Kangas
+ Wed Oct 26 23:04:23 2022 +0200
+
+- [X] 3187225416c66061b67e89092addc15cad2202b9
+
+ ; Prefer HTTPS to HTTP in many URLs
+ Stefan Kangas
+ Sat Oct 15 13:06:45 2022 +0200
+
+- [X] a95062e036d9d5fc45d9a3ba1c10b0bd9b587399
+
+ Delete broken link to Network Theory Ltd.
+ Stefan Kangas
+ Sat Oct 15 13:06:45 2022 +0200
+
+- [X] f3769bc32a3d32377a83b33d416205f80814e422
+
+ org.el: Improve bindings of `inhibit-*` vars
+ Stefan Monnier
+ Fri Oct 7 12:29:56 2022 -0400
+
+- [X] fee9deff5309cfc5f952181cb2cae1a344b4cc45
+
+ Revert "Decrease use of the word "Emacsen" in docs"
+ Stefan Kangas
+ Sat Oct 1 22:34:47 2022 +0200
+
+- [X] 55f46cc77cb9d72fbabadb63d8aeab45c5e005e2
+
+ Decrease use of the word "Emacsen" in docs
+ Stefan Kangas
+ Sat Oct 1 17:16:03 2022 +0200
+
+ Not applied. Reverted in next commit.
+
+- [X] 8dacd8cd914fdbe0f6f17ca57915611d48e9124d
+
+ Add a new command vc-pull-and-push
+ Lars Ingebrigtsen
+ Sat Sep 24 15:19:03 2022 +0200
+
+- [X] 9b14e312f409216dab647f839724d5df029e8195
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Wed Sep 21 10:25:06 2022 +0200
+
+- [X] 6e4f6e97bf13f096f6e1a300c67b3489e8000a0f
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Fri Sep 16 16:27:37 2022 +0200
+
+- [X] 5c8b76fc873676457810817958c119542ffe16f6
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Mon Sep 5 06:30:32 2022 +0200
+
+- [X] b7e867b841f47dcff3aeaef9b5608a237386ce70
+
+ Make point-at-eol and point-at-bol obsolete
+ Stefan Kangas
+ Tue Aug 23 04:54:57 2022 +0200
+
+- [X] 06d7161476255c77defa119fffa842b7abaa0dcb
+
+ Fix some no-X build warnings
+ Lars Ingebrigtsen
+ Mon Aug 22 19:22:33 2022 +0200
+
+- [X] 0c410206aa91b9bc9a0922d63ec34de765eb86a6
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Mon Aug 22 06:30:29 2022 +0200
+
+- [X] 48aacbf292fbe8d4be7761f83bf87de93497df27
+
+ Make many seldom-used generalized variables obsolete
+ Lars Ingebrigtsen
+ Sun Aug 21 22:12:43 2022 +0200
+
+- [X] 57259773b4f0b992e38843859a8b93d82317ded3
+
+ ; * lisp/org/org.el: Delete unnecessary declarations.
+ Stefan Kangas
+ Sun Aug 14 23:46:33 2022 +0200
+
+- [X] 1137219c97dda512a309ce4bfad5abde0d2be206
+
+ Make compat alias image-refresh obsolete
+ Stefan Kangas
+ Tue Aug 9 14:04:39 2022 +0200
+
+- [X] b335e1a0469105bb55b9741ae3106dc0a6023ce2
+
+ * lisp/org/org.el: Fix load of compiled or compressed org-loaddefs
+ Peder O. Klingenberg
+ Thu Aug 4 20:27:56 2022 +0200
+
+- [X] 4d64c39fad481f2dc125aa4d207ab191bf697529
+
+ ; * lisp/org/ob-lilypond.el: Add FIXME.
+ Stefan Kangas
+ Thu Aug 4 14:48:44 2022 +0200
+
+- [X] 4c1bc8315d8e677e4eeb2760d7a5ab7b7553359b
+
+ Fix up some prefix registration problems in doc strings
+ Lars Ingebrigtsen
+ Thu Aug 4 11:03:10 2022 +0200
+
+- [X] 0a6e2b3bfce8b5ae9e713e0668cb3cf5609073e2
+
+ Fix quoting of #' in some doc strings
+ Lars Ingebrigtsen
+ Wed Aug 3 13:14:32 2022 +0200
+
+- [X] 2682ea1b3a9524eb54efac41b3221b514374c232
+
+ Fix org.el byte-compile warning in org-loaddefs.el
+ Lars Ingebrigtsen
+ Sun Jul 31 11:43:48 2022 +0200
+
+- [X] 22a5f022344af8c0c0a9eddc2ac5ad36392d0cef
+
+ Doc fixes: don't mention EFS
+ Stefan Kangas
+ Thu Jul 28 10:48:38 2022 +0200
+
+- [X] 70341cab3eb26e2f49bbc13d6bca247ab9403abc
+
+ string-equal-ignore-case: new function
+ Sam Steingold
+ Tue Jul 26 13:49:28 2022 -0400
+
+- [X] 14d8c6f7b13f3237aa5e54f5c16ef0a9189c0459
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Mon Jul 25 06:30:18 2022 +0200
+
+- [X] 563bf2fae5ec238172f1f16c81e51b9aadd77017
+
+ ; * lisp/org/ol.el (org-link--decode-compound): `lsh` -> `ash`
+ Mattias Engdegård
+ Wed Jul 20 13:51:55 2022 +0200
+
+- [X] dbed53839136ef0e3f283599f51a5cef00343e28
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sun Jul 17 06:30:41 2022 +0200
+
+- [X] 2a05479c221d4a13b15ed731e4eb1c0de99e97ed
+
+ ; Fix typos: prefer American spelling
+ Stefan Kangas
+ Thu Jul 14 12:13:31 2022 +0200
+
+- [X] 4e79f77635a80e0c25841ba15feb0e70c8824516
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Thu Jul 14 11:37:42 2022 +0200
+
+- [X] 2a8d083607e7e0fe9358f1f6526dbd8aa928af61
+
+ Drop support for the dead third-party w3 package
+ Stefan Kangas
+ Sat Jul 9 17:27:49 2022 +0200
+
+- [X] 9230953f23c432699347bb3eeadebd82e4cbbfaa
+
+ ; Fix typos.
+ Stefan Kangas
+ Sat Jul 2 10:20:23 2022 +0200
+
+- [X] 087476bce183a404b2a7e62b15b5033504cb4819
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Mon Jun 27 06:30:25 2022 +0200
+
+- [X] fc46552dc8273e41e40b395b554eb0e3cfa386b9
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sat Jun 25 06:30:26 2022 +0200
+
+- [X] f94e93a6eec92d834a6b545d8d4b68280b0993b0
+
+ org-cite-list-citations: Cache footnote-definition searches
+ Ihor Radchenko
+ Thu Jun 16 10:55:05 2022 +0300
+
+ From Org's main: b061e7b61 (org-cite-list-citations: Cache
+ footnote-definition searches, 2022-06-16)
+
+ https://yhetil.org/emacs-devel/87h74l9jk8.fsf@localhost
+
+- [X] 4f37a3b299bcec71a0e9bdd84b7b226494006fe4
+
+ org-element-map: Avoid repetitive `plist-get' call
+ Ihor Radchenko
+ Thu Jun 16 10:54:14 2022 +0300
+
+ From Org's main: 37a447ae0 (org-element-map: Avoid repetitive
+ `plist-get' call, 2022-06-16)
+
+ https://yhetil.org/emacs-devel/87h74l9jk8.fsf@localhost
+
+- [X] 979308b4cad2b573606ed71a1689a47a9e7a9e98
+
+ org-export-data: Concatenate strings in temporary buffer for performance
+ Ihor Radchenko
+ Thu Jun 16 10:53:51 2022 +0300
+
+ From Org's main: a158b263a (org-export-data: Concatenate strings in
+ temporary buffer for performance, 2022-06-16)
+
+ https://yhetil.org/emacs-devel/87h74l9jk8.fsf@localhost
+
+ This was reverted in 811deae32 (Revert "org-export-data: Concatenate
+ strings in temporary buffer for performance", 2022-06-17)
+
+- [X] 0f7ceb4803cabcb3c406fa7c27ccb7625096058e
+
+ org-export-as: Do not update buffer settings when not modified
+ Ihor Radchenko
+ Thu Jun 16 10:53:16 2022 +0300
+
+ Frm Org's main: 076dd92ac (org-export-as: Do not update buffer
+ settings when not modified, 2022-06-16)
+
+ https://yhetil.org/emacs-devel/87h74l9jk8.fsf@localhost
+
+- [X] d21412df06b99b551e67d39c097d95e8a284de73
+
+ org-export-resolve-id-link: Pre-cache all the ids in the parse tree
+ Ihor Radchenko
+ Thu Jun 16 10:52:54 2022 +0300
+
+ From Org's main: 84c89ea7c (org-export-resolve-id-link: Pre-cache
+ all the ids in the parse tree, 2022-06-12)
+
+ https://yhetil.org/emacs-devel/87h74l9jk8.fsf@localhost
+
+- [X] 3236dedc2de5975afde877f7460bd012da89a98d
+
+ org-export-resolve-fuzyy-link: Pre-cache all possible search cells
+ Ihor Radchenko
+ Thu Jun 16 10:52:36 2022 +0300
+
+ From Org's main: 792cd4b0a (org-export-resolve-fuzyy-link: Pre-cache
+ all possible search cells, 2022-06-12)
+
+ https://yhetil.org/emacs-devel/87h74l9jk8.fsf@localhost
+
+- [X] 5b3d4e7bf0b6a1eb576e1c6e6592028e3589f792
+
+ org-export-get-footnote-definition: Pre-cache references in parse tree
+ Ihor Radchenko
+ Thu Jun 16 10:52:17 2022 +0300
+
+ From Org's main: f51c28671 (org-export-get-footnote-definition:
+ Pre-cache references in parse tree, 2022-06-12)
+
+ https://yhetil.org/emacs-devel/87h74l9jk8.fsf@localhost
+
+- [X] 17666093097d58466e9581b9ff1d07ec5e3eeebf
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Fri Jun 10 08:17:35 2022 +0200
+
+- [X] d46e94f23fbbd522f2a017444b29f9f18203b4bc
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sun Jun 5 06:30:25 2022 +0200
+
+- [X] b2bce107b15d6e0c2b773704179c6bf463525459
+
+ Further audits of single quotes in Lisp doc strings
+ Lars Ingebrigtsen
+ Tue May 24 13:17:53 2022 +0200
+
+ Ported early due to conflicts with 01b0fb14b (Backport from main:
+ Escape single left quotes in docstrings, 2022-07-24).
+
+- [X] 1fc1d8b88994303ac7c1aac673cb3fead5ff4d9e
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Mon May 16 06:30:38 2022 +0200
+
+- [X] 253374f81a13109b73afc8e319ca1fea72f68c72
+
+ Remove some XEmacs compat code from org-mode
+ Stefan Kangas
+ Sat May 14 15:55:20 2022 +0200
+
+- [X] cc8b6101f4479a80a6af7f9d80c6f9d774a85f40
+
+ Remove some XEmacs compat code from org-mode
+ Stefan Kangas
+ Fri May 13 23:17:16 2022 +0200
+
+- [X] 2fba71cf1fadc9d681e6be250d152cc156bf6a00
+
+ Fix handling double-click-time nil or t
+ Stefan Kangas
+ Mon May 2 12:03:08 2022 +0200
+
+- [X] fa1a7ac617619ef015e02e72950eef219ec62336
+
+ Pacify byte compiler etc. on org-compat, org-macs
+ Paul Eggert
+ Thu Apr 28 13:41:35 2022 -0700
+
+- [X] b3023de5431fc308e2a6db61ed4fdd18db785324
+
+ Merge from origin/emacs-28
+ Eli Zaretskii
+ Thu Apr 28 18:37:34 2022 +0300
+
+- [X] 3abb3681b57d7c8ca7fa808addb0a10b6b109cab
+
+ Use org-time-convert-to-integer instead of by hand
+ Paul Eggert
+ Wed Apr 27 00:30:25 2022 -0700
+
+- [X] 2d71fd3b041506c68b5f1cd1e409e09e25778c34
+
+ Further doc string quoting fixes
+ Lars Ingebrigtsen
+ Fri Apr 22 17:16:42 2022 +0200
+
+ Ported early due to conflicts with 01b0fb14b (Backport from main:
+ Escape single left quotes in docstrings, 2022-07-24).
+
+- [X] bbf389ea6deab229ba18dc519fe712ec982609d1
+
+ Audit quoting the quote character in doc strings
+ Lars Ingebrigtsen
+ Fri Apr 22 16:17:22 2022 +0200
+
+ Ported early due to conflicts with 01b0fb14b (Backport from main:
+ Escape single left quotes in docstrings, 2022-07-24).
+
+- [X] 6cd43d62055c9ec27cacdcaff13d4a52b7efdff2
+
+ Merge from origin/emacs-28
+ Paul Eggert
+ Sun Apr 17 13:10:19 2022 -0700
+
+- [X] 8ef37913d3be5ff518018acb6b0144d6e559b5ba
+
+ Port Org encode-time usage back to Emacs 25
+ Paul Eggert
+ Tue Apr 5 17:52:34 2022 -0700
+
+- [X] 7cee79655656f02c36fb2858eccce477b7d90b6b
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Mon Mar 21 06:30:40 2022 +0100
+
+- [X] 8b66adfe065e0f21ec99c88e3cbb1cb16a94c6cd
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Mon Mar 7 06:33:56 2022 +0100
+
+- [X] 1de7382b574ff9f40319d7a075d952cb944f96ca
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Mon Feb 28 06:33:06 2022 +0100
+
+- [X] bee54495e92ddf5d75e3f68ac7e823b221306719
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Tue Feb 22 06:30:59 2022 +0100
+
+- [X] 2ed240296c181cc677caeef1ec33befd8428aa98
+
+ Merge from origin/emacs-28
+ Eli Zaretskii
+ Fri Feb 18 10:38:49 2022 +0200
+
+- [X] d52c929e31f60ff0462371bfe27ebd479e3e82bd
+
+ (with-demoted-errors): Warn on missing `format` arg
+ Stefan Monnier
+ Fri Feb 4 19:39:53 2022 -0500
+
+ Applying to bugfix to avoid any fallout from bug#54225 (see
+ <https://list.orgmode.org/YiAWerI35IoRNQyt@smoon.bkoty.ru/>).
+
+- [X] 3652170d7dd3a0aa3cf59d7ccffbf13d6fa0118e
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Mon Jan 31 06:58:23 2022 +0100
+
+- [X] 19d681d24bce0bcff1417c73035d1f9e34fbcc4a
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sun Jan 16 06:51:09 2022 +0100
+
+- [X] ad125a99273c7bd81d02d388af3c69125dfe27ee
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sun Jan 2 06:31:44 2022 +0100
+
+- [X] dcd76bd48df678d8234b904d7b13c997228519a3
+
+ Merge from origin/emacs-28
+ Eli Zaretskii
+ Sat Jan 1 07:03:03 2022 -0500
+
+- [X] 18b680cfd177e877991be2bd70ead628bbdc0aa0
+
+ Fix bug#52467 by adding a new custom variable 'display-comint-buffer-action'
+ Sam Steingold
+ Tue Dec 28 17:28:49 2021 -0500
+
+ Will likely need to be adjusted for backwards compatibility or
+ rejected.
+
+- [X] 4fedbfbfca87849db343c09c4006b52c845f95d2
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Mon Dec 27 06:32:28 2021 +0100
+
+- [X] 5f57b41aa612e5f190f5a3c1ea013be114493a03
+
+ ; Minor license statement fixes
+ Stefan Kangas
+ Mon Dec 20 22:31:31 2021 +0100
+
+- [X] d745f4b6a0944778c495cd13e11fe096a9bd56f7
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sun Dec 19 14:02:30 2021 +0100
+
+- [X] e0ca8f791c2e4396f1e40d86c136ae547b40185d
+
+ Prefer format-time-string to current-time-zone
+ Paul Eggert
+ Thu Dec 16 11:17:26 2021 -0800
+
+- [X] dd0727e1ec1f535b9b06be88173b4d3ccd55abcb
+
+ encode-time simplifications
+ Paul Eggert
+ Thu Dec 16 11:17:25 2021 -0800
+
+- [X] 2d116c432d2a561fac69916d78b7a70dd6144ac7
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sun Dec 12 06:31:07 2021 +0100
+
+- [X] d601fd4692e0be3c9ee9b247c8a7bc5b2499f0eb
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Fri Dec 10 06:30:33 2021 +0100
+
+- [X] c1145c31adf143460911dd87b408d35ea88a1a92
+
+ Update org-compat doc string
+ Paul Eggert
+ Sun Dec 5 23:24:10 2021 -0800
+
+- [X] 520a703fa7db07ba82661e68cf4eafe7ba61a8d0
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sun Dec 5 06:30:35 2021 +0100
+
+- [X] fa2e812894b999eba8afc4b146ca5e70fa9bd1c8
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Thu Dec 2 17:34:10 2021 +0100
+
+- [X] f5498a608fe85b66a4068a5ccf88c9b3d3b88f98
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sun Nov 28 14:59:44 2021 +0100
+
+- [X] 1de6a86553c15905066a93e5b761e1825f23015a
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sun Nov 21 11:18:23 2021 +0100
+
+- [X] b4c6ab8cb67be4d5b3e0041981968c6cce4afe89
+
+ Merge from origin/emacs-28
+ Stefan Kangas
+ Sat Nov 13 07:00:30 2021 +0100
+
+- [X] 104e90d93664892ed1a7a1631c5b0141d0552a60
+
+ Prefer locate-user-emacs-file
+ Stefan Kangas
+ Tue Nov 9 07:51:27 2021 +0100
+
+- [X] 54fd811eecdd2ba5c1981c7b6c2108e4e2d2de5e
+
+ Merge from origin/emacs-28
+ Michael Albinus
+ Sun Nov 7 18:06:24 2021 +0100
+
+- [X] 0abf01402b4c1959b363ae1c7085fd356fb102a4
+
+ Merge from origin/emacs-28
+ Eli Zaretskii
+ Sun Oct 31 18:46:29 2021 +0200
+
+- [X] b931e11a03fdb44e378133b10f312e38b1b3d712
+
+ Merge from origin/emacs-28
+ Glenn Morris
+ Sun Oct 24 01:55:45 2021 -0700
+
+- [X] 7d12c06725d733f1ea223f5fe55d506c71e44370
+
+ Merge from origin/emacs-28
+ Glenn Morris
+ Mon Oct 18 07:50:26 2021 -0700
+
+- [X] 8aceb37b47a8f97fc42caaaf021ac06dc9f67827
+
+ Merge from origin/emacs-28
+ Glenn Morris
+ Mon Oct 11 08:04:57 2021 -0700
+
+- [X] 66409422214a0a90e1d2a12ef2c4ebf86f2c01a9
+
+ Use format-prompt for many more prompts
+ Stefan Kangas
+ Tue Oct 5 03:44:56 2021 +0200
+
+- [X] bd3a1c3134a130ca8edf4c13c44a8c2323ef2c90
+
+ dummy marker for emacs-28 split
+
+** emacs-28 [125/125]
+:PROPERTIES:
+:ref: origin/emacs-28
+:END:
+
+- [X] 616dcf27e57388403d4c28d441bf7310bb665241
+
+ ; Fix typos in Lisp symbols
+ Stefan Kangas
+ Tue Sep 20 12:21:40 2022 +0200
+
+- [X] 19de241a7dc193c0d0423019824627adb28f8944
+
+ Recommend NonGNU ELPA over MELPA
+ Stefan Kangas
+ Fri Sep 16 14:04:27 2022 +0200
+
+- [X] 5713c730f201675918544dbe40ad308c5d0463c3
+
+ Update to Org 9.5.5
+ Kyle Meyer
+ Sat Sep 3 21:32:20 2022 -0400
+
+- [X] 582ea6a1e9f98c124a7b044f1db7d4c63da5646d
+
+ Update to Org 9.5.4-19-g4dff42
+ Kyle Meyer
+ Sun Aug 21 17:35:35 2022 -0400
+
+- [X] ba70d0f77c52d471bceb2ad2cc7bc172db348abb
+
+ Update to Org 9.5.4-17-g6e991f
+ Kyle Meyer
+ Sun Jul 24 16:24:24 2022 -0400
+
+- [X] 10b69198708105655c49b62ac7d6185abb7e02a7
+
+ ; Fix typos
+ Stefan Kangas
+ Sat Jul 16 10:07:38 2022 +0200
+
+- [X] ba0871bef1e7d321f1124a6ad20e9be158a976dd
+
+ ; Fix typos: prefer American spelling
+ Stefan Kangas
+ Wed Jul 13 13:04:22 2022 +0200
+
+- [X] 48bda83d3591d33c5bb8292d9edb06ef3c3f93bd
+
+ Update to Org 9.5.4-3-g6dc785
+ Kyle Meyer
+ Sun Jun 26 23:00:38 2022 -0400
+
+- [X] 1f6750b53a872a5747dff92b8f61cfede0c5a6a6
+
+ Avoid treating number as an enum in the org manual
+ Stefan Kangas
+ Fri Jun 24 19:18:50 2022 +0200
+
+- [X] 9a4862a9738c2abab8fb4fb2e4e57b69dea679d7
+
+ * doc/misc/org.org: Remove spurious markup.
+ Stefan Kangas
+ Wed Jun 8 13:16:32 2022 +0200
+
+- [X] 1b8719835a200a2be17da226e82030f691caba80
+
+ Update to Org 9.5.4
+ Kyle Meyer
+ Sat Jun 4 16:21:06 2022 -0400
+
+- [X] f928330fa86e1493d2862180b132a99022458c96
+
+ Update to Org 9.5.3-6-gef41f3
+ Kyle Meyer
+ Sun May 15 17:49:34 2022 -0400
+
+- [X] 7c1fc2348918a1ad8c61c7519a51042d48d7aa8d
+
+ Update to Org 9.5.3-3-gd54104
+ Kyle Meyer
+ Sun Apr 24 21:07:40 2022 -0400
+
+- [X] 65c04e7115f329a083a16a364a8400e1685def61
+
+ Update to Org 9.5.2-38-g682ccd
+ Kyle Meyer
+ Sun Apr 17 15:30:39 2022 -0400
+
+- [X] f15922a57cd6177c9c945d3390a6b9918883415d
+
+ Update to Org 9.5.2-25-gaf6f12
+ Kyle Meyer
+ Sun Mar 20 21:31:32 2022 -0400
+
+- [X] cd77fd3b85f50b75d3fe24713a1ca4f622c110dd
+
+ Update to Org 9.5.2-24-g668205
+ Kyle Meyer
+ Sun Mar 6 20:18:26 2022 -0500
+
+- [X] e77fc8262ad73f30b1983f403262dce6f0e4cb09
+
+ Update to Org 9.5.2-22-g33543d
+ Kyle Meyer
+ Mon Feb 28 00:11:01 2022 -0500
+
+- [X] b7a651ba3787ab8257e35f93f754c4455fc8dba4
+
+ Update to Org 9.5.2-17-gea6b74
+ Kyle Meyer
+ Sun Feb 20 14:04:28 2022 -0500
+
+- [X] df3492934639628f023049e032421b7beb80de57
+
+ Update to Org 9.5.2-15-gc5ceb6
+ Kyle Meyer
+ Sun Feb 13 12:43:54 2022 -0500
+
+- [X] 6f282b31ad7548ab744565144e0d30dd56774210
+
+ Update to Org 9.5.2-13-gdd6486
+ Kyle Meyer
+ Sun Jan 30 20:38:01 2022 -0500
+
+- [X] e488601849627c53b1638fbab1d115518e0ee794
+
+ Update to Org 9.5.2-9-g7ba24c
+ Kyle Meyer
+ Sat Jan 15 16:02:26 2022 -0500
+
+- [X] f475c5823a409356721e49577116521467680ff4
+
+ ; Copyright year fixes
+ Glenn Morris
+ Sat Jan 1 10:02:17 2022 -0800
+
+ Already covered by update on Org side.
+
+- [X] 19dcb237b5b02b36580294ab309124f346a66024
+
+ ; Add 2022 to copyright years.
+ Eli Zaretskii
+ Sat Jan 1 02:45:51 2022 -0500
+
+ Already covered by update on Org side.
+
+- [X] d4e2850b323fdce7b4d658ece50f6071432deae8
+
+ Update to Org 9.5.2-3-geb9f34
+ Kyle Meyer
+ Sun Dec 26 16:37:26 2021 -0500
+
+- [X] 5f25852e91f167f99988fbe8d1944fe92d70b903
+
+ Update to Org 9.5.1-31-ga18849
+ Kyle Meyer
+ Sat Dec 18 13:50:40 2021 -0500
+
+- [X] 30dd5c9acc3b3b95ef784549b5e3ff8136a23854
+
+ Update to Org 9.5.1-25-g9ca3bc
+ Kyle Meyer
+ Sat Dec 11 12:31:13 2021 -0500
+
+- [X] 26fb4168b884eeb910580c42e87efb73399019c9
+
+ ; Prefer HTTPS in more URLs
+ Stefan Kangas
+ Thu Dec 9 16:26:04 2021 +0100
+
+- [X] c086358574e3671787394c7b9f6069760e7c6b3c
+
+ Update to Org 9.5.1-15-gdb4805
+ Kyle Meyer
+ Sat Dec 4 21:27:59 2021 -0500
+
+- [X] 50b40e1d4f0063ac78a53673736a2eaa3ba3287b
+
+ ; * lisp/org/ob-julia.el: Fix Author header for authors.el.
+ Stefan Kangas
+ Wed Dec 1 17:03:52 2021 +0100
+
+- [X] 1fffe9a210d328559da2af8facbb75286a31c74e
+
+ ; * lisp/org/org.el: Fix version header.
+ Stefan Kangas
+ Sun Nov 28 14:54:24 2021 +0100
+
+- [X] b8b2dd17c57b73357cae229e010138fd2352a46f
+
+ Update to Org 9.5.1-11-g96d91b
+ Kyle Meyer
+ Sat Nov 27 16:25:09 2021 -0500
+
+- [X] 0dd3883defc04ea02d2f77d79debf4e18157500d
+
+ Update to Org 9.5-72-gc5d6656
+ Kyle Meyer
+ Sat Nov 20 13:12:18 2021 -0500
+
+- [X] 42d4e24ff3f13ccbd401d93d70ecdee99b88a26d
+
+ ; Fix typos
+ Stefan Kangas
+ Fri Nov 12 13:59:58 2021 +0100
+
+- [X] f05b8a939b7ad57e9526510d510ff24484dcb520
+
+ Update to Org 9.5-68-g77e2ec
+ Kyle Meyer
+ Sat Nov 6 14:10:47 2021 -0400
+
+- [X] f1c9286376d570e898d349200412021fd67e13d2
+
+ ; * doc/misc/org.org: fix capture context example
+ Hanno Perrey
+ Sun Oct 31 16:23:41 2021 +0100
+
+- [X] 6fa520677095c5872f1d448f6f1001ee22e42276
+
+ Update to Org 9.5-59-g52e6f1
+ Kyle Meyer
+ Sat Oct 23 13:46:59 2021 -0400
+
+- [X] ac6ac76e3ae5ca96607ac7eba4a3ccf146fc8815
+
+ Update to Org 9.5-57-g9bc3a2
+ Kyle Meyer
+ Sat Oct 16 14:01:34 2021 -0400
+
+- [X] bcce93f04c2df6a5bb5dd1a8e611de734d24aee7
+
+ Update to Org 9.5-46-gb71474
+ Kyle Meyer
+ Sat Oct 9 16:34:12 2021 -0400
+
+- [X] bb209cd5ab819c72784de7278092705e59ff41d5
+
+ Update to Org 9.5-30-g10dc9d
+ Kyle Meyer
+ Sat Oct 2 14:41:27 2021 -0400
+
+- [X] 4341e79a5fad3e5e668a3eeb1b688d1986011481
+
+ Remove bogus ":safe t" custom properties
+ Glenn Morris
+ Sat Oct 2 11:00:23 2021 -0700
+
+- [X] 62d6cecfcd1a67e15a436c5c2b975f327d9a8b50
+
+ Remove bogus ":safe nil" custom properties
+ Glenn Morris
+ Sat Oct 2 10:46:29 2021 -0700
+
+- [X] f9111d8784bf12263abbe127cdfcbe5f409c9b3b
+
+ The safe-local-variable property is a function (bug#50944)
+ Glenn Morris
+ Sat Oct 2 10:37:42 2021 -0700
+
+- [X] bd60fca2faa03034e89df68a69255656df6512ba
+
+ Fix ox-koma-letter compilation warnings
+ Lars Ingebrigtsen
+ Sat Oct 2 10:37:55 2021 +0200
+
+ Already taken care of in the bugfix branch by 85e5540eb
+ (lisp/ox-koma-letter.el: Use lexical-binding, 2021-09-30).
+
+- [X] d505971894d83e04e8d206be1dcee1cee5e8bb93
+
+ ; Standardize some license headers
+ Glenn Morris
+ Fri Oct 1 18:07:45 2021 -0700
+
+- [X] f1f57a541e4c74eec68a27c47c7416ed6c7d75dd
+
+ Fix some custom types
+ Glenn Morris
+ Fri Oct 1 08:33:32 2021 -0700
+
+- [X] 2075411edbad954c0fdf2aa141757d834a6708b7
+
+ Fix regexp snags in org
+ Mattias Engdegård
+ Thu Sep 30 17:16:41 2021 +0200
+
+- [X] 58102466e32d4dd9c7d816cdc3f4595a2145f332
+
+ org-element: use correct function
+ Mattias Engdegård
+ Thu Sep 30 17:16:25 2021 +0200
+
+- [X] b5e3cc3bc597d56dfe09ee500717344649ea0354
+
+ * lisp/org/ob-julia.el: Use lexical-binding
+ Stefan Monnier
+ Thu Sep 30 10:02:29 2021 -0400
+
+- [X] a5b761ec334cded8252e81c3887142a46752ec6a
+
+ * lisp/org/ox-koma-letter.el: Use lexical-binding
+ Stefan Monnier
+ Thu Sep 30 09:58:04 2021 -0400
+
+- [X] bf9ec3d91a79414deac039f7bf83352a9b0a9a85
+
+ Update to Org 9.5
+ Kyle Meyer
+ Wed Sep 29 23:21:21 2021 -0400
+
+- [X] c78e16962e63895d340f80cf245fad568a7da770
+
+ ; Adjust overly long docstrings to fit 80 characters
+ Stefan Kangas
+ Sun Sep 26 13:23:57 2021 +0200
+
+- [X] 0da8118dcbf3c54dd6ecc9c0e3314a56ca82ec51
+
+ Use command substitution instead of raw keys in more places
+ Stefan Kangas
+ Fri Sep 24 21:26:08 2021 +0200
+
+- [X] 85e9e5f616fb0fd0819a04006d6d2a0fb6d93ad7
+
+ Don't quote nil and t in doc strings and comments
+ Lars Ingebrigtsen
+ Tue Sep 21 22:11:43 2021 +0200
+
+- [X] 43c1ee90cb3333dc2643e58cf607399b0abebf43
+
+ Don't use `format' on strings without % format directives
+ Lars Ingebrigtsen
+ Tue Sep 21 17:52:53 2021 +0200
+
+- [X] 3f9f3ba4370bd4d0f33392befb35328327d73b1e
+
+ Docfix: use command substitution for 'universal-argument'
+ Stefan Kangas
+ Thu Sep 16 20:05:48 2021 +0200
+
+- [X] 25ebb9374bdadf66153727831fc7ff131c8cf299
+
+ ; More minor docfixes found by checkdoc
+ Stefan Kangas
+ Tue Sep 14 07:57:14 2021 +0200
- [X] ff4de1bd88b8be4a7071884910ff601eb10fbad5
@@ -91,12 +1878,6 @@ master.
Amin Bandali
Sun Jul 4 00:14:47 2021 -0400
-- [X] 348b2aed0c8c3630be4c15c8e70acf7ea9c023af
-
- Update IRC-related references to point to Libera.Chat
- Amin Bandali
- Sat Jul 3 23:39:18 2021 -0400
-
- [X] 19f2f2699499d87186c6f580e4ec79205d59c096
Prevent Org mode from mistakenly changing Calendar keymap
@@ -112,7 +1893,6 @@ master.
Independently applied to master in 1a5a326f1. Also applied to
km/from-emacs-master.
-
- [X] 5746fd57ab7c9d27bcc6220f2b9faaba2982deba
* lisp/org/org-mouse.el: Make use of lexical scoping
@@ -276,18 +2056,6 @@ master.
Glenn Morris
Fri Dec 25 10:36:48 2020 -0800
-- [X] b242bbb073b501f7a4d4569c2d70cde522abbea3
-
- ; lisp/org/org.el: Fix Version header.
- Glenn Morris
- Fri Dec 25 10:36:25 2020 -0800
-
-- [X] 7f8793e5f1c69cf9311479e69d18a62ae87e35ce
-
- Update to Org 9.4.4
- Bastien Guerry
- Tue Dec 22 10:29:37 2020 +0100
-
- [X] 34a73666d9559d948815a53b63dc36cc878d5aff
Shorten some over-wide docstrings in functions and macros
@@ -336,30 +2104,12 @@ master.
https://orgmode.org/list/87o8i2cpb2.fsf@gmail.com
-- [X] 7cacf5da47d1f88bbaef07e10841d1f6bfe2e471
-
- Update to Org 9.4.3
- Bastien Guerry
- Wed Dec 16 19:17:58 2020 +0100
-
- [X] cbdd48a07be5401177807ed6e6b8ec16c1b5e004
Merge from origin/emacs-27
Glenn Morris
Tue Dec 15 09:24:21 2020 -0800
-- [X] 2dbc95063b5ee3d48aceff05f89e63a134df86ed
-
- Update to Org 9.4.2
- Bastien Guerry
- Sun Dec 13 22:26:51 2020 +0100
-
-- [X] f22856a5c54d99867cd24c08a14bbda23d5c6229
-
- Update to Org 9.4.1
- Bastien Guerry
- Sun Dec 13 13:44:15 2020 +0100
-
- [X] 0a4aa2894297c0fd9e735328bbb60b427e0ba5d4
Remove redundant requires of 'font-lock'
@@ -380,7 +2130,6 @@ master.
- [X] 430eb2f850b26f7df8473de4d929b5665673a0a2
-
Remove Emacs 20 compat code from org.el
Stefan Kangas
Fri Nov 20 16:11:33 2020 +0100
@@ -432,12 +2181,6 @@ master.
Glenn Morris
Fri Oct 2 09:38:24 2020 -0700
-- [X] 78eacf31e8fe182801ad1943fac717b75fcf286b
-
- ; Fix many typos in symbols in docs and comments
- Stefan Kangas
- Fri Oct 2 13:29:45 2020 +0200
-
- [X] c6fa0ad315e38167cb81a4d8c143cc53ad783cc3
; Prefer https to http in many URLs
@@ -492,12 +2235,6 @@ master.
Glenn Morris
Wed Apr 15 07:50:15 2020 -0700
-- [X] 4acdd7fe58ae9f94102afeca67b0383141d597da
-
- Fix edge case errors in filename-matching regexps
- Mattias Engdegård
- Tue Apr 14 12:25:16 2020 +0200
-
- [X] 22524a6e39582d44c1365bad9a589618c2b0df27
Fix mistake in regexp cleanup
@@ -524,30 +2261,12 @@ master.
Glenn Morris
Thu Feb 13 07:50:24 2020 -0800
-- [X] 0304f530761bee1c217bbf8fe7839cdfe8767a51
-
- doc/misc/org.texi: Fix @dircategory
- Bastien
- Thu Feb 13 09:41:38 2020 +0100
-
-- [X] 530067463bffc982f02dcc4f2805d389704575b4
-
- Correct "different than" to "different from" where appropriate
- Alan Mackenzie
- Sun Feb 9 14:33:14 2020 +0000
-
- [X] 68d43392a65186a944c839dc576b2b01deafbb0d
Merge from origin/emacs-27
Glenn Morris
Thu Feb 6 07:50:29 2020 -0800
-- [X] 32763dac46e61cc34e8fe4d19df4905d09c1a27f
-
- Replace add-to-list to lexical variable with push (bug#39373)
- Mattias Engdegård
- Sat Feb 1 22:27:23 2020 +0100
-
- [X] 0c6c8aa002d321db61afdd14c70744f7bc27f268
Remove (or double) redundant backslashes in string literals
@@ -566,32 +2285,12 @@ master.
Paul Eggert
Sun Jan 5 11:44:48 2020 -0800
-- [X] f95a2b83014a810d508448473b20186d55485efd
-
- Fix some broken conditional forms
- Paul Eggert
- Sat Jan 4 11:18:13 2020 -0800
-
- Alread fixed by Bastien in 04bd110b2 (Small fixes, 2020-01-31).
-
- [X] c6fb86b40bebf597fccbe4eba58ceea83bd9700f
Merge from origin/emacs-27
Paul Eggert
Wed Jan 1 01:08:16 2020 +0000
-- [X] 4cd143aded5e40fe801575c669dd464210caaf7e
-
- Fix copyright years by hand
- Paul Eggert
- Wed Jan 1 01:01:53 2020 +0000
-
-- [X] 365e01cc9f64ce6ca947ccfd8612d60763280a37
-
- Update copyright year to 2020
- Paul Eggert
- Wed Jan 1 00:59:52 2020 +0000
-
- [X] af085ef40b961ca3466e8b2dfb7f722573e5a4cc
Use regexp type for regexps in defcustom declarations
@@ -600,7 +2299,7 @@ master.
- [X] b0f20651e3cbb8a66f11ffae4c18634019c20cd4
-** emacs 27 branch [197/197]
+** emacs 27 branch [146/146]
:PROPERTIES:
:ref: origin/emacs-27
:END:
@@ -701,6 +2400,8 @@ master.
Paul Eggert
Sat Jan 4 11:18:13 2020 -0800
+ Already fixed by Bastien in 04bd110b2 (Small fixes, 2020-01-31).
+
Reverted by above commit.
- [X] 4cd143aded5e40fe801575c669dd464210caaf7e
@@ -956,14 +2657,6 @@ master.
Paul Eggert
Sun May 26 01:00:15 2019 -0700
-- [X] 7681a57b88a91bf9eedc890b974df9728d5eb50d
-
- Remove redundants "See" before @xref or @pxref (Bug#35793)
- Mauro Aranda
- Sat May 25 13:02:05 2019 -0400
-
- same note as above for emacs26
-
- [X] 5424436452bc0b3d8a62a8398f92d0c2db81e22b
Avoid backslash-newline-newline in source code
@@ -1045,12 +2738,6 @@ master.
Glenn Morris
Wed Feb 20 12:07:22 2019 -0800
-- [X] b5e66f46a6f33f9d633e6cc3e0770a566bdfcf6b
-
- Update citations of Internet RFCs
- Paul Eggert
- Sat Feb 16 12:00:02 2019 -0800
-
- [X] 988e37fa0f922b852715671d59a0e3f682373411
Simplify use of encode-time
@@ -1071,18 +2758,6 @@ master.
Paul Eggert
Mon Dec 31 17:57:29 2018 -0800
-- [X] 2fcf2dff00a55ece17f4342a934cb1d69ae1a743
-
- Fix copyright years by hand
- Paul Eggert
- Tue Jan 1 01:02:40 2019 +0000
-
-- [X] 26bed8ba10eeaf0a340a8d0d760c5578dddec867
-
- Update copyright year to 2019
- Paul Eggert
- Tue Jan 1 01:01:13 2019 +0000
-
- [X] c5e02f2bce28f3b1f2006ce1f208f4a92ca05ed9
Make org-protocol-flatten always an alias
@@ -1122,24 +2797,12 @@ master.
Glenn Morris
Wed Oct 3 09:25:26 2018 -0700
-- [X] 6a7a869c33bb69efd93bb0ce8d8322083dbbcbac
-
- Org manual: Rewrite the Org Mobile section
- Nicolas Goaziou
- Sun Sep 30 14:40:14 2018 +0300
-
- [X] 6aa93b45af9fb3631fb8fb6a04407db4d9a74107
Merge from origin/emacs-26
Glenn Morris
Fri Sep 28 07:54:24 2018 -0700
-- [X] d309994aff03200ed8ef9fadd98f69d6d3166701
-
- Fix typos in documentation
- Eli Zaretskii
- Thu Sep 27 18:48:06 2018 +0300
-
- [X] 662bee7d70ccd3903e123b08c7ec9108a1a2ce0b
file-attributes cleanup
@@ -1172,12 +2835,6 @@ master.
Glenn Morris
Sat Jun 2 10:29:37 2018 -0700
-- [X] 6d2352594f4e4e17965834851547df3adaa6cd6f
-
- Fix typos in several manuals (Bug#31610)
- Ville Skyttä
- Fri Jun 1 16:33:58 2018 +0300
-
- [X] 3c6b59918aaaac295fd6354dae929859eaaacfa2
Backspace is not a paragraph separator in Texinfo files
@@ -1202,12 +2859,6 @@ master.
Glenn Morris
Fri Apr 20 08:07:43 2018 -0700
-- [X] 8f6293ca789edf06ea8e7b4b80edf7558d590ca7
-
- Fix use of @key in Texinfo manuals
- Eli Zaretskii
- Thu Apr 19 12:21:06 2018 +0300
-
- [X] 20b858ef13f8f71fae6cbce5cdac31c4dd130600
Prefer \... to control chars in .el literals
@@ -1231,24 +2882,6 @@ master.
Glenn Morris
Wed Mar 28 09:38:22 2018 -0700
-- [X] 9bff405d09f6eeeb577e6e0111e49f35d3b95b52
-
- * doc/misc/org.texi (Installation): Fix clone commands.
- Michael Albinus
- Wed Mar 28 10:38:26 2018 +0200
-
-- [X] 613c9a5c1f3237fbdc3a3db2341c7c59353d2aa2
-
- Update Org to v9.1.9
- Rasmus
- Tue Mar 27 23:34:41 2018 +0200
-
-- [X] 7d6c7d0b461705fd67f7df1096b6f6376931f140
-
- ; Use GNU not Gnu in docs
- Glenn Morris
- Fri Mar 23 16:01:12 2018 -0400
-
- [X] c8e8d16810ec09139c560c77572d3372a2edd8d2
Avoid using unportable integer in org-clock
@@ -1265,12 +2898,6 @@ master.
Stefan Monnier
Fri Mar 23 11:01:31 2018 -0400
-- [X] a6a821d29bda3e45fb26289e6119359ea3b91ebb
-
- * lisp/org/ob-lisp.el (org-babel-lisp-eval-fn): Tweak type.
- Glenn Morris
- Thu Mar 22 14:37:45 2018 -0400
-
- [X] 1c7db8aa30969d0bc0e6d35b9bd57c70314ed9d0
Explicitly require cl-lib where needed
@@ -1289,12 +2916,6 @@ master.
Paul Eggert
Sat Mar 10 18:30:54 2018 -0800
-- [X] 16faff6a46f28b4db2e9b91e52b27404303f3197
-
- ; * lisp/org/org-table.el: Replace obsolete alias in comment.
- Glenn Morris
- Fri Mar 9 12:43:21 2018 -0500
-
- [X] 136e1d23e936598a1c988cfa4b1d81ea7f7cb1f9
uniqify -> uniquify
@@ -1307,12 +2928,6 @@ master.
Paul Eggert
Sun Mar 4 17:16:39 2018 -0800
-- [X] f2caf08ca625f64c7eeea8dfa8f65a5b1bac58e2
-
- ; Spelling fixes
- Paul Eggert
- Sun Mar 4 17:10:34 2018 -0800
-
- [X] d5f6ff99c2b594919931b277a2d94d3a289ca764
Quieten without-x org compilation
@@ -1325,30 +2940,6 @@ master.
Glenn Morris
Wed Feb 28 09:40:40 2018 -0800
-- [X] 9743f48de7325bd95a42e1a27acbf6635f8d086b
-
- Mark keys consistently in manuals
- Michael Albinus
- Mon Feb 26 13:53:37 2018 +0100
-
-- [X] ce557a924a299650b5e0c93ba276f1ec651f7941
-
- Remove @key{} markups from @kindex entries in manuals
- Michael Albinus
- Mon Feb 26 09:24:39 2018 +0100
-
-- [X] 7a069f35d4ce002dc10d666fde2850d8e6eee427
-
- Fix @kindex entries in manuals
- Michael Albinus
- Sun Feb 25 16:29:39 2018 +0100
-
-- [X] e415309fef4077fe7e4dfe1a898d749c1136ca2c
-
- Fix @cindex entries in org.texi
- Michael Albinus
- Sat Feb 24 20:40:39 2018 +0100
-
- [X] 4fa90ff8f5fda54fc42049c990c52d3e5236fbe6
Merge from origin/emacs-26
@@ -1361,63 +2952,24 @@ master.
Radon Rosborough
Sat Feb 17 13:36:16 2018 +0200
-- [X] 69107f347b3ac7f51cd22333f57393fd735915f2
-
- ; Fix doc typos related to indefinite articles
- Glenn Morris
- Fri Feb 16 17:33:57 2018 -0500
-
-- [X] 66a4e651f3cf38c320d1a9d5ae6f88dcc641792b
-
- ; Fix doc typos related to indefinite articles
- Glenn Morris
- Fri Feb 16 15:16:15 2018 -0500
-
-- [X] 35e5c57db311c3d6c1c3a8dd4edc3d756d1d5d24
-
- ; Fix doc typos related to indefinite articles
- Glenn Morris
- Fri Feb 16 14:11:51 2018 -0500
-
- [X] a0c7157a16481b0523ad20cda9115f9435188f73
Merge from origin/emacs-26
Glenn Morris
Mon Feb 5 07:50:22 2018 -0800
-- [X] e1a9dc0af6ffb202ce1393b376d14d3c3897a243
-
- Recognize Org as builtin package (bug#30310)
- Glenn Morris
- Fri Feb 2 21:09:09 2018 -0500
-
- Nicolas has applied the header part. I have a to-do for trying to
- sync tests.
-
- [X] 084cfae0e624469ebca78b155ffe4e2c20f2b205
Merge from origin/emacs-26
Glenn Morris
Tue Jan 30 07:50:25 2018 -0800
-- [X] 7d90d2ece041630e0c440a2b0216e43f82729844
-
- Proofread os.texi and files.texi
- Paul Eggert
- Mon Jan 29 10:38:06 2018 -0800
-
- [X] 35675bb93f4620c43ca766e8a2d8708fd323c684
Merge from origin/emacs-26
Paul Eggert
Mon Jan 22 08:43:54 2018 -0800
-- [X] bb396a369c93e57b033844003c7ceab61d61aa08
-
- Update Org to v9.1.6
- Rasmus
- Mon Jan 22 16:02:55 2018 +0100
-
- [X] 72ee93d68daea00e2ee69417afd4e31b3145a9fa
* src/print.c (syms_of_print) <print_quoted>: Set default to true
@@ -1434,28 +2986,6 @@ master.
Sent to list instead: [[notmuch:id:87po65pyww.fsf@nicolasgoaziou.fr]]
-- [X] 63b04c11d530f4a6a41f112d1b3ba1ed1eb81195
-
- Fix copyright years by hand
- Paul Eggert
- Mon Jan 1 01:02:09 2018 -0800
-
- covered by our own
-
-- [X] 5c7dd8a783fa2503f042f6671279e5fca38c35cb
-
- Update copyright year to 2018
- Paul Eggert
- Mon Jan 1 00:57:59 2018 -0800
-
- covered by our own
-
-- [X] 445eefd238eb7c3843e18cd265c05f07233f8aff
-
- Backport: Update Org to v9.1.4
- Rasmus
- Wed Dec 6 15:37:41 2017 +0100
-
- [X] 567b5efe1f338c10c574758fb968915c5c34c909
Update Org to v9.1.4
@@ -1468,24 +2998,12 @@ master.
Paul Eggert
Sat Nov 25 22:55:35 2017 -0800
-- [X] a89f0b6f33f9eb8910a1fceda9028d76ef50b05d
-
- maint: shorten https://lists.gnu.org/archive/html/... links
- Paul Eggert
- Sat Nov 25 22:48:12 2017 -0800
-
- [X] 8d99e233147d44c2176cef599db754d06b12f5e3
Merge from origin/emacs-26
Paul Eggert
Wed Nov 8 19:22:26 2017 -0800
-- [X] 98288ecaffbc0947ec3193088172ea85ad5e42a5
-
- Further workaround for faulty localtime() under macOS 10.6
- Charles A. Roelli
- Wed Nov 8 20:51:48 2017 +0100
-
- [X] c75f505dea6a560b825384cf3d277690f86840bf
Prefer nil to (current-time) when either works
@@ -1502,106 +3020,6 @@ master.
then. will come back around once 26.1 is released and I apply this
to our maint, but someone will likely yell before then
-- [X] 5d51403ceb9b86a1bfa66f00c7af39f1200e65f1
-
- ; Typo fixes, mostly repeated words
- Paul Eggert
- Mon Oct 9 22:55:06 2017 -0700
-
-- [X] 0d004ed01abb5fa025bdc9d58fce2a3abff0b6a4
-
- ; Spelling fixes
- Paul Eggert
- Mon Oct 9 22:55:05 2017 -0700
-
-- [X] 2a32ee1fbc148d440fc12aa390ed3d2cc7d6fe3b
-
- Update Org to v9.1.2
- Rasmus
- Thu Oct 5 21:30:05 2017 +0200
-
-- [X] 5172fa02cccaab2500ecf85aaf65b8deed54d42e
-
- Prefer HTTPS to HTTP for gnu.org
- Paul Eggert
- Sun Oct 1 19:59:01 2017 -0700
-
-- [X] bd49b6f1b39cffeaf6098bc7b0182552683b1c07
-
- Workaround for faulty localtime() under macOS 10.6
- Charles A. Roelli
- Sun Oct 1 19:07:22 2017 +0200
-
-- [X] 07ea5ef99a509622981a8ca69aadff15cbc0ef10
-
- Fix reference style in org.texi
- Martin Rudalics
- Sun Oct 1 10:30:33 2017 +0200
-
-- [X] cbc832448878f7bc7b226243abb8d8b1ae68a937
-
- Prefer HTTPS to HTTP for gnu.org
- Paul Eggert
- Fri Sep 29 17:48:22 2017 -0700
-
- changelog only
-
-- [X] bbda601d1d4e125c9d3c374b56eee3e2e9623f1ds
-
- ; Spelling fixes
- Paul Eggert
- Fri Sep 29 16:41:50 2017 -0700
-
-- [X] 26d58f0c5865c9132e2fc559e061ef704a086d30
-
- ; Standardize license notices
- Glenn Morris
- Fri Sep 29 12:49:19 2017 -0400
-
-- [X] d4b2bbdc73ace5cb0971a32a75941486489d1cc5
-
- Merge branch 'emacs-26' into scratch/org-mode-merge
- Rasmus
- Fri Sep 29 10:41:51 2017 +0200
-
-- [X] eaefbc26d5c6cffbe4a22d3a9f4c7e6209a7b5a7
-
- ; Add files missing in ab351d442d7
- Rasmus
- Tue Sep 19 09:00:00 2017 +0200
-
-- [X] ab351d442d7bb4d17cbb43638aaed1775d8c0344
-
- Update Org to v9.1.1
- Rasmus
- Mon Sep 18 12:01:12 2017 +0200
-
-- [X] f2b2201594b59ff758347644a84cdc8f6b046ec9
-
- ; Spelling and URL fixes
- Paul Eggert
- Sat Sep 23 00:36:56 2017 -0700
-
- changelog only
-
-- [X] bc511a64f6da9ab51acc7c8865e80c4a4cb655c2
-
- Prefer HTTPS to FTP and HTTP in documentation
- Paul Eggert
- Wed Sep 13 15:54:37 2017 -0700
-
-- [X] 5da53a01912c2f5d46f5df4ef8cc13a34b5017d4
-
- Prefer HTTPS to HTTP for gnu.org
- Paul Eggert
- Wed Sep 13 15:54:25 2017 -0700
-
-- [X] 74b8615fcceba7b92c4938e1bcc92015f10ae899
-
- Adjust ob-tangle to new copy-file behavior
- Paul Eggert
- Sun Sep 10 22:31:23 2017 -0700
-
- [X] cdef84fb6893f69ffee1a99fe82a262e02e59bf5
Spelling fixes
@@ -1734,14 +3152,6 @@ master.
Glenn Morris
Thu Apr 27 22:03:56 2017 -0700
-- [X] d38fd9229c07c531ebc0bec0ea65f7d7dffcd983
-
- Narrow scope of modification hook renabling in org-src fontification
- Noam Postavsky
- Tue Mar 21 09:19:57 2017 -0400
-
- Already covered.
-
- [X] c68cce94c46140f2ad1411550427d3cc2658ec02
; Fix typo in error messages (Bug#26034)
@@ -1783,14 +3193,6 @@ master.
Paul Eggert
Sun Mar 19 12:29:06 2017 -0700
-- [X] ae8264c5cccf19d5b25a340a605bf2f07de1577e
-
- Call modification hooks in org-src fontify buffers
- Noam Postavsky
-
- Already taken care of by 0ccd8286a (org-src: Fix fontification
- error, 2017-03-19).
-
- [X] 265a5d9791bf42da0bab7bdbef4352e8d734ef31
Document remote file name syntax change
@@ -1821,20 +3223,6 @@ master.
Paul Eggert
Wed Dec 7 12:39:08 2016 -0800
-- [X] eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671
-
- Fix minor quoting problems in doc strings
- Paul Eggert
- Wed Dec 7 11:31:16 2016 -0800
-
-- [X] 6d27423d381c3496e76e8d57e0d81841cdde0815
-
- Tweak refcard note about documentation location
- Glenn Morris
- Sun Nov 27 16:38:56 2016 -0800
-
- Maybe ONSYNC
-
- [X] 22946702b4296c0e42e4baf6221e205b52d05cbf
Add file-local-name
@@ -1861,14 +3249,6 @@ master.
Ignored. Just changelog.
-- [X] 73cbb813cfea53e4162409f2adc0a793ab301894
-
- ; ChangeLog spelling fixes
- Paul Eggert
- Sun Aug 21 04:15:44 2016 -0700
-
- Ignored. Just changelog.
-
- [X] 2c0506173d92dd9d6de409a045668c6b5cf1fcef
Add `make-nearby-temp-file' and `temporary-file-directory'
@@ -1894,14 +3274,6 @@ master.
Ignored. Maybe ONSYNC.
-- [X] 27fe1e459ab137b20d45ef4167f3c2ec0d10fdd4
-
- org.el: Fix bindings of < and > for calendar scrolling
- Marco Wahl
- Wed Jun 8 16:04:12 2016 -0700
-
- Already applied.
-
- [X] 65c8c7cb96c14f9c6accd03cc8851b5a3459049e
Pacify ‘make check-declare’
@@ -2091,8 +3463,9 @@ master.
Glenn Morris
Fri Feb 2 21:09:09 2018 -0500
- Guess Nicolas paritally backported in
- fffd300efdfa21211c99955b3f9bbc7a1d23e5f8.
+ Nicolas has applied the header part in
+ fffd300efdfa21211c99955b3f9bbc7a1d23e5f8. I have a to-do for trying
+ to sync tests.
- [X] 7d90d2ece041630e0c440a2b0216e43f82729844
@@ -2266,6 +3639,9 @@ master.
Noam Postavsky
Sun Jan 29 11:01:32 2017 -0500
+ Already taken care of by 0ccd8286a (org-src: Fix fontification
+ error, 2017-03-19).
+
- [X] 2e2a8068031b79a6cc5502b8d4c9d849ebb1dae0
Fix copyright years by hand
@@ -2850,12 +4226,6 @@ The initial list was generated using
Paul Eggert
Thu Nov 13 19:16:15 2014 -0800
-- [X] 123ddec7f807f4bd7400bbbe08219afb02269c00
-
- Simplify use of current-time and friends.
- Paul Eggert
- Tue Oct 28 18:42:51 2014 -0700
-
- [X] 29993416fb4d19c1c3bb146367fc4bed74845486
Add .info extension to @setfilename commands in doc/ This makes no difference to anything, since we always use makeinfo -o, but it makes automake happier, if we ever decide to use that.