org-macs.el 14 KB

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