1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| | ;;; org-install.el --- backward compatibility file
;;
;;; Code:
\f
;; This file contains the first-level extracted autoload definitions
;; in a standalone Org installation and need to be required from
;; startup configuration. For integrated Org installations, these
;; autoload definitions get extracted into different files (Emacs:
;; loaddefs.el, package manager: org-autoloads.el) and are
;; automatically required by the provided startup files. To allow a
;; user to switch between a standalone and an integrated version
;; without having to change the startup configuration, this
;; compatibility file should be present for integrated Org
;; installations.
(provide 'org-install)
\f
;; Local Variables:
;; no-byte-compile: t
;; coding: utf-8
;; End:
;;; org-install.el ends here
|