]> code.delx.au - gnu-emacs/blob - lisp/org/org-compat.el
Update copyright year to 2015
[gnu-emacs] / lisp / org / org-compat.el
1 ;;; org-compat.el --- Compatibility code for Org-mode
2
3 ;; Copyright (C) 2004-2015 Free Software Foundation, Inc.
4
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
10 ;;
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
24 ;;
25 ;;; Commentary:
26
27 ;; This file contains code needed for compatibility with XEmacs and older
28 ;; versions of GNU Emacs.
29
30 ;;; Code:
31
32 (eval-when-compile
33 (require 'cl))
34
35 (require 'org-macs)
36
37 (declare-function w32-focus-frame "term/w32-win" (frame))
38
39 ;; The following constant is for backward compatibility. We do not use
40 ;; it in org-mode, because the Byte compiler evaluates (featurep 'xemacs)
41 ;; at compilation time and can therefore optimize code better.
42 (defconst org-xemacs-p (featurep 'xemacs))
43 (defconst org-format-transports-properties-p
44 (let ((x "a"))
45 (add-text-properties 0 1 '(test t) x)
46 (get-text-property 0 'test (format "%s" x)))
47 "Does format transport text properties?")
48
49 (defun org-compatible-face (inherits specs)
50 "Make a compatible face specification.
51 If INHERITS is an existing face and if the Emacs version supports it,
52 just inherit the face. If INHERITS is set and the Emacs version does
53 not support it, copy the face specification from the inheritance face.
54 If INHERITS is not given and SPECS is, use SPECS to define the face.
55 XEmacs and Emacs 21 do not know about the `min-colors' attribute.
56 For them we convert a (min-colors 8) entry to a `tty' entry and move it
57 to the top of the list. The `min-colors' attribute will be removed from
58 any other entries, and any resulting duplicates will be removed entirely."
59 (when (and inherits (facep inherits) (not specs))
60 (setq specs (or specs
61 (get inherits 'saved-face)
62 (get inherits 'face-defface-spec))))
63 (cond
64 ((and inherits (facep inherits)
65 (not (featurep 'xemacs))
66 (>= emacs-major-version 22)
67 ;; do not inherit outline faces before Emacs 23
68 (or (>= emacs-major-version 23)
69 (not (string-match "\\`outline-[0-9]+"
70 (symbol-name inherits)))))
71 (list (list t :inherit inherits)))
72 ((or (featurep 'xemacs) (< emacs-major-version 22))
73 ;; These do not understand the `min-colors' attribute.
74 (let (r e a)
75 (while (setq e (pop specs))
76 (cond
77 ((memq (car e) '(t default)) (push e r))
78 ((setq a (member '(min-colors 8) (car e)))
79 (nconc r (list (cons (cons '(type tty) (delq (car a) (car e)))
80 (cdr e)))))
81 ((setq a (assq 'min-colors (car e)))
82 (setq e (cons (delq a (car e)) (cdr e)))
83 (or (assoc (car e) r) (push e r)))
84 (t (or (assoc (car e) r) (push e r)))))
85 (nreverse r)))
86 (t specs)))
87 (put 'org-compatible-face 'lisp-indent-function 1)
88
89 (defun org-version-check (version feature level)
90 (let* ((v1 (mapcar 'string-to-number (split-string version "[.]")))
91 (v2 (mapcar 'string-to-number (split-string emacs-version "[.]")))
92 (rmaj (or (nth 0 v1) 99))
93 (rmin (or (nth 1 v1) 99))
94 (rbld (or (nth 2 v1) 99))
95 (maj (or (nth 0 v2) 0))
96 (min (or (nth 1 v2) 0))
97 (bld (or (nth 2 v2) 0)))
98 (if (or (< maj rmaj)
99 (and (= maj rmaj)
100 (< min rmin))
101 (and (= maj rmaj)
102 (= min rmin)
103 (< bld rbld)))
104 (if (eq level :predicate)
105 ;; just return if we have the version
106 nil
107 (let ((msg (format "Emacs %s or greater is recommended for %s"
108 version feature)))
109 (display-warning 'org msg level)
110 t))
111 t)))
112
113 \f
114 ;;;; Emacs/XEmacs compatibility
115
116 (eval-and-compile
117 (defun org-defvaralias (new-alias base-variable &optional docstring)
118 "Compatibility function for defvaralias.
119 Don't do the aliasing when `defvaralias' is not bound."
120 (declare (indent 1))
121 (when (fboundp 'defvaralias)
122 (defvaralias new-alias base-variable docstring)))
123
124 (when (and (not (boundp 'user-emacs-directory))
125 (boundp 'user-init-directory))
126 (org-defvaralias 'user-emacs-directory 'user-init-directory)))
127
128 (when (featurep 'xemacs)
129 (defadvice custom-handle-keyword
130 (around org-custom-handle-keyword
131 activate preactivate)
132 "Remove custom keywords not recognized to avoid producing an error."
133 (cond
134 ((eq (ad-get-arg 1) :package-version))
135 (t ad-do-it)))
136 (defadvice define-obsolete-variable-alias
137 (around org-define-obsolete-variable-alias
138 (obsolete-name current-name &optional when docstring)
139 activate preactivate)
140 "Declare arguments defined in later versions of Emacs."
141 ad-do-it)
142 (defadvice define-obsolete-function-alias
143 (around org-define-obsolete-function-alias
144 (obsolete-name current-name &optional when docstring)
145 activate preactivate)
146 "Declare arguments defined in later versions of Emacs."
147 ad-do-it)
148 (defvar customize-package-emacs-version-alist nil)
149 (defvar temporary-file-directory (temp-directory)))
150
151 ;; Keys
152 (defconst org-xemacs-key-equivalents
153 '(([mouse-1] . [button1])
154 ([mouse-2] . [button2])
155 ([mouse-3] . [button3])
156 ([C-mouse-4] . [(control mouse-4)])
157 ([C-mouse-5] . [(control mouse-5)]))
158 "Translation alist for a couple of keys.")
159
160 ;; Overlay compatibility functions
161 (defun org-detach-overlay (ovl)
162 (if (featurep 'xemacs) (detach-extent ovl) (delete-overlay ovl)))
163 (defun org-overlay-display (ovl text &optional face evap)
164 "Make overlay OVL display TEXT with face FACE."
165 (if (featurep 'xemacs)
166 (let ((gl (make-glyph text)))
167 (and face (set-glyph-face gl face))
168 (set-extent-property ovl 'invisible t)
169 (set-extent-property ovl 'end-glyph gl))
170 (overlay-put ovl 'display text)
171 (if face (overlay-put ovl 'face face))
172 (if evap (overlay-put ovl 'evaporate t))))
173 (defun org-overlay-before-string (ovl text &optional face evap)
174 "Make overlay OVL display TEXT with face FACE."
175 (if (featurep 'xemacs)
176 (let ((gl (make-glyph text)))
177 (and face (set-glyph-face gl face))
178 (set-extent-property ovl 'begin-glyph gl))
179 (if face (org-add-props text nil 'face face))
180 (overlay-put ovl 'before-string text)
181 (if evap (overlay-put ovl 'evaporate t))))
182 (defun org-find-overlays (prop &optional pos delete)
183 "Find all overlays specifying PROP at POS or point.
184 If DELETE is non-nil, delete all those overlays."
185 (let ((overlays (overlays-at (or pos (point))))
186 ov found)
187 (while (setq ov (pop overlays))
188 (if (overlay-get ov prop)
189 (if delete (delete-overlay ov) (push ov found))))
190 found))
191
192 (defun org-get-x-clipboard (value)
193 "Get the value of the x or Windows clipboard, compatible with XEmacs, and GNU Emacs 21."
194 (cond ((eq window-system 'x)
195 (let ((x (org-get-x-clipboard-compat value)))
196 (if x (org-no-properties x))))
197 ((and (eq window-system 'w32) (fboundp 'w32-get-clipboard-data))
198 (w32-get-clipboard-data))))
199
200 (defsubst org-decompose-region (beg end)
201 "Decompose from BEG to END."
202 (if (featurep 'xemacs)
203 (let ((modified-p (buffer-modified-p))
204 (buffer-read-only nil))
205 (remove-text-properties beg end '(composition nil))
206 (set-buffer-modified-p modified-p))
207 (decompose-region beg end)))
208
209 ;; Miscellaneous functions
210
211 (defun org-add-hook (hook function &optional append local)
212 "Add-hook, compatible with both Emacsen."
213 (if (and local (featurep 'xemacs))
214 (add-local-hook hook function append)
215 (add-hook hook function append local)))
216
217 (defun org-add-props (string plist &rest props)
218 "Add text properties to entire string, from beginning to end.
219 PLIST may be a list of properties, PROPS are individual properties and values
220 that will be added to PLIST. Returns the string that was modified."
221 (add-text-properties
222 0 (length string) (if props (append plist props) plist) string)
223 string)
224 (put 'org-add-props 'lisp-indent-function 2)
225
226 (defun org-fit-window-to-buffer (&optional window max-height min-height
227 shrink-only)
228 "Fit WINDOW to the buffer, but only if it is not a side-by-side window.
229 WINDOW defaults to the selected window. MAX-HEIGHT and MIN-HEIGHT are
230 passed through to `fit-window-to-buffer'. If SHRINK-ONLY is set, call
231 `shrink-window-if-larger-than-buffer' instead, the height limit is
232 ignored in this case."
233 (cond ((if (fboundp 'window-full-width-p)
234 (not (window-full-width-p window))
235 ;; do nothing if another window would suffer
236 (> (frame-width) (window-width window))))
237 ((and (fboundp 'fit-window-to-buffer) (not shrink-only))
238 (fit-window-to-buffer window max-height min-height))
239 ((fboundp 'shrink-window-if-larger-than-buffer)
240 (shrink-window-if-larger-than-buffer window)))
241 (or window (selected-window)))
242
243 (defun org-number-sequence (from &optional to inc)
244 "Call `number-sequence or emulate it."
245 (if (fboundp 'number-sequence)
246 (number-sequence from to inc)
247 (if (or (not to) (= from to))
248 (list from)
249 (or inc (setq inc 1))
250 (when (zerop inc) (error "The increment can not be zero"))
251 (let (seq (n 0) (next from))
252 (if (> inc 0)
253 (while (<= next to)
254 (setq seq (cons next seq)
255 n (1+ n)
256 next (+ from (* n inc))))
257 (while (>= next to)
258 (setq seq (cons next seq)
259 n (1+ n)
260 next (+ from (* n inc)))))
261 (nreverse seq)))))
262
263 ;; `set-transient-map' is only in Emacs >= 24.4
264 (defalias 'org-set-transient-map
265 (if (fboundp 'set-transient-map)
266 'set-transient-map
267 'set-temporary-overlay-map))
268
269 ;; Region compatibility
270
271 (defvar org-ignore-region nil
272 "Non-nil means temporarily disable the active region.")
273
274 (defun org-region-active-p ()
275 "Is `transient-mark-mode' on and the region active?
276 Works on both Emacs and XEmacs."
277 (if org-ignore-region
278 nil
279 (if (featurep 'xemacs)
280 (and zmacs-regions (region-active-p))
281 (if (fboundp 'use-region-p)
282 (use-region-p)
283 (and transient-mark-mode mark-active))))) ; Emacs 22 and before
284
285 (defun org-cursor-to-region-beginning ()
286 (when (and (org-region-active-p)
287 (> (point) (region-beginning)))
288 (exchange-point-and-mark)))
289
290 ;; Emacs 22 misses `activate-mark'
291 (if (fboundp 'activate-mark)
292 (defalias 'org-activate-mark 'activate-mark)
293 (defun org-activate-mark ()
294 (when (mark t)
295 (setq mark-active t)
296 (when (and (boundp 'transient-mark-mode)
297 (not transient-mark-mode))
298 (set (make-local-variable 'transient-mark-mode) 'lambda))
299 (when (boundp 'zmacs-regions)
300 (setq zmacs-regions t)))))
301
302 ;; Invisibility compatibility
303
304 (defun org-remove-from-invisibility-spec (arg)
305 "Remove elements from `buffer-invisibility-spec'."
306 (if (fboundp 'remove-from-invisibility-spec)
307 (remove-from-invisibility-spec arg)
308 (if (consp buffer-invisibility-spec)
309 (setq buffer-invisibility-spec
310 (delete arg buffer-invisibility-spec)))))
311
312 (defun org-in-invisibility-spec-p (arg)
313 "Is ARG a member of `buffer-invisibility-spec'?"
314 (if (consp buffer-invisibility-spec)
315 (member arg buffer-invisibility-spec)))
316
317 (defmacro org-xemacs-without-invisibility (&rest body)
318 "Turn off extents with invisibility while executing BODY."
319 `(let ((ext-inv (extent-list nil (point-at-bol) (point-at-eol)
320 'all-extents-closed-open 'invisible))
321 ext-inv-specs)
322 (dolist (ext ext-inv)
323 (when (extent-property ext 'invisible)
324 (add-to-list 'ext-inv-specs (list ext (extent-property
325 ext 'invisible)))
326 (set-extent-property ext 'invisible nil)))
327 ,@body
328 (dolist (ext-inv-spec ext-inv-specs)
329 (set-extent-property (car ext-inv-spec) 'invisible
330 (cadr ext-inv-spec)))))
331 (def-edebug-spec org-xemacs-without-invisibility (body))
332
333 (defun org-indent-to-column (column &optional minimum buffer)
334 "Work around a bug with extents with invisibility in XEmacs."
335 (if (featurep 'xemacs)
336 (org-xemacs-without-invisibility (indent-to-column column minimum buffer))
337 (indent-to-column column minimum)))
338
339 (defun org-indent-line-to (column)
340 "Work around a bug with extents with invisibility in XEmacs."
341 (if (featurep 'xemacs)
342 (org-xemacs-without-invisibility (indent-line-to column))
343 (indent-line-to column)))
344
345 (defun org-move-to-column (column &optional force buffer)
346 "Move to column COLUMN.
347 Pass COLUMN and FORCE to `move-to-column'.
348 Pass BUFFER to the XEmacs version of `move-to-column'."
349 (let ((buffer-invisibility-spec
350 (remove '(org-filtered) buffer-invisibility-spec)))
351 (if (featurep 'xemacs)
352 (org-xemacs-without-invisibility
353 (move-to-column column force buffer))
354 (move-to-column column force))))
355
356 (defun org-get-x-clipboard-compat (value)
357 "Get the clipboard value on XEmacs or Emacs 21."
358 (cond ((featurep 'xemacs)
359 (org-no-warnings (get-selection-no-error value)))
360 ((fboundp 'x-get-selection)
361 (condition-case nil
362 (or (x-get-selection value 'UTF8_STRING)
363 (x-get-selection value 'COMPOUND_TEXT)
364 (x-get-selection value 'STRING)
365 (x-get-selection value 'TEXT))
366 (error nil)))))
367
368 (defun org-propertize (string &rest properties)
369 (if (featurep 'xemacs)
370 (progn
371 (add-text-properties 0 (length string) properties string)
372 string)
373 (apply 'propertize string properties)))
374
375 (defmacro org-find-library-dir (library)
376 `(file-name-directory (or (locate-library ,library) "")))
377
378 (defun org-count-lines (s)
379 "How many lines in string S?"
380 (let ((start 0) (n 1))
381 (while (string-match "\n" s start)
382 (setq start (match-end 0) n (1+ n)))
383 (if (and (> (length s) 0) (= (aref s (1- (length s))) ?\n))
384 (setq n (1- n)))
385 n))
386
387 (defun org-kill-new (string &rest args)
388 (remove-text-properties 0 (length string) '(line-prefix t wrap-prefix t)
389 string)
390 (apply 'kill-new string args))
391
392 (defun org-select-frame-set-input-focus (frame)
393 "Select FRAME, raise it, and set input focus, if possible."
394 (cond ((featurep 'xemacs)
395 (if (fboundp 'select-frame-set-input-focus)
396 (select-frame-set-input-focus frame)
397 (raise-frame frame)
398 (select-frame frame)
399 (focus-frame frame)))
400 ;; `select-frame-set-input-focus' defined in Emacs 21 will not
401 ;; set the input focus.
402 ((>= emacs-major-version 22)
403 (select-frame-set-input-focus frame))
404 (t
405 (raise-frame frame)
406 (select-frame frame)
407 (cond ((memq window-system '(x ns mac))
408 (x-focus-frame frame))
409 ((eq window-system 'w32)
410 (w32-focus-frame frame)))
411 (when focus-follows-mouse
412 (set-mouse-position frame (1- (frame-width frame)) 0)))))
413
414 (defalias 'org-float-time
415 (if (featurep 'xemacs) 'time-to-seconds 'float-time))
416
417 ;; `user-error' is only available from 24.2.50 on
418 (unless (fboundp 'user-error)
419 (defalias 'user-error 'error))
420
421 (defmacro org-no-popups (&rest body)
422 "Suppress popup windows.
423 Let-bind some variables to nil around BODY to achieve the desired
424 effect, which variables to use depends on the Emacs version."
425 (if (org-version-check "24.2.50" "" :predicate)
426 `(let (pop-up-frames display-buffer-alist)
427 ,@body)
428 `(let (pop-up-frames special-display-buffer-names special-display-regexps special-display-function)
429 ,@body)))
430
431 (if (fboundp 'string-match-p)
432 (defalias 'org-string-match-p 'string-match-p)
433 (defun org-string-match-p (regexp string &optional start)
434 (save-match-data
435 (funcall 'string-match regexp string start))))
436
437 (if (fboundp 'looking-at-p)
438 (defalias 'org-looking-at-p 'looking-at-p)
439 (defun org-looking-at-p (&rest args)
440 (save-match-data
441 (apply 'looking-at args))))
442
443 ;; XEmacs does not have `looking-back'.
444 (if (fboundp 'looking-back)
445 (defalias 'org-looking-back 'looking-back)
446 (defun org-looking-back (regexp &optional limit greedy)
447 "Return non-nil if text before point matches regular expression REGEXP.
448 Like `looking-at' except matches before point, and is slower.
449 LIMIT if non-nil speeds up the search by specifying a minimum
450 starting position, to avoid checking matches that would start
451 before LIMIT.
452
453 If GREEDY is non-nil, extend the match backwards as far as
454 possible, stopping when a single additional previous character
455 cannot be part of a match for REGEXP. When the match is
456 extended, its starting position is allowed to occur before
457 LIMIT."
458 (let ((start (point))
459 (pos
460 (save-excursion
461 (and (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)
462 (point)))))
463 (if (and greedy pos)
464 (save-restriction
465 (narrow-to-region (point-min) start)
466 (while (and (> pos (point-min))
467 (save-excursion
468 (goto-char pos)
469 (backward-char 1)
470 (looking-at (concat "\\(?:" regexp "\\)\\'"))))
471 (setq pos (1- pos)))
472 (save-excursion
473 (goto-char pos)
474 (looking-at (concat "\\(?:" regexp "\\)\\'")))))
475 (not (null pos)))))
476
477 (defalias 'org-font-lock-ensure
478 (if (fboundp 'org-font-lock-ensure)
479 #'font-lock-ensure
480 (lambda (_beg _end) (font-lock-fontify-buffer))))
481
482 (defun org-floor* (x &optional y)
483 "Return a list of the floor of X and the fractional part of X.
484 With two arguments, return floor and remainder of their quotient."
485 (let ((q (floor x y)))
486 (list q (- x (if y (* y q) q)))))
487
488 ;; `pop-to-buffer-same-window' has been introduced in Emacs 24.1.
489 (defun org-pop-to-buffer-same-window
490 (&optional buffer-or-name norecord label)
491 "Pop to buffer specified by BUFFER-OR-NAME in the selected window."
492 (if (fboundp 'pop-to-buffer-same-window)
493 (funcall
494 'pop-to-buffer-same-window buffer-or-name norecord)
495 (funcall 'switch-to-buffer buffer-or-name norecord)))
496
497 ;; RECURSIVE has been introduced with Emacs 23.2.
498 ;; This is copying and adapted from `tramp-compat-delete-directory'
499 (defun org-delete-directory (directory &optional recursive)
500 "Compatibility function for `delete-directory'."
501 (if (null recursive)
502 (delete-directory directory)
503 (condition-case nil
504 (funcall 'delete-directory directory recursive)
505 ;; This Emacs version does not support the RECURSIVE flag. We
506 ;; use the implementation from Emacs 23.2.
507 (wrong-number-of-arguments
508 (setq directory (directory-file-name (expand-file-name directory)))
509 (if (not (file-symlink-p directory))
510 (mapc (lambda (file)
511 (if (eq t (car (file-attributes file)))
512 (org-delete-directory file recursive)
513 (delete-file file)))
514 (directory-files
515 directory 'full "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*")))
516 (delete-directory directory)))))
517
518 ;;;###autoload
519 (defmacro org-check-version ()
520 "Try very hard to provide sensible version strings."
521 (let* ((org-dir (org-find-library-dir "org"))
522 (org-version.el (concat org-dir "org-version.el"))
523 (org-fixup.el (concat org-dir "../mk/org-fixup.el")))
524 (if (require 'org-version org-version.el 'noerror)
525 '(progn
526 (autoload 'org-release "org-version.el")
527 (autoload 'org-git-version "org-version.el"))
528 (if (require 'org-fixup org-fixup.el 'noerror)
529 '(org-fixup)
530 ;; provide fallback definitions and complain
531 (warn "Could not define org version correctly. Check installation!")
532 '(progn
533 (defun org-release () "N/A")
534 (defun org-git-version () "N/A !!check installation!!"))))))
535
536 (defun org-file-equal-p (f1 f2)
537 "Return t if files F1 and F2 are the same.
538 Implements `file-equal-p' for older emacsen and XEmacs."
539 (if (fboundp 'file-equal-p)
540 (file-equal-p f1 f2)
541 (let (f1-attr f2-attr)
542 (and (setq f1-attr (file-attributes (file-truename f1)))
543 (setq f2-attr (file-attributes (file-truename f2)))
544 (equal f1-attr f2-attr)))))
545
546 ;; `buffer-narrowed-p' is available for Emacs >=24.3
547 (defun org-buffer-narrowed-p ()
548 "Compatibility function for `buffer-narrowed-p'."
549 (if (fboundp 'buffer-narrowed-p)
550 (buffer-narrowed-p)
551 (/= (- (point-max) (point-min)) (buffer-size))))
552
553 (defmacro org-with-silent-modifications (&rest body)
554 (if (fboundp 'with-silent-modifications)
555 `(with-silent-modifications ,@body)
556 `(org-unmodified ,@body)))
557 (def-edebug-spec org-with-silent-modifications (body))
558
559 (provide 'org-compat)
560
561 ;;; org-compat.el ends here