org-compat.el 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. ;;; org-compat.el --- Compatibility Code for Older Emacsen -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2004-2016 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://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 <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains code needed for compatibility with older
  23. ;; versions of GNU Emacs.
  24. ;;; Code:
  25. (require 'cl-lib)
  26. (require 'org-macs)
  27. ;; As of Emacs 25.1, `outline-mode' functions are under the 'outline-'
  28. ;; prefix, `find-tag' is replaced with `xref-find-definition' and
  29. ;; `x-get-selection' with `gui-get-selection'.
  30. (when (< emacs-major-version 25)
  31. (defalias 'outline-hide-entry 'hide-entry)
  32. (defalias 'outline-hide-sublevels 'hide-sublevels)
  33. (defalias 'outline-hide-subtree 'hide-subtree)
  34. (defalias 'outline-show-all 'show-all)
  35. (defalias 'outline-show-branches 'show-branches)
  36. (defalias 'outline-show-children 'show-children)
  37. (defalias 'outline-show-entry 'show-entry)
  38. (defalias 'outline-show-subtree 'show-subtree)
  39. (defalias 'xref-find-definitions 'find-tag)
  40. (defalias 'format-message 'format))
  41. (eval-when-compile
  42. (when (< emacs-major-version 25)
  43. (defalias 'gui-get-selection 'x-get-selection)))
  44. ;;; Obsolete aliases
  45. (define-obsolete-function-alias 'org-activate-mark 'activate-mark)
  46. ;;;; XEmacs compatibility, now removed.
  47. (define-obsolete-function-alias 'org-add-hook 'add-hook "Org 9.0")
  48. (define-obsolete-function-alias 'org-bound-and-true-p 'bound-and-true-p "Org 9.0")
  49. (define-obsolete-function-alias 'org-decompose-region 'decompose-region "Org 9.0")
  50. (define-obsolete-function-alias 'org-defvaralias 'defvaralias "Org 9.0")
  51. (define-obsolete-function-alias 'org-detach-overlay 'delete-overlay "Org 9.0")
  52. (define-obsolete-function-alias 'org-file-equal-p 'file-equal-p "Org 9.0")
  53. (define-obsolete-function-alias 'org-float-time 'float-time "Org 9.0")
  54. (define-obsolete-function-alias 'org-indent-line-to 'indent-line-to "Org 9.0")
  55. (define-obsolete-function-alias 'org-indent-to-column 'indent-to-column "Org 9.0")
  56. (define-obsolete-function-alias 'org-looking-at-p 'looking-at-p "Org 9.0")
  57. (define-obsolete-function-alias 'org-looking-back 'looking-back "Org 9.0")
  58. (define-obsolete-function-alias 'org-match-string-no-properties 'match-string-properties "Org 9.0")
  59. (define-obsolete-function-alias 'org-propertize 'propertize "Org 9.0")
  60. (define-obsolete-function-alias 'org-select-frame-set-input-focus 'select-frame-set-input-focus "Org 9.0")
  61. (defmacro org-re (s)
  62. "Replace posix classes in regular expression."
  63. (declare (debug (form)))
  64. s)
  65. (make-obsolete 'org-re "It is now a no-op. You can safely remove it."
  66. "Org 9.0")
  67. ;;;; Functions from cl-lib that Org used to have its own implementation of.
  68. (define-obsolete-function-alias 'org-count 'cl-count "Org 9.0")
  69. (define-obsolete-function-alias 'org-every 'cl-every "Org 9.0")
  70. (define-obsolete-function-alias 'org-find-if 'cl-find-if "Org 9.0")
  71. (define-obsolete-function-alias 'org-reduce 'cl-reduce "Org 9.0")
  72. (define-obsolete-function-alias 'org-remove-if 'cl-remove-if "Org 9.0")
  73. (define-obsolete-function-alias 'org-remove-if-not 'cl-remove-if-not "Org 9.0")
  74. (define-obsolete-function-alias 'org-some 'cl-some "Org 9.0")
  75. (define-obsolete-function-alias 'org-floor* 'cl-floor "Org 9.0")
  76. ;;;; Functions available since Emacs 24.3
  77. (define-obsolete-function-alias 'org-buffer-narrowed-p 'buffer-narrowed-p "Org 9.0")
  78. (define-obsolete-function-alias 'org-called-interactively-p 'called-interactively-p "Org 9.0")
  79. (define-obsolete-function-alias 'org-char-to-string 'char-to-string "Org 9.0")
  80. (define-obsolete-function-alias 'org-delete-directory 'delete-directory "Org 9.0")
  81. (define-obsolete-function-alias 'org-format-seconds 'format-seconds "Org 9.0")
  82. (define-obsolete-function-alias 'org-no-warnings 'with-no-warnings "Org 9.0")
  83. (define-obsolete-function-alias 'org-number-sequence 'number-sequence "Org 9.0")
  84. (define-obsolete-function-alias 'org-pop-to-buffer-same-window 'pop-to-buffer-same-window "Org 9.0")
  85. (define-obsolete-function-alias 'org-string-match-p 'string-match-p "Org 9.0")
  86. ;;;; Variables declared obsolete.
  87. (define-obsolete-variable-alias 'org-hierarchical-checkbox-statistics
  88. 'org-checkbox-hierarchical-statistics "Org 8.0")
  89. (define-obsolete-variable-alias 'org-description-max-indent
  90. 'org-list-description-max-indent "Org 8.0")
  91. (defun org-compatible-face (inherits specs)
  92. "Make a compatible face specification.
  93. If INHERITS is an existing face and if the Emacs version supports it,
  94. just inherit the face. If INHERITS is set and the Emacs version does
  95. not support it, copy the face specification from the inheritance face.
  96. If INHERITS is not given and SPECS is, use SPECS to define the face."
  97. (when (and inherits (facep inherits) (not specs))
  98. (setq specs (or specs
  99. (get inherits 'saved-face)
  100. (get inherits 'face-defface-spec))))
  101. (cond
  102. ((and inherits (facep inherits)
  103. (>= emacs-major-version 22)
  104. ;; do not inherit outline faces before Emacs 23
  105. (or (>= emacs-major-version 23)
  106. (not (string-match "\\`outline-[0-9]+"
  107. (symbol-name inherits)))))
  108. (list (list t :inherit inherits)))
  109. ((< emacs-major-version 22)
  110. ;; These do not understand the `min-colors' attribute.
  111. (let (r e a)
  112. (while (setq e (pop specs))
  113. (cond
  114. ((memq (car e) '(t default)) (push e r))
  115. ((setq a (member '(min-colors 8) (car e)))
  116. (nconc r (list (cons (cons '(type tty) (delq (car a) (car e)))
  117. (cdr e)))))
  118. ((setq a (assq 'min-colors (car e)))
  119. (setq e (cons (delq a (car e)) (cdr e)))
  120. (or (assoc (car e) r) (push e r)))
  121. (t (or (assoc (car e) r) (push e r)))))
  122. (nreverse r)))
  123. (t specs)))
  124. (put 'org-compatible-face 'lisp-indent-function 1)
  125. (defun org-version-check (version feature level)
  126. (let* ((v1 (mapcar 'string-to-number (split-string version "[.]")))
  127. (v2 (mapcar 'string-to-number (split-string emacs-version "[.]")))
  128. (rmaj (or (nth 0 v1) 99))
  129. (rmin (or (nth 1 v1) 99))
  130. (rbld (or (nth 2 v1) 99))
  131. (maj (or (nth 0 v2) 0))
  132. (min (or (nth 1 v2) 0))
  133. (bld (or (nth 2 v2) 0)))
  134. (if (or (< maj rmaj)
  135. (and (= maj rmaj)
  136. (< min rmin))
  137. (and (= maj rmaj)
  138. (= min rmin)
  139. (< bld rbld)))
  140. (if (eq level :predicate)
  141. ;; just return if we have the version
  142. nil
  143. (let ((msg (format "Emacs %s or greater is recommended for %s"
  144. version feature)))
  145. (display-warning 'org msg level)
  146. t))
  147. t)))
  148. ;;; Miscellaneous functions
  149. (defun org-get-x-clipboard (value)
  150. "Get the value of the X or Windows clipboard."
  151. (cond ((eq window-system 'x)
  152. (org-no-properties
  153. (ignore-errors
  154. (or (gui-get-selection value 'UTF8_STRING)
  155. (gui-get-selection value 'COMPOUND_TEXT)
  156. (gui-get-selection value 'STRING)
  157. (gui-get-selection value 'TEXT)))))
  158. ((and (eq window-system 'w32) (fboundp 'w32-get-clipboard-data))
  159. (w32-get-clipboard-data))))
  160. (defun org-add-props (string plist &rest props)
  161. "Add text properties to entire string, from beginning to end.
  162. PLIST may be a list of properties, PROPS are individual properties and values
  163. that will be added to PLIST. Returns the string that was modified."
  164. (add-text-properties
  165. 0 (length string) (if props (append plist props) plist) string)
  166. string)
  167. (put 'org-add-props 'lisp-indent-function 2)
  168. (defun org-fit-window-to-buffer (&optional window max-height min-height
  169. shrink-only)
  170. "Fit WINDOW to the buffer, but only if it is not a side-by-side window.
  171. WINDOW defaults to the selected window. MAX-HEIGHT and MIN-HEIGHT are
  172. passed through to `fit-window-to-buffer'. If SHRINK-ONLY is set, call
  173. `shrink-window-if-larger-than-buffer' instead, the height limit is
  174. ignored in this case."
  175. (cond ((if (fboundp 'window-full-width-p)
  176. (not (window-full-width-p window))
  177. ;; do nothing if another window would suffer
  178. (> (frame-width) (window-width window))))
  179. ((and (fboundp 'fit-window-to-buffer) (not shrink-only))
  180. (fit-window-to-buffer window max-height min-height))
  181. ((fboundp 'shrink-window-if-larger-than-buffer)
  182. (shrink-window-if-larger-than-buffer window)))
  183. (or window (selected-window)))
  184. ;; `set-transient-map' is only in Emacs >= 24.4
  185. (defalias 'org-set-transient-map
  186. (if (fboundp 'set-transient-map)
  187. 'set-transient-map
  188. 'set-temporary-overlay-map))
  189. ;;; Region compatibility
  190. (defvar org-ignore-region nil
  191. "Non-nil means temporarily disable the active region.")
  192. (defun org-region-active-p ()
  193. "Is `transient-mark-mode' on and the region active?"
  194. (if org-ignore-region
  195. nil
  196. (if (fboundp 'use-region-p)
  197. (use-region-p)
  198. (and transient-mark-mode mark-active)))) ; Emacs 22 and before
  199. (defun org-cursor-to-region-beginning ()
  200. (when (and (org-region-active-p)
  201. (> (point) (region-beginning)))
  202. (exchange-point-and-mark)))
  203. ;;; Invisibility compatibility
  204. (defun org-remove-from-invisibility-spec (arg)
  205. "Remove elements from `buffer-invisibility-spec'."
  206. (if (fboundp 'remove-from-invisibility-spec)
  207. (remove-from-invisibility-spec arg)
  208. (if (consp buffer-invisibility-spec)
  209. (setq buffer-invisibility-spec
  210. (delete arg buffer-invisibility-spec)))))
  211. (defun org-in-invisibility-spec-p (arg)
  212. "Is ARG a member of `buffer-invisibility-spec'?"
  213. (if (consp buffer-invisibility-spec)
  214. (member arg buffer-invisibility-spec)))
  215. (defun org-move-to-column (column &optional force _buffer)
  216. "Move to column COLUMN.
  217. Pass COLUMN and FORCE to `move-to-column'."
  218. (let ((buffer-invisibility-spec
  219. (if (listp buffer-invisibility-spec)
  220. (remove '(org-filtered) buffer-invisibility-spec)
  221. buffer-invisibility-spec)))
  222. (move-to-column column force)))
  223. (defmacro org-find-library-dir (library)
  224. `(file-name-directory (or (locate-library ,library) "")))
  225. (defun org-count-lines (s)
  226. "How many lines in string S?"
  227. (let ((start 0) (n 1))
  228. (while (string-match "\n" s start)
  229. (setq start (match-end 0) n (1+ n)))
  230. (if (and (> (length s) 0) (= (aref s (1- (length s))) ?\n))
  231. (setq n (1- n)))
  232. n))
  233. (defun org-kill-new (string &rest args)
  234. (remove-text-properties 0 (length string) '(line-prefix t wrap-prefix t)
  235. string)
  236. (apply 'kill-new string args))
  237. ;; `font-lock-ensure' is only available from 24.4.50 on
  238. (defalias 'org-font-lock-ensure
  239. (if (fboundp 'font-lock-ensure)
  240. #'font-lock-ensure
  241. (lambda (&optional _beg _end)
  242. (with-no-warnings (font-lock-fontify-buffer)))))
  243. (defmacro org-no-popups (&rest body)
  244. "Suppress popup windows.
  245. Let-bind some variables to nil around BODY to achieve the desired
  246. effect, which variables to use depends on the Emacs version."
  247. (if (org-version-check "24.2.50" "" :predicate)
  248. `(let (pop-up-frames display-buffer-alist)
  249. ,@body)
  250. `(let (pop-up-frames special-display-buffer-names special-display-regexps special-display-function)
  251. ,@body)))
  252. ;;;###autoload
  253. (defmacro org-check-version ()
  254. "Try very hard to provide sensible version strings."
  255. (let* ((org-dir (org-find-library-dir "org"))
  256. (org-version.el (concat org-dir "org-version.el"))
  257. (org-fixup.el (concat org-dir "../mk/org-fixup.el")))
  258. (if (require 'org-version org-version.el 'noerror)
  259. '(progn
  260. (autoload 'org-release "org-version.el")
  261. (autoload 'org-git-version "org-version.el"))
  262. (if (require 'org-fixup org-fixup.el 'noerror)
  263. '(org-fixup)
  264. ;; provide fallback definitions and complain
  265. (warn "Could not define org version correctly. Check installation!")
  266. '(progn
  267. (defun org-release () "N/A")
  268. (defun org-git-version () "N/A !!check installation!!"))))))
  269. (defmacro org-with-silent-modifications (&rest body)
  270. (if (fboundp 'with-silent-modifications)
  271. `(with-silent-modifications ,@body)
  272. `(org-unmodified ,@body)))
  273. (def-edebug-spec org-with-silent-modifications (body))
  274. ;; Remove this when support for Emacs < 24.4 is dropped.
  275. (defun org-define-error (name message)
  276. "Define NAME as a new error signal.
  277. MESSAGE is a string that will be output to the echo area if such
  278. an error is signaled without being caught by a `condition-case'.
  279. Implements `define-error' for older emacsen."
  280. (if (fboundp 'define-error) (define-error name message)
  281. (put name 'error-conditions
  282. (copy-sequence (cons name (get 'error 'error-conditions))))))
  283. (provide 'org-compat)
  284. ;;; org-compat.el ends here