Update to Org 9.8.7

This commit is contained in:
Kyle Meyer 2026-07-05 10:00:22 -04:00
parent 9ab1aa887a
commit ffad15bf73
7 changed files with 20 additions and 15 deletions

View file

@ -10013,8 +10013,8 @@ entries with a =NEXT= TODO keyword.
((org-agenda-max-entries 5))))) ((org-agenda-max-entries 5)))))
#+end_src #+end_src
Once you mark one of these five entry as DONE, rebuilding the agenda Once you mark one of these five entries as DONE, rebuilding the agenda
will again the next five entries again, including the first entry that will show the next five entries again, including the first entry that
was excluded so far. was excluded so far.
You can also dynamically set temporary limits, which are lost when You can also dynamically set temporary limits, which are lost when
@ -10269,7 +10269,7 @@ the other commands, point needs to be in the desired line.
Toggle Archives mode. In Archives mode, trees that are archived Toggle Archives mode. In Archives mode, trees that are archived
(see [[*Internal archiving]]) are also scanned when producing the (see [[*Internal archiving]]) are also scanned when producing the
agenda. To exit archives mode, press {{{kbd(v a)}}} again. The agenda. To exit archives mode, press {{{kbd(v a)}}} again. The
initial setting for this mode in new agenda buffers can set with the initial setting for this mode in new agenda buffers can be set with the
variable ~org-agenda-start-with-archives-mode~, which can be set variable ~org-agenda-start-with-archives-mode~, which can be set
with the same values as ~org-agenda-archives-mode~. with the same values as ~org-agenda-archives-mode~.
@ -14552,11 +14552,13 @@ include:
#+vindex: org-latex-tables-booktabs #+vindex: org-latex-tables-booktabs
#+vindex: org-latex-tables-centered #+vindex: org-latex-tables-centered
All three commands are toggles. =:booktabs= brings in modern All three commands are toggles. =:booktabs= brings in modern
typesetting enhancements to regular tables. The booktabs package typesetting enhancements to regular tables. The =booktabs= package
has to be loaded through ~org-latex-packages-alist~. =:center= is needs to be loaded through ~org-latex-packages-alist~, unless it is
for centering the table. =:rmlines= removes all but the very first already included by your document class[fn:: For example,
horizontal line made of ASCII characters from "table.el" tables [[https://authors.acm.org/proceedings/production-information/preparing-your-article-with-latex][the
only. ACM article template]].]. =:center= is for centering the table.
=:rmlines= removes all but the very first horizontal line made of
ASCII characters from "table.el" tables only.
- =:math-prefix=, =:math-suffix=, =:math-arguments= :: - =:math-prefix=, =:math-suffix=, =:math-arguments= ::

View file

@ -1,5 +1,5 @@
% Reference Card for Org Mode % Reference Card for Org Mode
\def\orgversionnumber{9.8.6} \def\orgversionnumber{9.8.7}
\def\versionyear{2026} % latest update \def\versionyear{2026} % latest update
\input emacsver.tex \input emacsver.tex

View file

@ -9723,8 +9723,10 @@ the dedicated frame."
(pos (marker-position marker))) (pos (marker-position marker)))
(with-current-buffer buffer (with-current-buffer buffer
(save-excursion (save-excursion
(goto-char pos) (save-restriction
(org-tree-to-indirect-buffer arg)))) (widen)
(goto-char pos)
(org-tree-to-indirect-buffer arg)))))
(setq org-agenda-last-indirect-buffer org-last-indirect-buffer)) (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))
(defvar org-last-heading-marker (make-marker) (defvar org-last-heading-marker (make-marker)

View file

@ -112,7 +112,7 @@
(defcustom org-feed-alist nil (defcustom org-feed-alist nil
"Alist specifying RSS feeds that should create inputs for Org. "Alist specifying RSS feeds that should create inputs for Org.
Each entry in this list specified an RSS feed tat should be queried Each entry in this list specified an RSS feed that should be queried
to create inbox items in Org. Each entry is a list with the following items: to create inbox items in Org. Each entry is a list with the following items:
name a custom name for this feed name a custom name for this feed

View file

@ -5,13 +5,13 @@
(defun org-release () (defun org-release ()
"The release version of Org. "The release version of Org.
Inserted by installing Org mode or when a release is made." Inserted by installing Org mode or when a release is made."
(let ((org-release "9.8.6")) (let ((org-release "9.8.7"))
org-release)) org-release))
;;;###autoload ;;;###autoload
(defun org-git-version () (defun org-git-version ()
"The Git version of Org mode. "The Git version of Org mode.
Inserted by installing Org or when a release is made." Inserted by installing Org or when a release is made."
(let ((org-git-version "release_9.8.6")) (let ((org-git-version "release_9.8.7"))
org-git-version)) org-git-version))
(provide 'org-version) (provide 'org-version)

View file

@ -9,7 +9,7 @@
;; URL: https://orgmode.org ;; URL: https://orgmode.org
;; Package-Requires: ((emacs "28.2")) ;; Package-Requires: ((emacs "28.2"))
;; Version: 9.8.6 ;; Version: 9.8.7
;; This file is part of GNU Emacs. ;; This file is part of GNU Emacs.
;; ;;

View file

@ -4,6 +4,7 @@
;; Author: Carsten Dominik <carsten.dominik AT gmail DOT com> ;; Author: Carsten Dominik <carsten.dominik AT gmail DOT com>
;; Nicolas Goaziou <n.goaziou AT gmail DOT com> ;; Nicolas Goaziou <n.goaziou AT gmail DOT com>
;; Maintainer: Pedro A. Aranda <paaguti aT gmail d.T com>
;; Keywords: org, text, tex ;; Keywords: org, text, tex
;; This file is part of GNU Emacs. ;; This file is part of GNU Emacs.