org-macs.el 15 KB

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