mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-23 07:18:53 +00:00
b1f20bde27
* org-install.el: Enhance warning. Thanks to Simon Thum for requesting this.
16 lines
442 B
EmacsLisp
16 lines
442 B
EmacsLisp
;;; org-install.el --- backward compatibility file for obsolete configuration
|
||
;;
|
||
;;; Code:
|
||
(warn "The file org-install is obsolete.
|
||
It is provided here so that (require 'org-install) does not
|
||
trigger an error for users with obsolete Emacs configuration.
|
||
You can safely remove (require 'org-install) from your config.")
|
||
|
||
(provide 'org-install)
|
||
|
||
;; Local Variables:
|
||
;; no-byte-compile: t
|
||
;; coding: utf-8
|
||
;; End:
|
||
;;; org-install.el ends here
|