org-macs.el 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. ;;; org-macs.el --- Top-level definitions for Org-mode
  2. ;; Copyright (C) 2004-2014 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 macro definitions, defsubst definitions, other
  23. ;; stuff needed for compilation and top-level forms in Org-mode, as well
  24. ;; lots of small functions that are not org-mode specific but simply
  25. ;; generally useful stuff.
  26. ;;; Code:
  27. (eval-and-compile
  28. (unless (fboundp 'declare-function)
  29. (defmacro declare-function (fn file &optional _arglist _fileonly)
  30. `(autoload ',fn ,file)))
  31. (if (>= emacs-major-version 23)
  32. (defsubst org-char-to-string(c)
  33. "Defsubst to decode UTF-8 character values in emacs 23 and beyond."
  34. (char-to-string c))
  35. (defsubst org-char-to-string (c)
  36. "Defsubst to decode UTF-8 character values in emacs 22."
  37. (string (decode-char 'ucs c)))))
  38. (declare-function org-add-props "org-compat" (string plist &rest props))
  39. (declare-function org-string-match-p "org-compat" (&rest args))
  40. (defmacro org-with-gensyms (symbols &rest body)
  41. (declare (debug (sexp body)) (indent 1))
  42. `(let ,(mapcar (lambda (s)
  43. `(,s (make-symbol (concat "--" (symbol-name ',s)))))
  44. symbols)
  45. ,@body))
  46. (defmacro org-called-interactively-p (&optional kind)
  47. (declare (debug (&optional ("quote" symbolp)))) ;Why not just `t'?
  48. (if (featurep 'xemacs)
  49. `(interactive-p)
  50. (if (or (> emacs-major-version 23)
  51. (and (>= emacs-major-version 23)
  52. (>= emacs-minor-version 2)))
  53. ;; defined with no argument in <=23.1
  54. `(with-no-warnings (called-interactively-p ,kind))
  55. `(interactive-p))))
  56. (defmacro org-bound-and-true-p (var)
  57. "Return the value of symbol VAR if it is bound, else nil."
  58. (declare (debug (symbolp)))
  59. `(and (boundp (quote ,var)) ,var))
  60. (defun org-string-nw-p (s)
  61. "Is S a string with a non-white character?"
  62. (and (stringp s)
  63. (org-string-match-p "\\S-" s)
  64. s))
  65. (defun org-not-nil (v)
  66. "If V not nil, and also not the string \"nil\", then return V.
  67. Otherwise return nil."
  68. (and v (not (equal v "nil")) v))
  69. (defun org-substitute-posix-classes (re)
  70. "Substitute posix classes in regular expression RE."
  71. (let ((ss re))
  72. (save-match-data
  73. (while (string-match "\\[:alnum:\\]" ss)
  74. (setq ss (replace-match "a-zA-Z0-9" t t ss)))
  75. (while (string-match "\\[:word:\\]" ss)
  76. (setq ss (replace-match "a-zA-Z0-9" t t ss)))
  77. (while (string-match "\\[:alpha:\\]" ss)
  78. (setq ss (replace-match "a-zA-Z" t t ss)))
  79. (while (string-match "\\[:punct:\\]" ss)
  80. (setq ss (replace-match "\001-@[-`{-~" t t ss)))
  81. ss)))
  82. (defmacro org-re (s)
  83. "Replace posix classes in regular expression."
  84. (declare (debug (form)))
  85. (if (featurep 'xemacs) `(org-substitute-posix-classes ,s) s))
  86. (defmacro org-preserve-lc (&rest body)
  87. (declare (debug (body)))
  88. (org-with-gensyms (line col)
  89. `(let ((,line (org-current-line))
  90. (,col (current-column)))
  91. (unwind-protect
  92. (progn ,@body)
  93. (org-goto-line ,line)
  94. (org-move-to-column ,col)))))
  95. ;; Use `org-with-silent-modifications' to ignore cosmetic changes and
  96. ;; `org-unmodified' to ignore real text modifications
  97. (defmacro org-unmodified (&rest body)
  98. "Run BODY while preserving the buffer's `buffer-modified-p' state."
  99. (declare (debug (body)))
  100. (org-with-gensyms (was-modified)
  101. `(let ((,was-modified (buffer-modified-p)))
  102. (unwind-protect
  103. (let ((buffer-undo-list t)
  104. (inhibit-modification-hooks t))
  105. ,@body)
  106. (set-buffer-modified-p ,was-modified)))))
  107. (defmacro org-without-partial-completion (&rest body)
  108. (declare (debug (body)))
  109. `(if (and (boundp 'partial-completion-mode)
  110. partial-completion-mode
  111. (fboundp 'partial-completion-mode))
  112. (unwind-protect
  113. (progn
  114. (partial-completion-mode -1)
  115. ,@body)
  116. (partial-completion-mode 1))
  117. ,@body))
  118. ;; FIXME: Slated for removal. Current Org mode does not support Emacs < 22
  119. (defmacro org-maybe-intangible (props)
  120. "Add '(intangible t) to PROPS if Emacs version is earlier than Emacs 22.
  121. In Emacs 21, invisible text is not avoided by the command loop, so the
  122. intangible property is needed to make sure point skips this text.
  123. In Emacs 22, this is not necessary. The intangible text property has
  124. led to problems with flyspell. These problems are fixed in flyspell.el,
  125. but we still avoid setting the property in Emacs 22 and later.
  126. We use a macro so that the test can happen at compilation time."
  127. (if (< emacs-major-version 22)
  128. `(append '(intangible t) ,props)
  129. props))
  130. (defmacro org-with-point-at (pom &rest body)
  131. "Move to buffer and point of point-or-marker POM for the duration of BODY."
  132. (declare (debug (form body)) (indent 1))
  133. (org-with-gensyms (mpom)
  134. `(let ((,mpom ,pom))
  135. (save-excursion
  136. (if (markerp ,mpom) (set-buffer (marker-buffer ,mpom)))
  137. (org-with-wide-buffer
  138. (goto-char (or ,mpom (point)))
  139. ,@body)))))
  140. (defmacro org-no-warnings (&rest body)
  141. (declare (debug (body)))
  142. (cons (if (fboundp 'with-no-warnings) 'with-no-warnings 'progn) body))
  143. (defmacro org-with-remote-undo (buffer &rest body)
  144. "Execute BODY while recording undo information in two buffers."
  145. (declare (debug (form body)) (indent 1))
  146. (org-with-gensyms (cline cmd buf1 buf2 undo1 undo2 c1 c2)
  147. `(let ((,cline (org-current-line))
  148. (,cmd this-command)
  149. (,buf1 (current-buffer))
  150. (,buf2 ,buffer)
  151. (,undo1 buffer-undo-list)
  152. (,undo2 (with-current-buffer ,buffer buffer-undo-list))
  153. ,c1 ,c2)
  154. ,@body
  155. (when org-agenda-allow-remote-undo
  156. (setq ,c1 (org-verify-change-for-undo
  157. ,undo1 (with-current-buffer ,buf1 buffer-undo-list))
  158. ,c2 (org-verify-change-for-undo
  159. ,undo2 (with-current-buffer ,buf2 buffer-undo-list)))
  160. (when (or ,c1 ,c2)
  161. ;; make sure there are undo boundaries
  162. (and ,c1 (with-current-buffer ,buf1 (undo-boundary)))
  163. (and ,c2 (with-current-buffer ,buf2 (undo-boundary)))
  164. ;; remember which buffer to undo
  165. (push (list ,cmd ,cline ,buf1 ,c1 ,buf2 ,c2)
  166. org-agenda-undo-list))))))
  167. (defmacro org-no-read-only (&rest body)
  168. "Inhibit read-only for BODY."
  169. (declare (debug (body)))
  170. `(let ((inhibit-read-only t)) ,@body))
  171. (defconst org-rm-props '(invisible t face t keymap t intangible t mouse-face t
  172. rear-nonsticky t mouse-map t fontified t
  173. org-emphasis t)
  174. "Properties to remove when a string without properties is wanted.")
  175. (defsubst org-match-string-no-properties (num &optional string)
  176. (if (featurep 'xemacs)
  177. (let ((s (match-string num string)))
  178. (and s (remove-text-properties 0 (length s) org-rm-props s))
  179. s)
  180. (match-string-no-properties num string)))
  181. (defsubst org-no-properties (s &optional restricted)
  182. "Remove all text properties from string S.
  183. When RESTRICTED is non-nil, only remove the properties listed
  184. in `org-rm-props'."
  185. (if (fboundp 'set-text-properties)
  186. (set-text-properties 0 (length s) nil s)
  187. (if restricted
  188. (remove-text-properties 0 (length s) org-rm-props s)
  189. (set-text-properties 0 (length s) nil s)))
  190. s)
  191. (defsubst org-get-alist-option (option key)
  192. (cond ((eq key t) t)
  193. ((eq option t) t)
  194. ((assoc key option) (cdr (assoc key option)))
  195. (t (let ((r (cdr (assq 'default option))))
  196. (if (listp r) (delq nil r) r)))))
  197. (defsubst org-check-external-command (cmd &optional use no-error)
  198. "Check if external program CMD for USE exists, error if not.
  199. When the program does exist, return its path.
  200. When it does not exist and NO-ERROR is set, return nil.
  201. Otherwise, throw an error. The optional argument USE can describe what this
  202. program is needed for, so that the error message can be more informative."
  203. (or (executable-find cmd)
  204. (if no-error
  205. nil
  206. (error "Can't find `%s'%s" cmd
  207. (if use (format " (%s)" use) "")))))
  208. (defsubst org-inhibit-invisibility ()
  209. "Modified `buffer-invisibility-spec' for Emacs 21.
  210. Some ops with invisible text do not work correctly on Emacs 21. For these
  211. we turn off invisibility temporarily. Use this in a `let' form."
  212. (if (< emacs-major-version 22) nil buffer-invisibility-spec))
  213. (defsubst org-set-local (var value)
  214. "Make VAR local in current buffer and set it to VALUE."
  215. (set (make-local-variable var) value))
  216. (defsubst org-last (list)
  217. "Return the last element of LIST."
  218. (car (last list)))
  219. (defun org-let (list &rest body)
  220. (eval (cons 'let (cons list body))))
  221. (put 'org-let 'lisp-indent-function 1)
  222. (defun org-let2 (list1 list2 &rest body)
  223. (eval (cons 'let (cons list1 (list (cons 'let (cons list2 body)))))))
  224. (put 'org-let2 'lisp-indent-function 2)
  225. (defsubst org-call-with-arg (command arg)
  226. "Call COMMAND interactively, but pretend prefix arg was ARG."
  227. (let ((current-prefix-arg arg)) (call-interactively command)))
  228. (defsubst org-current-line (&optional pos)
  229. (save-excursion
  230. (and pos (goto-char pos))
  231. ;; works also in narrowed buffer, because we start at 1, not point-min
  232. (+ (if (bolp) 1 0) (count-lines 1 (point)))))
  233. (defsubst org-goto-line (N)
  234. (save-restriction
  235. (widen)
  236. (goto-char (point-min))
  237. (forward-line (1- N))))
  238. (defsubst org-current-line-string (&optional to-here)
  239. (buffer-substring (point-at-bol) (if to-here (point) (point-at-eol))))
  240. (defsubst org-pos-in-match-range (pos n)
  241. (and (match-beginning n)
  242. (<= (match-beginning n) pos)
  243. (>= (match-end n) pos)))
  244. (defun org-match-line (re)
  245. "Looking-at at the beginning of the current line."
  246. (save-excursion
  247. (goto-char (point-at-bol))
  248. (looking-at re)))
  249. (defun org-plist-delete (plist property)
  250. "Delete PROPERTY from PLIST.
  251. This is in contrast to merely setting it to 0."
  252. (let (p)
  253. (while plist
  254. (if (not (eq property (car plist)))
  255. (setq p (plist-put p (car plist) (nth 1 plist))))
  256. (setq plist (cddr plist)))
  257. p))
  258. (defun org-replace-match-keep-properties (newtext &optional fixedcase
  259. literal string)
  260. "Like `replace-match', but add the text properties found original text."
  261. (setq newtext (org-add-props newtext (text-properties-at
  262. (match-beginning 0) string)))
  263. (replace-match newtext fixedcase literal string))
  264. (defmacro org-save-outline-visibility (use-markers &rest body)
  265. "Save and restore outline visibility around BODY.
  266. If USE-MARKERS is non-nil, use markers for the positions.
  267. This means that the buffer may change while running BODY,
  268. but it also means that the buffer should stay alive
  269. during the operation, because otherwise all these markers will
  270. point nowhere."
  271. (declare (debug (form body)) (indent 1))
  272. (org-with-gensyms (data rtn)
  273. `(let ((,data (org-outline-overlay-data ,use-markers))
  274. ,rtn)
  275. (unwind-protect
  276. (progn
  277. (setq ,rtn (progn ,@body))
  278. (org-set-outline-overlay-data ,data))
  279. (when ,use-markers
  280. (mapc (lambda (c)
  281. (and (markerp (car c)) (move-marker (car c) nil))
  282. (and (markerp (cdr c)) (move-marker (cdr c) nil)))
  283. ,data)))
  284. ,rtn)))
  285. (defmacro org-with-wide-buffer (&rest body)
  286. "Execute body while temporarily widening the buffer."
  287. (declare (debug (body)))
  288. `(save-excursion
  289. (save-restriction
  290. (widen)
  291. ,@body)))
  292. (defmacro org-with-limited-levels (&rest body)
  293. "Execute BODY with limited number of outline levels."
  294. (declare (debug (body)))
  295. `(progn
  296. (defvar org-called-with-limited-levels)
  297. (defvar org-outline-regexp)
  298. (defvar outline-regexp)
  299. (defvar org-outline-regexp-bol)
  300. (let* ((org-called-with-limited-levels t)
  301. (org-outline-regexp (org-get-limited-outline-regexp))
  302. (outline-regexp org-outline-regexp)
  303. (org-outline-regexp-bol (concat "^" org-outline-regexp)))
  304. ,@body)))
  305. (defvar org-outline-regexp) ; defined in org.el
  306. (defvar org-odd-levels-only) ; defined in org.el
  307. (defvar org-inlinetask-min-level) ; defined in org-inlinetask.el
  308. (defun org-get-limited-outline-regexp ()
  309. "Return outline-regexp with limited number of levels.
  310. The number of levels is controlled by `org-inlinetask-min-level'"
  311. (if (or (not (derived-mode-p 'org-mode)) (not (featurep 'org-inlinetask)))
  312. org-outline-regexp
  313. (let* ((limit-level (1- org-inlinetask-min-level))
  314. (nstars (if org-odd-levels-only (1- (* limit-level 2)) limit-level)))
  315. (format "\\*\\{1,%d\\} " nstars))))
  316. (defun org-format-seconds (string seconds)
  317. "Compatibility function replacing format-seconds."
  318. (if (fboundp 'format-seconds)
  319. (format-seconds string seconds)
  320. (format-time-string string (seconds-to-time seconds))))
  321. (defmacro org-eval-in-environment (environment form)
  322. (declare (debug (form form)) (indent 1))
  323. `(eval (list 'let ,environment ',form)))
  324. (defun org-make-parameter-alist (flat)
  325. "Return alist based on FLAT.
  326. FLAT is a list with alternating symbol names and values. The
  327. returned alist is a list of lists with the symbol name in car and
  328. the value in cdr."
  329. (when flat
  330. (cons (list (car flat) (cadr flat))
  331. (org-make-parameter-alist (cddr flat)))))
  332. ;;;###autoload
  333. (defmacro org-load-noerror-mustsuffix (file)
  334. "Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX argument for XEmacs, which doesn't recognize it."
  335. (if (featurep 'xemacs)
  336. `(load ,file 'noerror)
  337. `(load ,file 'noerror nil nil 'mustsuffix)))
  338. (provide 'org-macs)
  339. ;;; org-macs.el ends here