Update to Org 9.5.2-13-gdd6486
This commit is contained in:
parent
6636231b2c
commit
6f282b31ad
6 changed files with 10 additions and 10 deletions
|
@ -43,7 +43,7 @@
|
|||
(declare-function org-in-commented-heading-p "org" (&optional no-inheritance))
|
||||
(declare-function org-in-archived-heading-p "org" (&optional no-inheritance))
|
||||
(declare-function outline-previous-heading "outline" ())
|
||||
(defvar org-id-link-to-org-use-id nil) ; Dynamically scoped
|
||||
(defvar org-id-link-to-org-use-id) ; Dynamically scoped
|
||||
|
||||
(defcustom org-babel-tangle-lang-exts
|
||||
'(("emacs-lisp" . "el")
|
||||
|
|
|
@ -115,7 +115,7 @@
|
|||
|
||||
(defvar org-agenda-overriding-header)
|
||||
(defvar org-agenda-search-view-always-boolean)
|
||||
(defvar org-bibtex-description nil) ; dynamically scoped from org.el
|
||||
(defvar org-bibtex-description nil)
|
||||
(defvar org-id-locations)
|
||||
(defvar org-property-end-re)
|
||||
(defvar org-special-properties)
|
||||
|
|
|
@ -99,8 +99,8 @@
|
|||
|
||||
;; Defined somewhere in this file, but used before definition.
|
||||
(defvar org-agenda-buffer-name "*Org Agenda*")
|
||||
(defvar org-agenda-overriding-header nil)
|
||||
(defvar org-agenda-title-append nil)
|
||||
(defvar org-agenda-overriding-header)
|
||||
;; (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
|
||||
;; (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
|
||||
(defvar original-date) ; dynamically scoped, calendar.el does scope this
|
||||
|
@ -2158,7 +2158,7 @@ string that it returns."
|
|||
(org-remap org-agenda-mode-map 'move-end-of-line 'org-agenda-end-of-line)
|
||||
|
||||
(defvar org-agenda-menu) ; defined later in this file.
|
||||
(defvar org-agenda-restrict nil) ; defined later in this file.
|
||||
(defvar org-agenda-restrict nil)
|
||||
(defvar org-agenda-follow-mode nil)
|
||||
(defvar org-agenda-entry-text-mode nil)
|
||||
(defvar org-agenda-clockreport-mode nil)
|
||||
|
@ -7288,7 +7288,7 @@ When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
|
|||
\"timestamp_ia\", compare within each of these type. When TYPE
|
||||
is the empty string, compare all timestamps without respect of
|
||||
their type."
|
||||
(let* ((def (and (not org-agenda-sort-notime-is-late) -1))
|
||||
(let* ((def (if org-agenda-sort-notime-is-late 99999999 -1))
|
||||
(ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
|
||||
(get-text-property 1 'ts-date a))
|
||||
def))
|
||||
|
|
|
@ -2506,7 +2506,7 @@ the currently selected interval size."
|
|||
(when step
|
||||
;; Write many tables, in steps
|
||||
(unless (or block (and ts te))
|
||||
(user-error "Clocktable `:step' can only be used with `:block' or `:tstart, :end'"))
|
||||
(user-error "Clocktable `:step' can only be used with `:block' or `:tstart', `:tend'"))
|
||||
(org-clocktable-steps params)
|
||||
(throw 'exit nil))
|
||||
|
||||
|
|
|
@ -1049,9 +1049,9 @@ ELEMENT is the element at point."
|
|||
(cl-case (org-element-type object)
|
||||
;; Prevent checks in links due to keybinding conflict with
|
||||
;; Flyspell.
|
||||
((code entity export-snippet inline-babel-call
|
||||
inline-src-block line-break latex-fragment link macro
|
||||
statistics-cookie target timestamp verbatim)
|
||||
((citation citation-reference code entity export-snippet inline-babel-call
|
||||
inline-src-block line-break latex-fragment link macro
|
||||
statistics-cookie target timestamp verbatim)
|
||||
nil)
|
||||
(footnote-reference
|
||||
;; Only in inline footnotes, within the definition.
|
||||
|
|
|
@ -11,7 +11,7 @@ Inserted by installing Org mode or when a release is made."
|
|||
(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.5.2-9-g7ba24c"))
|
||||
(let ((org-git-version "release_9.5.2-13-gdd6486"))
|
||||
org-git-version))
|
||||
|
||||
(provide 'org-version)
|
||||
|
|
Loading…
Add table
Reference in a new issue