1 ;;; org-compat.el --- Compatibility code for Org-mode
3 ;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
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.
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.
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 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27 ;; This file contains code needed for compatibility with XEmacs and older
28 ;; versions of GNU Emacs.
37 (declare-function w32-focus-frame
"term/w32-win" (frame))
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
45 (add-text-properties 0 1 '(test t
) x
)
46 (get-text-property 0 'test
(format "%s" x
)))
47 "Does format transport text properties?")
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
))
61 (get inherits
'saved-face
)
62 (get inherits
'face-defface-spec
))))
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.
75 (while (setq e
(pop specs
))
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
)))
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
)))))
87 (put 'org-compatible-face
'lisp-indent-function
1)
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)))
104 (if (eq level
:predicate
)
105 ;; just return if we have the version
107 (let ((msg (format "Emacs %s or greater is recommended for %s"
109 (display-warning 'org msg level
)
114 ;;;; Emacs/XEmacs compatibility
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."
121 (when (fboundp 'defvaralias
)
122 (defvaralias new-alias base-variable docstring
)))
124 (when (and (not (boundp 'user-emacs-directory
))
125 (boundp 'user-init-directory
))
126 (org-defvaralias 'user-emacs-directory
'user-init-directory
)))
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."
134 ((eq (ad-get-arg 1) :package-version
))
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."
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."
148 (defvar customize-package-emacs-version-alist nil
)
149 (defvar temporary-file-directory
(temp-directory)))
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.")
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))))
187 (while (setq ov (pop overlays))
188 (if (overlay-get ov prop)
189 (if delete (delete-overlay ov) (push ov found))))
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))))
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)))
209 ;; Miscellaneous functions
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)))
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."
222 0 (length string) (if props (append plist props) plist) string)
224 (put 'org-add-props 'lisp-indent-function 2)
226 (defun org-fit-window-to-buffer (&optional window max-height min-height
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)))
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))
249 (or inc (setq inc 1))
250 (when (zerop inc) (error "The increment can not be zero"))
251 (let (seq (n 0) (next from))
254 (setq seq (cons next seq)
256 next (+ from (* n inc))))
258 (setq seq (cons next seq)
260 next (+ from (* n inc)))))
263 ;; `set-transient-map' is only in Emacs >= 24.4
264 (defalias 'org-set-transient-map
265 (if (fboundp 'set-transient-map)
267 'set-temporary-overlay-map))
269 ;; Region compatibility
271 (defvar org-ignore-region nil
272 "Non-nil means temporarily disable the active region.")
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
279 (if (featurep 'xemacs)
280 (and zmacs-regions (region-active-p))
281 (if (fboundp 'use-region-p)
283 (and transient-mark-mode mark-active))))) ; Emacs 22 and before
285 (defun org-cursor-to-region-beginning ()
286 (when (and (org-region-active-p)
287 (> (point) (region-beginning)))
288 (exchange-point-and-mark)))
290 ;; Emacs 22 misses `activate-mark'
291 (if (fboundp 'activate-mark)
292 (defalias 'org-activate-mark 'activate-mark)
293 (defun org-activate-mark ()
296 (when (and (boundp 'transient-mark-mode)
297 (not transient-mark-mode))
298 (setq transient-mark-mode 'lambda))
299 (when (boundp 'zmacs-regions)
300 (setq zmacs-regions t)))))
302 ;; Invisibility compatibility
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)))))
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)
318 (defmacro org-xemacs-without-invisibility (&rest body)
319 "Turn off extents with invisibility while executing BODY."
320 `(let ((ext-inv (extent-list nil (point-at-bol) (point-at-eol)
321 'all-extents-closed-open 'invisible))
323 (dolist (ext ext-inv)
324 (when (extent-property ext 'invisible)
325 (add-to-list 'ext-inv-specs (list ext (extent-property
327 (set-extent-property ext 'invisible nil)))
329 (dolist (ext-inv-spec ext-inv-specs)
330 (set-extent-property (car ext-inv-spec) 'invisible
331 (cadr ext-inv-spec)))))
332 (def-edebug-spec org-xemacs-without-invisibility (body))
334 (defun org-indent-to-column (column &optional minimum buffer)
335 "Work around a bug with extents with invisibility in XEmacs."
336 (if (featurep 'xemacs)
337 (org-xemacs-without-invisibility (indent-to-column column minimum buffer))
338 (indent-to-column column minimum)))
340 (defun org-indent-line-to (column)
341 "Work around a bug with extents with invisibility in XEmacs."
342 (if (featurep 'xemacs)
343 (org-xemacs-without-invisibility (indent-line-to column))
344 (indent-line-to column)))
346 (defun org-move-to-column (column &optional force buffer)
347 "Move to column COLUMN.
348 Pass COLUMN and FORCE to `move-to-column'.
349 Pass BUFFER to the XEmacs version of `move-to-column'."
350 (let* ((with-bracket-link
353 (looking-at (concat "^.*" org-bracket-link-regexp))))
354 (buffer-invisibility-spec
356 ((or (not (derived-mode-p 'org-mode))
357 (and with-bracket-link (org-invisible-p2)))
358 (remove '(org-link) buffer-invisibility-spec))
360 (remove t buffer-invisibility-spec))
361 (t buffer-invisibility-spec))))
362 (if (featurep 'xemacs)
363 (org-xemacs-without-invisibility
364 (move-to-column column force buffer))
365 (move-to-column column force))))
367 (defun org-get-x-clipboard-compat (value)
368 "Get the clipboard value on XEmacs or Emacs 21."
369 (cond ((featurep 'xemacs)
370 (org-no-warnings (get-selection-no-error value)))
371 ((fboundp 'x-get-selection)
373 (or (x-get-selection value 'UTF8_STRING)
374 (x-get-selection value 'COMPOUND_TEXT)
375 (x-get-selection value 'STRING)
376 (x-get-selection value 'TEXT))
379 (defun org-propertize (string &rest properties)
380 (if (featurep 'xemacs)
382 (add-text-properties 0 (length string) properties string)
384 (apply 'propertize string properties)))
386 (defmacro org-find-library-dir (library)
387 `(file-name-directory (or (locate-library ,library) "")))
389 (defun org-count-lines (s)
390 "How many lines in string S?"
391 (let ((start 0) (n 1))
392 (while (string-match "\n" s start)
393 (setq start (match-end 0) n (1+ n)))
394 (if (and (> (length s) 0) (= (aref s (1- (length s))) ?\n))
398 (defun org-kill-new (string &rest args)
399 (remove-text-properties 0 (length string) '(line-prefix t wrap-prefix t)
401 (apply 'kill-new string args))
403 (defun org-select-frame-set-input-focus (frame)
404 "Select FRAME, raise it, and set input focus, if possible."
405 (cond ((featurep 'xemacs)
406 (if (fboundp 'select-frame-set-input-focus)
407 (select-frame-set-input-focus frame)
410 (focus-frame frame)))
411 ;; `select-frame-set-input-focus' defined in Emacs 21 will not
412 ;; set the input focus.
413 ((>= emacs-major-version 22)
414 (select-frame-set-input-focus frame))
418 (cond ((memq window-system '(x ns mac))
419 (x-focus-frame frame))
420 ((eq window-system 'w32)
421 (w32-focus-frame frame)))
422 (when focus-follows-mouse
423 (set-mouse-position frame (1- (frame-width frame)) 0)))))
425 (defun org-float-time (&optional time)
426 "Convert time value TIME to a floating point number.
427 TIME defaults to the current time."
428 (if (featurep 'xemacs)
429 (time-to-seconds (or time (current-time)))
432 ;; `user-error' is only available from 24.2.50 on
433 (unless (fboundp 'user-error)
434 (defalias 'user-error 'error))
436 (defmacro org-no-popups (&rest body)
437 "Suppress popup windows.
438 Let-bind some variables to nil around BODY to achieve the desired
439 effect, which variables to use depends on the Emacs version."
440 (if (org-version-check "24.2.50" "" :predicate)
441 `(let (pop-up-frames display-buffer-alist)
443 `(let (pop-up-frames special-display-buffer-names special-display-regexps special-display-function)
446 (if (fboundp 'string-match-p)
447 (defalias 'org-string-match-p 'string-match-p)
448 (defun org-string-match-p (regexp string &optional start)
450 (funcall 'string-match regexp string start))))
452 (if (fboundp 'looking-at-p)
453 (defalias 'org-looking-at-p 'looking-at-p)
454 (defun org-looking-at-p (&rest args)
456 (apply 'looking-at args))))
458 ;; XEmacs does not have `looking-back'.
459 (if (fboundp 'looking-back)
460 (defalias 'org-looking-back 'looking-back)
461 (defun org-looking-back (regexp &optional limit greedy)
462 "Return non-nil if text before point matches regular expression REGEXP.
463 Like `looking-at' except matches before point, and is slower.
464 LIMIT if non-nil speeds up the search by specifying a minimum
465 starting position, to avoid checking matches that would start
468 If GREEDY is non-nil, extend the match backwards as far as
469 possible, stopping when a single additional previous character
470 cannot be part of a match for REGEXP. When the match is
471 extended, its starting position is allowed to occur before
473 (let ((start (point))
476 (and (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)
480 (narrow-to-region (point-min) start)
481 (while (and (> pos (point-min))
485 (looking-at (concat "\\(?:" regexp "\\)\\'"))))
489 (looking-at (concat "\\(?:" regexp "\\)\\'")))))
492 (defun org-floor* (x &optional y)
493 "Return a list of the floor of X and the fractional part of X.
494 With two arguments, return floor and remainder of their quotient."
495 (let ((q (floor x y)))
496 (list q (- x (if y (* y q) q)))))
498 ;; `pop-to-buffer-same-window' has been introduced in Emacs 24.1.
499 (defun org-pop-to-buffer-same-window
500 (&optional buffer-or-name norecord label)
501 "Pop to buffer specified by BUFFER-OR-NAME in the selected window."
502 (if (fboundp 'pop-to-buffer-same-window)
504 'pop-to-buffer-same-window buffer-or-name norecord)
505 (funcall 'switch-to-buffer buffer-or-name norecord)))
507 ;; RECURSIVE has been introduced with Emacs 23.2.
508 ;; This is copying and adapted from `tramp-compat-delete-directory'
509 (defun org-delete-directory (directory &optional recursive)
510 "Compatibility function for `delete-directory'."
512 (delete-directory directory)
514 (funcall 'delete-directory directory recursive)
515 ;; This Emacs version does not support the RECURSIVE flag. We
516 ;; use the implementation from Emacs 23.2.
517 (wrong-number-of-arguments
518 (setq directory (directory-file-name (expand-file-name directory)))
519 (if (not (file-symlink-p directory))
521 (if (eq t (car (file-attributes file)))
522 (org-delete-directory file recursive)
525 directory 'full "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*")))
526 (delete-directory directory)))))
529 (defmacro org-check-version ()
530 "Try very hard to provide sensible version strings."
531 (let* ((org-dir (org-find-library-dir "org"))
532 (org-version.el (concat org-dir "org-version.el"))
533 (org-fixup.el (concat org-dir "../mk/org-fixup.el")))
534 (if (require 'org-version org-version.el 'noerror)
536 (autoload 'org-release "org-version.el")
537 (autoload 'org-git-version "org-version.el"))
538 (if (require 'org-fixup org-fixup.el 'noerror)
540 ;; provide fallback definitions and complain
541 (warn "Could not define org version correctly. Check installation!")
543 (defun org-release () "N/A")
544 (defun org-git-version () "N/A !!check installation!!"))))))
546 (defun org-file-equal-p (f1 f2)
547 "Return t if files F1 and F2 are the same.
548 Implements `file-equal-p' for older emacsen and XEmacs."
549 (if (fboundp 'file-equal-p)
551 (let (f1-attr f2-attr)
552 (and (setq f1-attr (file-attributes (file-truename f1)))
553 (setq f2-attr (file-attributes (file-truename f2)))
554 (equal f1-attr f2-attr)))))
556 ;; `buffer-narrowed-p' is available for Emacs >=24.3
557 (defun org-buffer-narrowed-p ()
558 "Compatibility function for `buffer-narrowed-p'."
559 (if (fboundp 'buffer-narrowed-p)
561 (/= (- (point-max) (point-min)) (buffer-size))))
563 (defmacro org-with-silent-modifications (&rest body)
564 (if (fboundp 'with-silent-modifications)
565 `(with-silent-modifications ,@body)
566 `(org-unmodified ,@body)))
567 (def-edebug-spec org-with-silent-modifications (body))
569 (provide 'org-compat)
571 ;;; org-compat.el ends here