mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
Update to Org 9.8.7
This commit is contained in:
parent
9ab1aa887a
commit
ffad15bf73
|
|
@ -10013,8 +10013,8 @@ entries with a =NEXT= TODO keyword.
|
|||
((org-agenda-max-entries 5)))))
|
||||
#+end_src
|
||||
|
||||
Once you mark one of these five entry as DONE, rebuilding the agenda
|
||||
will again the next five entries again, including the first entry that
|
||||
Once you mark one of these five entries as DONE, rebuilding the agenda
|
||||
will show the next five entries again, including the first entry that
|
||||
was excluded so far.
|
||||
|
||||
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
|
||||
(see [[*Internal archiving]]) are also scanned when producing 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
|
||||
with the same values as ~org-agenda-archives-mode~.
|
||||
|
||||
|
|
@ -14552,11 +14552,13 @@ include:
|
|||
#+vindex: org-latex-tables-booktabs
|
||||
#+vindex: org-latex-tables-centered
|
||||
All three commands are toggles. =:booktabs= brings in modern
|
||||
typesetting enhancements to regular tables. The booktabs package
|
||||
has to be loaded through ~org-latex-packages-alist~. =:center= is
|
||||
for centering the table. =:rmlines= removes all but the very first
|
||||
horizontal line made of ASCII characters from "table.el" tables
|
||||
only.
|
||||
typesetting enhancements to regular tables. The =booktabs= package
|
||||
needs to be loaded through ~org-latex-packages-alist~, unless it is
|
||||
already included by your document class[fn:: For example,
|
||||
[[https://authors.acm.org/proceedings/production-information/preparing-your-article-with-latex][the
|
||||
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= ::
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
% Reference Card for Org Mode
|
||||
\def\orgversionnumber{9.8.6}
|
||||
\def\orgversionnumber{9.8.7}
|
||||
\def\versionyear{2026} % latest update
|
||||
\input emacsver.tex
|
||||
|
||||
|
|
|
|||
|
|
@ -9723,8 +9723,10 @@ the dedicated frame."
|
|||
(pos (marker-position marker)))
|
||||
(with-current-buffer buffer
|
||||
(save-excursion
|
||||
(goto-char pos)
|
||||
(org-tree-to-indirect-buffer arg))))
|
||||
(save-restriction
|
||||
(widen)
|
||||
(goto-char pos)
|
||||
(org-tree-to-indirect-buffer arg)))))
|
||||
(setq org-agenda-last-indirect-buffer org-last-indirect-buffer))
|
||||
|
||||
(defvar org-last-heading-marker (make-marker)
|
||||
|
|
|
|||
|
|
@ -112,7 +112,7 @@
|
|||
|
||||
(defcustom org-feed-alist nil
|
||||
"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:
|
||||
|
||||
name a custom name for this feed
|
||||
|
|
|
|||
|
|
@ -5,13 +5,13 @@
|
|||
(defun org-release ()
|
||||
"The release version of Org.
|
||||
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))
|
||||
;;;###autoload
|
||||
(defun org-git-version ()
|
||||
"The Git version of Org mode.
|
||||
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))
|
||||
|
||||
(provide 'org-version)
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
;; URL: https://orgmode.org
|
||||
;; Package-Requires: ((emacs "28.2"))
|
||||
|
||||
;; Version: 9.8.6
|
||||
;; Version: 9.8.7
|
||||
|
||||
;; This file is part of GNU Emacs.
|
||||
;;
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
;; Author: Carsten Dominik <carsten.dominik 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
|
||||
|
||||
;; This file is part of GNU Emacs.
|
||||
|
|
|
|||
Loading…
Reference in a new issue