org-compat.el 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981
  1. ;;; org-compat.el --- Compatibility Code for Older Emacsen -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2004-2019 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: https://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains code needed for compatibility with older
  23. ;; versions of GNU Emacs and integration with other packages.
  24. ;;; Code:
  25. (require 'cl-lib)
  26. (require 'org-macs)
  27. (declare-function org-agenda-diary-entry "org-agenda")
  28. (declare-function org-agenda-maybe-redo "org-agenda" ())
  29. (declare-function org-agenda-remove-restriction-lock "org-agenda" (&optional noupdate))
  30. (declare-function org-align-tags "org" (&optional all))
  31. (declare-function org-at-heading-p "org" (&optional ignored))
  32. (declare-function org-at-table.el-p "org" ())
  33. (declare-function org-element-at-point "org-element" ())
  34. (declare-function org-element-context "org-element" (&optional element))
  35. (declare-function org-element-lineage "org-element" (blob &optional types with-self))
  36. (declare-function org-element-type "org-element" (element))
  37. (declare-function org-element-property "org-element" (property element))
  38. (declare-function org-end-of-subtree "org" (&optional invisible-ok to-heading))
  39. (declare-function org-get-heading "org" (&optional no-tags no-todo no-priority no-comment))
  40. (declare-function org-get-tags "org" (&optional pos local))
  41. (declare-function org-link-display-format "org" (s))
  42. (declare-function org-link-set-parameters "org" (type &rest rest))
  43. (declare-function org-log-into-drawer "org" ())
  44. (declare-function org-make-tag-string "org" (tags))
  45. (declare-function org-reduced-level "org" (l))
  46. (declare-function org-show-context "org" (&optional key))
  47. (declare-function org-table-end "org-table" (&optional table-type))
  48. (declare-function outline-next-heading "outline" ())
  49. (declare-function speedbar-line-directory "speedbar" (&optional depth))
  50. (declare-function table--at-cell-p "table" (position &optional object at-column))
  51. (defvar calendar-mode-map)
  52. (defvar org-complex-heading-regexp)
  53. (defvar org-agenda-diary-file)
  54. (defvar org-agenda-overriding-restriction)
  55. (defvar org-agenda-restriction-lock-overlay)
  56. (defvar org-table-any-border-regexp)
  57. (defvar org-table-dataline-regexp)
  58. (defvar org-table-tab-recognizes-table.el)
  59. (defvar org-table1-hline-regexp)
  60. ;;; Emacs < 27.1 compatibility
  61. (unless (fboundp 'pcomplete-uniquify-list)
  62. ;; The misspelled variant was made obsolete in Emacs 27.1
  63. (defalias 'pcomplete-uniquify-list 'pcomplete-uniqify-list))
  64. (defun org-current-time-as-list ()
  65. "Compatibility wrapper for `current-time'.
  66. As of Emacs 27.1, `current-time' callers should not assume a list
  67. return value."
  68. (or (ignore-errors (encode-time nil 'list))
  69. (current-time)))
  70. ;;; Emacs < 26.1 compatibility
  71. (if (fboundp 'line-number-display-width)
  72. (defalias 'org-line-number-display-width 'line-number-display-width)
  73. (defun org-line-number-display-width (&rest _) 0))
  74. (if (fboundp 'buffer-hash)
  75. (defalias 'org-buffer-hash 'buffer-hash)
  76. (defun org-buffer-hash () (md5 (current-buffer))))
  77. (unless (fboundp 'file-attribute-modification-time)
  78. (defsubst file-attribute-modification-time (attributes)
  79. "The modification time in ATTRIBUTES returned by `file-attributes'.
  80. This is the time of the last change to the file's contents, and
  81. is a list of integers (HIGH LOW USEC PSEC) in the same style
  82. as (current-time)."
  83. (nth 5 attributes)))
  84. (unless (fboundp 'file-attribute-size)
  85. (defsubst file-attribute-size (attributes)
  86. "The size (in bytes) in ATTRIBUTES returned by `file-attributes'.
  87. This is a floating point number if the size is too large for an integer."
  88. (nth 7 attributes)))
  89. ;;; Emacs < 25.1 compatibility
  90. (when (< emacs-major-version 25)
  91. (defalias 'outline-hide-entry 'hide-entry)
  92. (defalias 'outline-hide-sublevels 'hide-sublevels)
  93. (defalias 'outline-hide-subtree 'hide-subtree)
  94. (defalias 'outline-show-branches 'show-branches)
  95. (defalias 'outline-show-children 'show-children)
  96. (defalias 'outline-show-entry 'show-entry)
  97. (defalias 'outline-show-subtree 'show-subtree)
  98. (defalias 'xref-find-definitions 'find-tag)
  99. (defalias 'format-message 'format)
  100. (defalias 'gui-get-selection 'x-get-selection))
  101. (unless (fboundp 'directory-name-p)
  102. (defun directory-name-p (name)
  103. "Return non-nil if NAME ends with a directory separator character."
  104. (let ((len (length name))
  105. (lastc ?.))
  106. (if (> len 0)
  107. (setq lastc (aref name (1- len))))
  108. (or (= lastc ?/)
  109. (and (memq system-type '(windows-nt ms-dos))
  110. (= lastc ?\\))))))
  111. ;; `string-collate-lessp' is new in Emacs 25.
  112. (if (fboundp 'string-collate-lessp)
  113. (defalias 'org-string-collate-lessp
  114. 'string-collate-lessp)
  115. (defun org-string-collate-lessp (s1 s2 &rest _)
  116. "Return non-nil if STRING1 is less than STRING2 in lexicographic order.
  117. Case is significant."
  118. (string< s1 s2)))
  119. ;;; Obsolete aliases (remove them after the next major release).
  120. ;;;; XEmacs compatibility, now removed.
  121. (define-obsolete-function-alias 'org-activate-mark 'activate-mark "Org 9.0")
  122. (define-obsolete-function-alias 'org-add-hook 'add-hook "Org 9.0")
  123. (define-obsolete-function-alias 'org-bound-and-true-p 'bound-and-true-p "Org 9.0")
  124. (define-obsolete-function-alias 'org-decompose-region 'decompose-region "Org 9.0")
  125. (define-obsolete-function-alias 'org-defvaralias 'defvaralias "Org 9.0")
  126. (define-obsolete-function-alias 'org-detach-overlay 'delete-overlay "Org 9.0")
  127. (define-obsolete-function-alias 'org-file-equal-p 'file-equal-p "Org 9.0")
  128. (define-obsolete-function-alias 'org-float-time 'float-time "Org 9.0")
  129. (define-obsolete-function-alias 'org-indent-line-to 'indent-line-to "Org 9.0")
  130. (define-obsolete-function-alias 'org-indent-to-column 'indent-to-column "Org 9.0")
  131. (define-obsolete-function-alias 'org-looking-at-p 'looking-at-p "Org 9.0")
  132. (define-obsolete-function-alias 'org-looking-back 'looking-back "Org 9.0")
  133. (define-obsolete-function-alias 'org-match-string-no-properties 'match-string-no-properties "Org 9.0")
  134. (define-obsolete-function-alias 'org-propertize 'propertize "Org 9.0")
  135. (define-obsolete-function-alias 'org-select-frame-set-input-focus 'select-frame-set-input-focus "Org 9.0")
  136. (define-obsolete-function-alias 'org-file-remote-p 'file-remote-p "Org 9.2")
  137. (defmacro org-re (s)
  138. "Replace posix classes in regular expression S."
  139. (declare (debug (form))
  140. (obsolete "you can safely remove it." "Org 9.0"))
  141. s)
  142. ;;;; Functions from cl-lib that Org used to have its own implementation of.
  143. (define-obsolete-function-alias 'org-count 'cl-count "Org 9.0")
  144. (define-obsolete-function-alias 'org-every 'cl-every "Org 9.0")
  145. (define-obsolete-function-alias 'org-find-if 'cl-find-if "Org 9.0")
  146. (define-obsolete-function-alias 'org-reduce 'cl-reduce "Org 9.0")
  147. (define-obsolete-function-alias 'org-remove-if 'cl-remove-if "Org 9.0")
  148. (define-obsolete-function-alias 'org-remove-if-not 'cl-remove-if-not "Org 9.0")
  149. (define-obsolete-function-alias 'org-some 'cl-some "Org 9.0")
  150. (define-obsolete-function-alias 'org-floor* 'cl-floor "Org 9.0")
  151. (defun org-sublist (list start end)
  152. "Return a section of LIST, from START to END.
  153. Counting starts at 1."
  154. (cl-subseq list (1- start) end))
  155. (make-obsolete 'org-sublist
  156. "use cl-subseq (note the 0-based counting)."
  157. "Org 9.0")
  158. ;;;; Functions available since Emacs 24.3
  159. (define-obsolete-function-alias 'org-buffer-narrowed-p 'buffer-narrowed-p "Org 9.0")
  160. (define-obsolete-function-alias 'org-called-interactively-p 'called-interactively-p "Org 9.0")
  161. (define-obsolete-function-alias 'org-char-to-string 'char-to-string "Org 9.0")
  162. (define-obsolete-function-alias 'org-delete-directory 'delete-directory "Org 9.0")
  163. (define-obsolete-function-alias 'org-format-seconds 'format-seconds "Org 9.0")
  164. (define-obsolete-function-alias 'org-link-escape-browser 'url-encode-url "Org 9.0")
  165. (define-obsolete-function-alias 'org-no-warnings 'with-no-warnings "Org 9.0")
  166. (define-obsolete-function-alias 'org-number-sequence 'number-sequence "Org 9.0")
  167. (define-obsolete-function-alias 'org-pop-to-buffer-same-window 'pop-to-buffer-same-window "Org 9.0")
  168. (define-obsolete-function-alias 'org-string-match-p 'string-match-p "Org 9.0")
  169. ;;;; Functions and variables from previous releases now obsolete.
  170. (define-obsolete-function-alias 'org-element-remove-indentation
  171. 'org-remove-indentation "Org 9.0")
  172. (define-obsolete-variable-alias 'org-latex-create-formula-image-program
  173. 'org-preview-latex-default-process "Org 9.0")
  174. (define-obsolete-variable-alias 'org-latex-preview-ltxpng-directory
  175. 'org-preview-latex-image-directory "Org 9.0")
  176. (define-obsolete-function-alias 'org-table-p 'org-at-table-p "Org 9.0")
  177. (define-obsolete-function-alias 'org-on-heading-p 'org-at-heading-p "Org 9.0")
  178. (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp "Org 8.3")
  179. (define-obsolete-function-alias 'org-image-file-name-regexp
  180. 'image-file-name-regexp "Org 9.0")
  181. (define-obsolete-function-alias 'org-completing-read-no-i
  182. 'completing-read "Org 9.0")
  183. (define-obsolete-function-alias 'org-icompleting-read
  184. 'completing-read "Org 9.0")
  185. (define-obsolete-function-alias 'org-iread-file-name 'read-file-name "Org 9.0")
  186. (define-obsolete-function-alias 'org-days-to-time
  187. 'org-time-stamp-to-now "Org 8.2")
  188. (define-obsolete-variable-alias 'org-agenda-ignore-drawer-properties
  189. 'org-agenda-ignore-properties "Org 9.0")
  190. (define-obsolete-function-alias 'org-preview-latex-fragment
  191. 'org-toggle-latex-fragment "Org 8.3")
  192. (define-obsolete-function-alias 'org-export-get-genealogy
  193. 'org-element-lineage "Org 9.0")
  194. (define-obsolete-variable-alias 'org-latex-with-hyperref
  195. 'org-latex-hyperref-template "Org 9.0")
  196. (define-obsolete-variable-alias 'hfy-optimisations 'hfy-optimizations "Org 9.0")
  197. (define-obsolete-variable-alias 'org-export-htmlized-org-css-url
  198. 'org-org-htmlized-css-url "Org 8.2")
  199. (define-obsolete-function-alias 'org-list-parse-list 'org-list-to-lisp "Org 9.0")
  200. (define-obsolete-function-alias 'org-agenda-todayp
  201. 'org-agenda-today-p "Org 9.0")
  202. (define-obsolete-function-alias 'org-babel-examplize-region
  203. 'org-babel-examplify-region "Org 9.0")
  204. (define-obsolete-variable-alias 'org-babel-capitalize-example-region-markers
  205. 'org-babel-uppercase-example-markers "Org 9.1")
  206. (define-obsolete-function-alias 'org-babel-trim 'org-trim "Org 9.0")
  207. (define-obsolete-variable-alias 'org-html-style 'org-html-head "24.4")
  208. (define-obsolete-function-alias 'org-insert-columns-dblock
  209. 'org-columns-insert-dblock "Org 9.0")
  210. (define-obsolete-variable-alias 'org-export-babel-evaluate
  211. 'org-export-use-babel "Org 9.1")
  212. (define-obsolete-function-alias 'org-activate-bracket-links
  213. 'org-activate-links "Org 9.0")
  214. (define-obsolete-function-alias 'org-activate-plain-links 'ignore "Org 9.0")
  215. (define-obsolete-function-alias 'org-activate-angle-links 'ignore "Org 9.0")
  216. (define-obsolete-function-alias 'org-remove-double-quotes 'org-strip-quotes "Org 9.0")
  217. (define-obsolete-function-alias 'org-get-indentation
  218. 'current-indentation "Org 9.2")
  219. (define-obsolete-function-alias 'org-capture-member 'org-capture-get "Org 9.2")
  220. (define-obsolete-function-alias 'org-remove-from-invisibility-spec
  221. 'remove-from-invisibility-spec "Org 9.2")
  222. (define-obsolete-variable-alias 'org-effort-durations 'org-duration-units
  223. "Org 9.2")
  224. (define-obsolete-function-alias 'org-toggle-latex-fragment 'org-latex-preview
  225. "Org 9.3")
  226. (define-obsolete-function-alias 'org-remove-latex-fragment-image-overlays
  227. 'org-clear-latex-preview "Org 9.3")
  228. (defun org-in-fixed-width-region-p ()
  229. "Non-nil if point in a fixed-width region."
  230. (save-match-data
  231. (eq 'fixed-width (org-element-type (org-element-at-point)))))
  232. (make-obsolete 'org-in-fixed-width-region-p
  233. "use `org-element' library"
  234. "Org 9.0")
  235. (defun org-compatible-face (inherits specs)
  236. "Make a compatible face specification.
  237. If INHERITS is an existing face and if the Emacs version supports
  238. it, just inherit the face. If INHERITS is not given and SPECS
  239. is, use SPECS to define the face."
  240. (declare (indent 1))
  241. (if (facep inherits)
  242. (list (list t :inherit inherits))
  243. specs))
  244. (make-obsolete 'org-compatible-face "you can remove it." "Org 9.0")
  245. (defun org-add-link-type (type &optional follow export)
  246. "Add a new TYPE link.
  247. FOLLOW and EXPORT are two functions.
  248. FOLLOW should take the link path as the single argument and do whatever
  249. is necessary to follow the link, for example find a file or display
  250. a mail message.
  251. EXPORT should format the link path for export to one of the export formats.
  252. It should be a function accepting three arguments:
  253. path the path of the link, the text after the prefix (like \"http:\")
  254. desc the description of the link, if any
  255. format the export format, a symbol like `html' or `latex' or `ascii'.
  256. The function may use the FORMAT information to return different values
  257. depending on the format. The return value will be put literally into
  258. the exported file. If the return value is nil, this means Org should
  259. do what it normally does with links which do not have EXPORT defined.
  260. Org mode has a built-in default for exporting links. If you are happy with
  261. this default, there is no need to define an export function for the link
  262. type. For a simple example of an export function, see `org-bbdb.el'.
  263. If TYPE already exists, update it with the arguments.
  264. See `org-link-parameters' for documentation on the other parameters."
  265. (org-link-set-parameters type :follow follow :export export)
  266. (message "Created %s link." type))
  267. (make-obsolete 'org-add-link-type "use `org-link-set-parameters' instead." "Org 9.0")
  268. ;;;; Functions unused in Org core.
  269. (defun org-table-recognize-table.el ()
  270. "If there is a table.el table nearby, recognize it and move into it."
  271. (when (and org-table-tab-recognizes-table.el (org-at-table.el-p))
  272. (beginning-of-line)
  273. (unless (or (looking-at org-table-dataline-regexp)
  274. (not (looking-at org-table1-hline-regexp)))
  275. (forward-line)
  276. (when (looking-at org-table-any-border-regexp)
  277. (forward-line -2)))
  278. (if (re-search-forward "|" (org-table-end t) t)
  279. (progn
  280. (require 'table)
  281. (if (table--at-cell-p (point)) t
  282. (message "recognizing table.el table...")
  283. (table-recognize-table)
  284. (message "recognizing table.el table...done")))
  285. (error "This should not happen"))))
  286. ;; Not used since commit 6d1e3082, Feb 2010.
  287. (make-obsolete 'org-table-recognize-table.el
  288. "please notify Org mailing list if you use this function."
  289. "Org 9.0")
  290. (defmacro org-preserve-lc (&rest body)
  291. (declare (debug (body))
  292. (obsolete "please notify Org mailing list if you use this function."
  293. "Org 9.2"))
  294. (org-with-gensyms (line col)
  295. `(let ((,line (org-current-line))
  296. (,col (current-column)))
  297. (unwind-protect
  298. (progn ,@body)
  299. (org-goto-line ,line)
  300. (org-move-to-column ,col)))))
  301. (defun org-version-check (version &rest _)
  302. "Non-nil if VERSION is lower (older) than `emacs-version'."
  303. (declare (obsolete "use `version<' or `fboundp' instead."
  304. "Org 9.2"))
  305. (version< version emacs-version))
  306. (defun org-remove-angle-brackets (s)
  307. (org-unbracket-string "<" ">" s))
  308. (make-obsolete 'org-remove-angle-brackets 'org-unbracket-string "Org 9.0")
  309. (defcustom org-publish-sitemap-file-entry-format "%t"
  310. "Format string for site-map file entry.
  311. You could use brackets to delimit on what part the link will be.
  312. %t is the title.
  313. %a is the author.
  314. %d is the date formatted using `org-publish-sitemap-date-format'."
  315. :group 'org-export-publish
  316. :type 'string)
  317. (make-obsolete-variable
  318. 'org-publish-sitemap-file-entry-format
  319. "set `:sitemap-format-entry' in `org-publish-project-alist' instead."
  320. "Org 9.1")
  321. (defvar org-agenda-skip-regexp)
  322. (defun org-agenda-skip-entry-when-regexp-matches ()
  323. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  324. If yes, it returns the end position of this entry, causing agenda commands
  325. to skip the entry but continuing the search in the subtree. This is a
  326. function that can be put into `org-agenda-skip-function' for the duration
  327. of a command."
  328. (declare (obsolete "use `org-agenda-skip-if' instead." "Org 9.1"))
  329. (let ((end (save-excursion (org-end-of-subtree t)))
  330. skip)
  331. (save-excursion
  332. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  333. (and skip end)))
  334. (defun org-agenda-skip-subtree-when-regexp-matches ()
  335. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  336. If yes, it returns the end position of this tree, causing agenda commands
  337. to skip this subtree. This is a function that can be put into
  338. `org-agenda-skip-function' for the duration of a command."
  339. (declare (obsolete "use `org-agenda-skip-if' instead." "Org 9.1"))
  340. (let ((end (save-excursion (org-end-of-subtree t)))
  341. skip)
  342. (save-excursion
  343. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  344. (and skip end)))
  345. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  346. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  347. If yes, it returns the end position of the current entry (NOT the tree),
  348. causing agenda commands to skip the entry but continuing the search in
  349. the subtree. This is a function that can be put into
  350. `org-agenda-skip-function' for the duration of a command. An important
  351. use of this function is for the stuck project list."
  352. (declare (obsolete "use `org-agenda-skip-if' instead." "Org 9.1"))
  353. (let ((end (save-excursion (org-end-of-subtree t)))
  354. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  355. skip)
  356. (save-excursion
  357. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  358. (and skip entry-end)))
  359. (define-obsolete-function-alias 'org-minutes-to-clocksum-string
  360. 'org-duration-from-minutes "Org 9.1")
  361. (define-obsolete-function-alias 'org-hh:mm-string-to-minutes
  362. 'org-duration-to-minutes "Org 9.1")
  363. (define-obsolete-function-alias 'org-duration-string-to-minutes
  364. 'org-duration-to-minutes "Org 9.1")
  365. (make-obsolete-variable 'org-time-clocksum-format
  366. "set `org-duration-format' instead." "Org 9.1")
  367. (make-obsolete-variable 'org-time-clocksum-use-fractional
  368. "set `org-duration-format' instead." "Org 9.1")
  369. (make-obsolete-variable 'org-time-clocksum-fractional-format
  370. "set `org-duration-format' instead." "Org 9.1")
  371. (make-obsolete-variable 'org-time-clocksum-use-effort-durations
  372. "set `org-duration-units' instead." "Org 9.1")
  373. (define-obsolete-function-alias 'org-babel-number-p
  374. 'org-babel--string-to-number "Org 9.0")
  375. (define-obsolete-variable-alias 'org-usenet-links-prefer-google
  376. 'org-gnus-prefer-web-links "Org 9.1")
  377. (define-obsolete-variable-alias 'org-texinfo-def-table-markup
  378. 'org-texinfo-table-default-markup "Org 9.1")
  379. (define-obsolete-variable-alias 'org-agenda-overriding-columns-format
  380. 'org-overriding-columns-format "Org 9.2.2")
  381. ;; The function was made obsolete by commit 65399674d5 of 2013-02-22.
  382. ;; This make-obsolete call was added 2016-09-01.
  383. (make-obsolete 'org-capture-import-remember-templates
  384. "use the `org-capture-templates' variable instead."
  385. "Org 9.0")
  386. (defun org-show-block-all ()
  387. "Unfold all blocks in the current buffer."
  388. (interactive)
  389. (remove-overlays nil nil 'invisible 'org-hide-block))
  390. (make-obsolete 'org-show-block-all
  391. "use `org-show-all' instead."
  392. "Org 9.2")
  393. (define-obsolete-function-alias 'org-get-tags-at 'org-get-tags "Org 9.2")
  394. (defun org-get-local-tags ()
  395. "Get a list of tags defined in the current headline."
  396. (declare (obsolete "use `org-get-tags' instead." "Org 9.2"))
  397. (org-get-tags nil 'local))
  398. (defun org-get-local-tags-at (&optional pos)
  399. "Get a list of tags defined in the current headline."
  400. (declare (obsolete "use `org-get-tags' instead." "Org 9.2"))
  401. (org-get-tags pos 'local))
  402. (defun org-get-tags-string ()
  403. "Get the TAGS string in the current headline."
  404. (declare (obsolete "use `org-make-tag-string' instead." "Org 9.2"))
  405. (org-make-tag-string (org-get-tags nil t)))
  406. (define-obsolete-function-alias 'org-set-tags-to 'org-set-tags "Org 9.2")
  407. (defun org-align-all-tags ()
  408. "Align the tags in all headings."
  409. (declare (obsolete "use `org-align-tags' instead." "Org 9.2"))
  410. (org-align-tags t))
  411. (defmacro org-with-silent-modifications (&rest body)
  412. (declare (obsolete "use `with-silent-modifications' instead." "Org 9.2")
  413. (debug (body)))
  414. `(with-silent-modifications ,@body))
  415. (define-obsolete-function-alias 'org-babel-strip-quotes
  416. 'org-strip-quotes "Org 9.2")
  417. ;;;; Obsolete link types
  418. (eval-after-load 'org
  419. '(progn
  420. (org-link-set-parameters "file+emacs") ;since Org 9.0
  421. (org-link-set-parameters "file+sys"))) ;since Org 9.0
  422. ;;; Miscellaneous functions
  423. (defun org-get-x-clipboard (value)
  424. "Get the value of the X or Windows clipboard."
  425. (cond ((and (eq window-system 'x)
  426. (fboundp 'gui-get-selection)) ;Silence byte-compiler.
  427. (org-no-properties
  428. (ignore-errors
  429. (or (gui-get-selection value 'UTF8_STRING)
  430. (gui-get-selection value 'COMPOUND_TEXT)
  431. (gui-get-selection value 'STRING)
  432. (gui-get-selection value 'TEXT)))))
  433. ((and (eq window-system 'w32) (fboundp 'w32-get-clipboard-data))
  434. (w32-get-clipboard-data))))
  435. ;; `set-transient-map' is only in Emacs >= 24.4
  436. (defalias 'org-set-transient-map
  437. (if (fboundp 'set-transient-map)
  438. 'set-transient-map
  439. 'set-temporary-overlay-map))
  440. ;;; Region compatibility
  441. (defvar org-ignore-region nil
  442. "Non-nil means temporarily disable the active region.")
  443. (defun org-region-active-p ()
  444. "Non-nil when the region active.
  445. Unlike to `use-region-p', this function also checks
  446. `org-ignore-region'."
  447. (and (not org-ignore-region) (use-region-p)))
  448. (defun org-cursor-to-region-beginning ()
  449. (when (and (org-region-active-p)
  450. (> (point) (region-beginning)))
  451. (exchange-point-and-mark)))
  452. ;;; Invisibility compatibility
  453. (defun org-in-invisibility-spec-p (arg)
  454. "Is ARG a member of `buffer-invisibility-spec'?"
  455. (when (consp buffer-invisibility-spec)
  456. (member arg buffer-invisibility-spec)))
  457. (defun org-move-to-column (column &optional force _buffer)
  458. "Move to column COLUMN.
  459. Pass COLUMN and FORCE to `move-to-column'."
  460. (let ((buffer-invisibility-spec
  461. (if (listp buffer-invisibility-spec)
  462. (remove '(org-filtered) buffer-invisibility-spec)
  463. buffer-invisibility-spec)))
  464. (move-to-column column force)))
  465. (defmacro org-find-library-dir (library)
  466. `(file-name-directory (or (locate-library ,library) "")))
  467. (defun org-count-lines (s)
  468. "How many lines in string S?"
  469. (let ((start 0) (n 1))
  470. (while (string-match "\n" s start)
  471. (setq start (match-end 0) n (1+ n)))
  472. (when (and (> (length s) 0) (= (aref s (1- (length s))) ?\n))
  473. (setq n (1- n)))
  474. n))
  475. (defun org-kill-new (string &rest args)
  476. (remove-text-properties 0 (length string) '(line-prefix t wrap-prefix t)
  477. string)
  478. (apply 'kill-new string args))
  479. ;; `font-lock-ensure' is only available from 24.4.50 on
  480. (defalias 'org-font-lock-ensure
  481. (if (fboundp 'font-lock-ensure)
  482. #'font-lock-ensure
  483. (lambda (&optional _beg _end)
  484. (with-no-warnings (font-lock-fontify-buffer)))))
  485. ;; `file-local-name' was added in Emacs 26.1.
  486. (defalias 'org-babel-local-file-name
  487. (if (fboundp 'file-local-name)
  488. 'file-local-name
  489. (lambda (file)
  490. "Return the local name component of FILE."
  491. (or (file-remote-p file 'localname) file))))
  492. ;;;###autoload
  493. (defmacro org-check-version ()
  494. "Try very hard to provide sensible version strings."
  495. (let* ((org-dir (org-find-library-dir "org"))
  496. (org-version.el (concat org-dir "org-version.el"))
  497. (org-fixup.el (concat org-dir "../mk/org-fixup.el")))
  498. (if (require 'org-version org-version.el 'noerror)
  499. '(progn
  500. (autoload 'org-release "org-version.el")
  501. (autoload 'org-git-version "org-version.el"))
  502. (if (require 'org-fixup org-fixup.el 'noerror)
  503. '(org-fixup)
  504. ;; provide fallback definitions and complain
  505. (warn "Could not define org version correctly. Check installation!")
  506. '(progn
  507. (defun org-release () "N/A")
  508. (defun org-git-version () "N/A !!check installation!!"))))))
  509. ;;; Functions for Emacs < 24.4 compatibility
  510. (defun org-define-error (name message)
  511. "Define NAME as a new error signal.
  512. MESSAGE is a string that will be output to the echo area if such
  513. an error is signaled without being caught by a `condition-case'.
  514. Implements `define-error' for older emacsen."
  515. (if (fboundp 'define-error) (define-error name message)
  516. (put name 'error-conditions
  517. (copy-sequence (cons name (get 'error 'error-conditions))))))
  518. (unless (fboundp 'string-suffix-p)
  519. ;; From Emacs subr.el.
  520. (defun string-suffix-p (suffix string &optional ignore-case)
  521. "Return non-nil if SUFFIX is a suffix of STRING.
  522. If IGNORE-CASE is non-nil, the comparison is done without paying
  523. attention to case differences."
  524. (let ((start-pos (- (length string) (length suffix))))
  525. (and (>= start-pos 0)
  526. (eq t (compare-strings suffix nil nil
  527. string start-pos nil ignore-case))))))
  528. (unless (fboundp 'proper-list-p)
  529. ;; `proper-list-p' was added in Emacs 27.1. The function below is
  530. ;; taken from Emacs subr.el 200195e824b^.
  531. (defun proper-list-p (object)
  532. "Return OBJECT's length if it is a proper list, nil otherwise.
  533. A proper list is neither circular nor dotted (i.e., its last cdr
  534. is nil)."
  535. (and (listp object) (ignore-errors (length object)))))
  536. ;;; Integration with and fixes for other packages
  537. (defgroup org-imenu-and-speedbar nil
  538. "Options concerning imenu and speedbar in Org mode."
  539. :tag "Org Imenu and Speedbar"
  540. :group 'org-structure)
  541. (defcustom org-imenu-depth 2
  542. "The maximum level for Imenu access to Org headlines.
  543. This also applied for speedbar access."
  544. :group 'org-imenu-and-speedbar
  545. :type 'integer)
  546. ;;;; Imenu
  547. (defvar-local org-imenu-markers nil
  548. "All markers currently used by Imenu.")
  549. (defun org-imenu-get-tree ()
  550. "Produce the index for Imenu."
  551. (dolist (x org-imenu-markers) (move-marker x nil))
  552. (setq org-imenu-markers nil)
  553. (org-with-wide-buffer
  554. (goto-char (point-max))
  555. (let* ((re (concat "^" (org-get-limited-outline-regexp)))
  556. (subs (make-vector (1+ org-imenu-depth) nil))
  557. (last-level 0))
  558. (while (re-search-backward re nil t)
  559. (let ((level (org-reduced-level (funcall outline-level)))
  560. (headline (org-no-properties
  561. (org-link-display-format (org-get-heading t t t t)))))
  562. (when (and (<= level org-imenu-depth) (org-string-nw-p headline))
  563. (let* ((m (point-marker))
  564. (item (propertize headline 'org-imenu-marker m 'org-imenu t)))
  565. (push m org-imenu-markers)
  566. (if (>= level last-level)
  567. (push (cons item m) (aref subs level))
  568. (push (cons item
  569. (cl-mapcan #'identity (cl-subseq subs (1+ level))))
  570. (aref subs level))
  571. (cl-loop for i from (1+ level) to org-imenu-depth
  572. do (aset subs i nil)))
  573. (setq last-level level)))))
  574. (aref subs 1))))
  575. (eval-after-load "imenu"
  576. '(progn
  577. (add-hook 'imenu-after-jump-hook
  578. (lambda ()
  579. (when (derived-mode-p 'org-mode)
  580. (org-show-context 'org-goto))))
  581. (add-hook 'org-mode-hook
  582. (lambda ()
  583. (setq imenu-create-index-function 'org-imenu-get-tree)))))
  584. ;;;; Speedbar
  585. (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
  586. "Overlay marking the agenda restriction line in speedbar.")
  587. (overlay-put org-speedbar-restriction-lock-overlay
  588. 'face 'org-agenda-restriction-lock)
  589. (overlay-put org-speedbar-restriction-lock-overlay
  590. 'help-echo "Agendas are currently limited to this item.")
  591. (delete-overlay org-speedbar-restriction-lock-overlay)
  592. (defun org-speedbar-set-agenda-restriction ()
  593. "Restrict future agenda commands to the location at point in speedbar.
  594. If there is already a restriction lock at the location, remove it.
  595. To get rid of the restriction, use `\\[org-agenda-remove-restriction-lock]'."
  596. (interactive)
  597. (require 'org-agenda)
  598. (let (p m tp np dir txt)
  599. (cond
  600. ((setq p (text-property-any (point-at-bol) (point-at-eol)
  601. 'org-imenu t))
  602. (setq m (get-text-property p 'org-imenu-marker))
  603. (with-current-buffer (marker-buffer m)
  604. (goto-char m)
  605. (if (and org-agenda-overriding-restriction
  606. (member org-agenda-restriction-lock-overlay
  607. (overlays-at (point))))
  608. (org-agenda-remove-restriction-lock 'noupdate)
  609. (org-agenda-set-restriction-lock 'subtree))))
  610. ((setq p (text-property-any (point-at-bol) (point-at-eol)
  611. 'speedbar-function 'speedbar-find-file))
  612. (setq tp (previous-single-property-change
  613. (1+ p) 'speedbar-function)
  614. np (next-single-property-change
  615. tp 'speedbar-function)
  616. dir (speedbar-line-directory)
  617. txt (buffer-substring-no-properties (or tp (point-min))
  618. (or np (point-max))))
  619. (with-current-buffer (find-file-noselect
  620. (let ((default-directory dir))
  621. (expand-file-name txt)))
  622. (unless (derived-mode-p 'org-mode)
  623. (user-error "Cannot restrict to non-Org mode file"))
  624. (org-agenda-set-restriction-lock 'file)))
  625. (t (user-error "Don't know how to restrict Org mode agenda")))
  626. (move-overlay org-speedbar-restriction-lock-overlay
  627. (point-at-bol) (point-at-eol))
  628. (setq current-prefix-arg nil)
  629. (org-agenda-maybe-redo)))
  630. (defvar speedbar-file-key-map)
  631. (declare-function speedbar-add-supported-extension "speedbar" (extension))
  632. (eval-after-load "speedbar"
  633. '(progn
  634. (speedbar-add-supported-extension ".org")
  635. (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
  636. (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
  637. (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
  638. (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  639. (add-hook 'speedbar-visiting-tag-hook
  640. (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
  641. ;;;; Add Log
  642. (defun org-add-log-current-headline ()
  643. "Return current headline or nil.
  644. This function ignores inlinetasks. It is meant to be used as
  645. `add-log-current-defun-function' value."
  646. (org-with-limited-levels (org-get-heading t t t t)))
  647. ;;;; Flyspell
  648. (defun org--flyspell-object-check-p (element)
  649. "Non-nil when Flyspell can check object at point.
  650. ELEMENT is the element at point."
  651. (let ((object (save-excursion
  652. (when (looking-at-p "\\>") (backward-char))
  653. (org-element-context element))))
  654. (cl-case (org-element-type object)
  655. ;; Prevent checks in links due to keybinding conflict with
  656. ;; Flyspell.
  657. ((code entity export-snippet inline-babel-call
  658. inline-src-block line-break latex-fragment link macro
  659. statistics-cookie target timestamp verbatim)
  660. nil)
  661. (footnote-reference
  662. ;; Only in inline footnotes, within the definition.
  663. (and (eq (org-element-property :type object) 'inline)
  664. (< (save-excursion
  665. (goto-char (org-element-property :begin object))
  666. (search-forward ":" nil t 2))
  667. (point))))
  668. (otherwise t))))
  669. (defun org-mode-flyspell-verify ()
  670. "Function used for `flyspell-generic-check-word-predicate'."
  671. (if (org-at-heading-p)
  672. ;; At a headline or an inlinetask, check title only. This is
  673. ;; faster than relying on `org-element-at-point'.
  674. (and (save-excursion (beginning-of-line)
  675. (and (let ((case-fold-search t))
  676. (not (looking-at-p "\\*+ END[ \t]*$")))
  677. (let ((case-fold-search nil))
  678. (looking-at org-complex-heading-regexp))))
  679. (match-beginning 4)
  680. (>= (point) (match-beginning 4))
  681. (or (not (match-beginning 5))
  682. (< (point) (match-beginning 5))))
  683. (let* ((element (org-element-at-point))
  684. (post-affiliated (org-element-property :post-affiliated element)))
  685. (cond
  686. ;; Ignore checks in all affiliated keywords but captions.
  687. ((< (point) post-affiliated)
  688. (and (save-excursion
  689. (beginning-of-line)
  690. (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
  691. (> (point) (match-end 0))
  692. (org--flyspell-object-check-p element)))
  693. ;; Ignore checks in LOGBOOK (or equivalent) drawer.
  694. ((let ((log (org-log-into-drawer)))
  695. (and log
  696. (let ((drawer (org-element-lineage element '(drawer))))
  697. (and drawer
  698. (eq (compare-strings
  699. log nil nil
  700. (org-element-property :drawer-name drawer) nil nil t)
  701. t)))))
  702. nil)
  703. (t
  704. (cl-case (org-element-type element)
  705. ((comment quote-section) t)
  706. (comment-block
  707. ;; Allow checks between block markers, not on them.
  708. (and (> (line-beginning-position) post-affiliated)
  709. (save-excursion
  710. (end-of-line)
  711. (skip-chars-forward " \r\t\n")
  712. (< (point) (org-element-property :end element)))))
  713. ;; Arbitrary list of keywords where checks are meaningful.
  714. ;; Make sure point is on the value part of the element.
  715. (keyword
  716. (and (member (org-element-property :key element)
  717. '("DESCRIPTION" "TITLE"))
  718. (save-excursion
  719. (search-backward ":" (line-beginning-position) t))))
  720. ;; Check is globally allowed in paragraphs verse blocks and
  721. ;; table rows (after affiliated keywords) but some objects
  722. ;; must not be affected.
  723. ((paragraph table-row verse-block)
  724. (let ((cbeg (org-element-property :contents-begin element))
  725. (cend (org-element-property :contents-end element)))
  726. (and cbeg (>= (point) cbeg) (< (point) cend)
  727. (org--flyspell-object-check-p element))))))))))
  728. (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
  729. (defun org-remove-flyspell-overlays-in (beg end)
  730. "Remove flyspell overlays in region."
  731. (and (bound-and-true-p flyspell-mode)
  732. (fboundp 'flyspell-delete-region-overlays)
  733. (flyspell-delete-region-overlays beg end)))
  734. (defvar flyspell-delayed-commands)
  735. (eval-after-load "flyspell"
  736. '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
  737. ;;;; Bookmark
  738. (defun org-bookmark-jump-unhide ()
  739. "Unhide the current position, to show the bookmark location."
  740. (and (derived-mode-p 'org-mode)
  741. (or (org-invisible-p)
  742. (save-excursion (goto-char (max (point-min) (1- (point))))
  743. (org-invisible-p)))
  744. (org-show-context 'bookmark-jump)))
  745. ;; Make `bookmark-jump' shows the jump location if it was hidden.
  746. (eval-after-load "bookmark"
  747. '(if (boundp 'bookmark-after-jump-hook)
  748. ;; We can use the hook
  749. (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
  750. ;; Hook not available, use advice
  751. (defadvice bookmark-jump (after org-make-visible activate)
  752. "Make the position visible."
  753. (org-bookmark-jump-unhide))))
  754. ;;;; Calendar
  755. (defcustom org-calendar-to-agenda-key 'default
  756. "Key to be installed in `calendar-mode-map' for switching to the agenda.
  757. The command `org-calendar-goto-agenda' will be bound to this key.
  758. When set to `default', bind the function to `c', but only if it is
  759. available in the Calendar keymap. This is the default choice because
  760. `c' can then be used to switch back and forth between agenda and calendar.
  761. When nil, `org-calendar-goto-agenda' is not bound to any key."
  762. :group 'org-agenda
  763. :type '(choice
  764. (const :tag "Bind to `c' if available" default)
  765. (key-sequence :tag "Other binding")
  766. (const :tag "No binding" nil))
  767. :safe (lambda (v) (or (symbolp v) (stringp v)))
  768. :package-version '(Org . "9.2"))
  769. (defcustom org-calendar-insert-diary-entry-key [?i]
  770. "The key to be installed in `calendar-mode-map' for adding diary entries.
  771. This option is irrelevant until `org-agenda-diary-file' has been configured
  772. to point to an Org file. When that is the case, the command
  773. `org-agenda-diary-entry' will be bound to the key given here, by default
  774. `i'. In the calendar, `i' normally adds entries to `diary-file'. So
  775. if you want to continue doing this, you need to change this to a different
  776. key."
  777. :group 'org-agenda
  778. :type 'sexp)
  779. (defun org--setup-calendar-bindings ()
  780. "Bind Org functions in Calendar keymap."
  781. (pcase org-calendar-to-agenda-key
  782. (`nil nil)
  783. ((and key (pred stringp))
  784. (local-set-key (kbd key) #'org-calendar-goto-agenda))
  785. ((guard (not (lookup-key calendar-mode-map "c")))
  786. (local-set-key "c" #'org-calendar-goto-agenda))
  787. (_ nil))
  788. (unless (eq org-agenda-diary-file 'diary-file)
  789. (local-set-key org-calendar-insert-diary-entry-key
  790. #'org-agenda-diary-entry)))
  791. (eval-after-load "calendar"
  792. '(add-hook 'calendar-mode-hook #'org--setup-calendar-bindings))
  793. ;;;; Saveplace
  794. ;; Make sure saveplace shows the location if it was hidden
  795. (eval-after-load "saveplace"
  796. '(defadvice save-place-find-file-hook (after org-make-visible activate)
  797. "Make the position visible."
  798. (org-bookmark-jump-unhide)))
  799. ;;;; Ecb
  800. ;; Make sure ecb shows the location if it was hidden
  801. (eval-after-load "ecb"
  802. '(defadvice ecb-method-clicked (after esf/org-show-context activate)
  803. "Make hierarchy visible when jumping into location from ECB tree buffer."
  804. (when (derived-mode-p 'org-mode)
  805. (org-show-context))))
  806. ;;;; Simple
  807. (defun org-mark-jump-unhide ()
  808. "Make the point visible with `org-show-context' after jumping to the mark."
  809. (when (and (derived-mode-p 'org-mode)
  810. (org-invisible-p))
  811. (org-show-context 'mark-goto)))
  812. (eval-after-load "simple"
  813. '(defadvice pop-to-mark-command (after org-make-visible activate)
  814. "Make the point visible with `org-show-context'."
  815. (org-mark-jump-unhide)))
  816. (eval-after-load "simple"
  817. '(defadvice exchange-point-and-mark (after org-make-visible activate)
  818. "Make the point visible with `org-show-context'."
  819. (org-mark-jump-unhide)))
  820. (eval-after-load "simple"
  821. '(defadvice pop-global-mark (after org-make-visible activate)
  822. "Make the point visible with `org-show-context'."
  823. (org-mark-jump-unhide)))
  824. ;;;; Session
  825. ;; Make "session.el" ignore our circular variable.
  826. (defvar session-globals-exclude)
  827. (eval-after-load "session"
  828. '(add-to-list 'session-globals-exclude 'org-mark-ring))
  829. (provide 'org-compat)
  830. ;;; org-compat.el ends here