org-compat.el 36 KB

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