Fix copyright years by hand.
[bpt/emacs.git] / lisp / org / org-compat.el
CommitLineData
20908596
CD
1;;; org-compat.el --- Compatibility code for Org-mode
2
ba318903 3;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
20908596
CD
4
5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org
20908596
CD
8;;
9;; This file is part of GNU Emacs.
10;;
b1fc2b50 11;; GNU Emacs is free software: you can redistribute it and/or modify
20908596 12;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
20908596
CD
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
b1fc2b50 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
20908596
CD
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
c8d0cf5c
CD
32(eval-when-compile
33 (require 'cl))
34
621f83e4
CD
35(require 'org-macs)
36
9d459fc5 37(declare-function w32-focus-frame "term/w32-win" (frame))
c8d0cf5c 38
86fbb8ca
CD
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))
20908596
CD
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.
51If INHERITS is an existing face and if the Emacs version supports it,
c8d0cf5c
CD
52just inherit the face. If INHERITS is set and the Emacs version does
53not support it, copy the face specification from the inheritance face.
54If INHERITS is not given and SPECS is, use SPECS to define the face.
20908596
CD
55XEmacs and Emacs 21 do not know about the `min-colors' attribute.
56For them we convert a (min-colors 8) entry to a `tty' entry and move it
57to the top of the list. The `min-colors' attribute will be removed from
58any other entries, and any resulting duplicates will be removed entirely."
c8d0cf5c
CD
59 (when (and inherits (facep inherits) (not specs))
60 (setq specs (or specs
61 (get inherits 'saved-face)
62 (get inherits 'face-defface-spec))))
20908596
CD
63 (cond
64 ((and inherits (facep inherits)
c8d0cf5c
CD
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)))))
20908596
CD
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
86fbb8ca
CD
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
8223b1d2 113\f
20908596
CD
114;;;; Emacs/XEmacs compatibility
115
271672fa
BG
116(eval-and-compile
117 (defun org-defvaralias (new-alias base-variable &optional docstring)
118 "Compatibility function for defvaralias.
119Don'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
86fbb8ca
CD
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
20908596 160;; Overlay compatibility functions
20908596
CD
161(defun org-detach-overlay (ovl)
162 (if (featurep 'xemacs) (detach-extent ovl) (delete-overlay ovl)))
20908596
CD
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))))
20908596
CD
182(defun org-find-overlays (prop &optional pos delete)
183 "Find all overlays specifying PROP at POS or point.
184If DELETE is non-nil, delete all those overlays."
86fbb8ca 185 (let ((overlays (overlays-at (or pos (point))))
20908596
CD
186 ov found)
187 (while (setq ov (pop overlays))
86fbb8ca
CD
188 (if (overlay-get ov prop)
189 (if delete (delete-overlay ov) (push ov found))))
20908596
CD
190 found))
191
86fbb8ca 192(defun org-get-x-clipboard (value)
73d3db82
BG
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))))
86fbb8ca 199
afe98dfa
CD
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
86fbb8ca
CD
209;; Miscellaneous functions
210
20908596
CD
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.
219PLIST may be a list of properties, PROPS are individual properties and values
220that 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
93b62de8
CD
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.
229WINDOW defaults to the selected window. MAX-HEIGHT and MIN-HEIGHT are
230passed through to `fit-window-to-buffer'. If SHRINK-ONLY is set, call
86fbb8ca 231`shrink-window-if-larger-than-buffer' instead, the height limit is
93b62de8 232ignored in this case."
0bd48b37
CD
233 (cond ((if (fboundp 'window-full-width-p)
234 (not (window-full-width-p window))
c7cf0ebc
BG
235 ;; do nothing if another window would suffer
236 (> (frame-width) (window-width window))))
93b62de8
CD
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
afe98dfa
CD
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
20908596
CD
263;; Region compatibility
264
265(defvar org-ignore-region nil
271672fa 266 "Non-nil means temporarily disable the active region.")
20908596
CD
267
268(defun org-region-active-p ()
269 "Is `transient-mark-mode' on and the region active?
270Works on both Emacs and XEmacs."
271 (if org-ignore-region
272 nil
273 (if (featurep 'xemacs)
274 (and zmacs-regions (region-active-p))
275 (if (fboundp 'use-region-p)
276 (use-region-p)
277 (and transient-mark-mode mark-active))))) ; Emacs 22 and before
278
c8d0cf5c
CD
279(defun org-cursor-to-region-beginning ()
280 (when (and (org-region-active-p)
281 (> (point) (region-beginning)))
282 (exchange-point-and-mark)))
283
3ab2c837
BG
284;; Emacs 22 misses `activate-mark'
285(if (fboundp 'activate-mark)
286 (defalias 'org-activate-mark 'activate-mark)
287 (defun org-activate-mark ()
288 (when (mark t)
289 (setq mark-active t)
e66ba1df
BG
290 (when (and (boundp 'transient-mark-mode)
291 (not transient-mark-mode))
292 (setq transient-mark-mode 'lambda))
293 (when (boundp 'zmacs-regions)
294 (setq zmacs-regions t)))))
295
20908596
CD
296;; Invisibility compatibility
297
20908596
CD
298(defun org-remove-from-invisibility-spec (arg)
299 "Remove elements from `buffer-invisibility-spec'."
300 (if (fboundp 'remove-from-invisibility-spec)
301 (remove-from-invisibility-spec arg)
302 (if (consp buffer-invisibility-spec)
303 (setq buffer-invisibility-spec
304 (delete arg buffer-invisibility-spec)))))
305
306(defun org-in-invisibility-spec-p (arg)
307 "Is ARG a member of `buffer-invisibility-spec'?"
308 (if (consp buffer-invisibility-spec)
309 (member arg buffer-invisibility-spec)
310 nil))
311
86fbb8ca 312(defmacro org-xemacs-without-invisibility (&rest body)
27e428e7 313 "Turn off extents with invisibility while executing BODY."
86fbb8ca
CD
314 `(let ((ext-inv (extent-list nil (point-at-bol) (point-at-eol)
315 'all-extents-closed-open 'invisible))
316 ext-inv-specs)
317 (dolist (ext ext-inv)
318 (when (extent-property ext 'invisible)
319 (add-to-list 'ext-inv-specs (list ext (extent-property
320 ext 'invisible)))
321 (set-extent-property ext 'invisible nil)))
322 ,@body
323 (dolist (ext-inv-spec ext-inv-specs)
324 (set-extent-property (car ext-inv-spec) 'invisible
325 (cadr ext-inv-spec)))))
e66ba1df 326(def-edebug-spec org-xemacs-without-invisibility (body))
86fbb8ca 327
20908596
CD
328(defun org-indent-to-column (column &optional minimum buffer)
329 "Work around a bug with extents with invisibility in XEmacs."
71d35b24 330 (if (featurep 'xemacs)
86fbb8ca 331 (org-xemacs-without-invisibility (indent-to-column column minimum buffer))
71d35b24 332 (indent-to-column column minimum)))
20908596
CD
333
334(defun org-indent-line-to (column)
335 "Work around a bug with extents with invisibility in XEmacs."
71d35b24 336 (if (featurep 'xemacs)
86fbb8ca 337 (org-xemacs-without-invisibility (indent-line-to column))
71d35b24 338 (indent-line-to column)))
20908596 339
271672fa
BG
340(defun org-move-to-column (column &optional force buffer ignore-invisible)
341 (let ((buffer-invisibility-spec ignore-invisible))
342 (if (featurep 'xemacs)
343 (org-xemacs-without-invisibility (move-to-column column force buffer))
344 (move-to-column column force))))
621f83e4
CD
345
346(defun org-get-x-clipboard-compat (value)
86fbb8ca
CD
347 "Get the clipboard value on XEmacs or Emacs 21."
348 (cond ((featurep 'xemacs)
349 (org-no-warnings (get-selection-no-error value)))
621f83e4
CD
350 ((fboundp 'x-get-selection)
351 (condition-case nil
352 (or (x-get-selection value 'UTF8_STRING)
353 (x-get-selection value 'COMPOUND_TEXT)
354 (x-get-selection value 'STRING)
355 (x-get-selection value 'TEXT))
356 (error nil)))))
357
358(defun org-propertize (string &rest properties)
359 (if (featurep 'xemacs)
ce4fdcb9
CD
360 (progn
361 (add-text-properties 0 (length string) properties string)
362 string)
621f83e4 363 (apply 'propertize string properties)))
71d35b24 364
8223b1d2 365(defmacro org-find-library-dir (library)
bdebdb64 366 `(file-name-directory (or (locate-library ,library) "")))
c8d0cf5c 367
0bd48b37
CD
368(defun org-count-lines (s)
369 "How many lines in string S?"
370 (let ((start 0) (n 1))
371 (while (string-match "\n" s start)
372 (setq start (match-end 0) n (1+ n)))
373 (if (and (> (length s) 0) (= (aref s (1- (length s))) ?\n))
374 (setq n (1- n)))
375 n))
376
c8d0cf5c
CD
377(defun org-kill-new (string &rest args)
378 (remove-text-properties 0 (length string) '(line-prefix t wrap-prefix t)
379 string)
380 (apply 'kill-new string args))
381
54a0dee5
CD
382(defun org-select-frame-set-input-focus (frame)
383 "Select FRAME, raise it, and set input focus, if possible."
384 (cond ((featurep 'xemacs)
385 (if (fboundp 'select-frame-set-input-focus)
386 (select-frame-set-input-focus frame)
387 (raise-frame frame)
388 (select-frame frame)
389 (focus-frame frame)))
390 ;; `select-frame-set-input-focus' defined in Emacs 21 will not
391 ;; set the input focus.
392 ((>= emacs-major-version 22)
393 (select-frame-set-input-focus frame))
394 (t
395 (raise-frame frame)
396 (select-frame frame)
397 (cond ((memq window-system '(x ns mac))
398 (x-focus-frame frame))
399 ((eq window-system 'w32)
400 (w32-focus-frame frame)))
401 (when focus-follows-mouse
402 (set-mouse-position frame (1- (frame-width frame)) 0)))))
403
404(defun org-float-time (&optional time)
405 "Convert time value TIME to a floating point number.
406TIME defaults to the current time."
407 (if (featurep 'xemacs)
408 (time-to-seconds (or time (current-time)))
409 (float-time time)))
410
c7cf0ebc
BG
411;; `user-error' is only available from 24.2.50 on
412(unless (fboundp 'user-error)
413 (defalias 'user-error 'error))
414
415(defmacro org-no-popups (&rest body)
416 "Suppress popup windows.
417Let-bind some variables to nil around BODY to achieve the desired
418effect, which variables to use depends on the Emacs version."
271672fa
BG
419 (if (org-version-check "24.2.50" "" :predicate)
420 `(let (pop-up-frames display-buffer-alist)
421 ,@body)
422 `(let (pop-up-frames special-display-buffer-names special-display-regexps special-display-function)
423 ,@body)))
c7cf0ebc 424
acedf35c
CD
425(if (fboundp 'string-match-p)
426 (defalias 'org-string-match-p 'string-match-p)
427 (defun org-string-match-p (regexp string &optional start)
86fbb8ca 428 (save-match-data
acedf35c 429 (funcall 'string-match regexp string start))))
86fbb8ca 430
acedf35c
CD
431(if (fboundp 'looking-at-p)
432 (defalias 'org-looking-at-p 'looking-at-p)
433 (defun org-looking-at-p (&rest args)
86fbb8ca 434 (save-match-data
afe98dfa 435 (apply 'looking-at args))))
86fbb8ca 436
c7cf0ebc 437;; XEmacs does not have `looking-back'.
ed21c5c8
CD
438(if (fboundp 'looking-back)
439 (defalias 'org-looking-back 'looking-back)
440 (defun org-looking-back (regexp &optional limit greedy)
441 "Return non-nil if text before point matches regular expression REGEXP.
442Like `looking-at' except matches before point, and is slower.
443LIMIT if non-nil speeds up the search by specifying a minimum
444starting position, to avoid checking matches that would start
445before LIMIT.
446
447If GREEDY is non-nil, extend the match backwards as far as
448possible, stopping when a single additional previous character
449cannot be part of a match for REGEXP. When the match is
450extended, its starting position is allowed to occur before
451LIMIT."
452 (let ((start (point))
453 (pos
454 (save-excursion
455 (and (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)
456 (point)))))
457 (if (and greedy pos)
458 (save-restriction
459 (narrow-to-region (point-min) start)
460 (while (and (> pos (point-min))
461 (save-excursion
462 (goto-char pos)
463 (backward-char 1)
464 (looking-at (concat "\\(?:" regexp "\\)\\'"))))
465 (setq pos (1- pos)))
466 (save-excursion
467 (goto-char pos)
468 (looking-at (concat "\\(?:" regexp "\\)\\'")))))
469 (not (null pos)))))
470
acedf35c
CD
471(defun org-floor* (x &optional y)
472 "Return a list of the floor of X and the fractional part of X.
473With two arguments, return floor and remainder of their quotient."
474 (let ((q (floor x y)))
475 (list q (- x (if y (* y q) q)))))
476
8223b1d2 477;; `pop-to-buffer-same-window' has been introduced in Emacs 24.1.
e66ba1df
BG
478(defun org-pop-to-buffer-same-window
479 (&optional buffer-or-name norecord label)
480 "Pop to buffer specified by BUFFER-OR-NAME in the selected window."
481 (if (fboundp 'pop-to-buffer-same-window)
482 (funcall
483 'pop-to-buffer-same-window buffer-or-name norecord)
484 (funcall 'switch-to-buffer buffer-or-name norecord)))
5b409b39 485
c7cf0ebc
BG
486;; RECURSIVE has been introduced with Emacs 23.2.
487;; This is copying and adapted from `tramp-compat-delete-directory'
488(defun org-delete-directory (directory &optional recursive)
489 "Compatibility function for `delete-directory'."
490 (if (null recursive)
491 (delete-directory directory)
492 (condition-case nil
493 (funcall 'delete-directory directory recursive)
494 ;; This Emacs version does not support the RECURSIVE flag. We
495 ;; use the implementation from Emacs 23.2.
496 (wrong-number-of-arguments
497 (setq directory (directory-file-name (expand-file-name directory)))
498 (if (not (file-symlink-p directory))
499 (mapc (lambda (file)
500 (if (eq t (car (file-attributes file)))
501 (org-delete-directory file recursive)
502 (delete-file file)))
503 (directory-files
504 directory 'full "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*")))
505 (delete-directory directory)))))
8223b1d2
BG
506
507;;;###autoload
508(defmacro org-check-version ()
509 "Try very hard to provide sensible version strings."
510 (let* ((org-dir (org-find-library-dir "org"))
511 (org-version.el (concat org-dir "org-version.el"))
512 (org-fixup.el (concat org-dir "../mk/org-fixup.el")))
513 (if (require 'org-version org-version.el 'noerror)
514 '(progn
515 (autoload 'org-release "org-version.el")
516 (autoload 'org-git-version "org-version.el"))
517 (if (require 'org-fixup org-fixup.el 'noerror)
518 '(org-fixup)
519 ;; provide fallback definitions and complain
520 (warn "Could not define org version correctly. Check installation!")
521 '(progn
522 (defun org-release () "N/A")
523 (defun org-git-version () "N/A !!check installation!!"))))))
524
271672fa
BG
525(defun org-file-equal-p (f1 f2)
526 "Return t if files F1 and F2 are the same.
527Implements `file-equal-p' for older emacsen and XEmacs."
528 (if (fboundp 'file-equal-p)
529 (file-equal-p f1 f2)
530 (let (f1-attr f2-attr)
531 (and (setq f1-attr (file-attributes (file-truename f1)))
532 (setq f2-attr (file-attributes (file-truename f2)))
533 (equal f1-attr f2-attr)))))
534
535;; `buffer-narrowed-p' is available for Emacs >=24.3
536(defun org-buffer-narrowed-p ()
537 "Compatibility function for `buffer-narrowed-p'."
538 (if (fboundp 'buffer-narrowed-p)
539 (buffer-narrowed-p)
540 (/= (- (point-max) (point-min)) (buffer-size))))
541
542(defmacro org-with-silent-modifications (&rest body)
543 (if (fboundp 'with-silent-modifications)
544 `(with-silent-modifications ,@body)
545 `(org-unmodified ,@body)))
546(def-edebug-spec org-with-silent-modifications (body))
547
e66ba1df 548(provide 'org-compat)
b349f79f 549
20908596 550;;; org-compat.el ends here