org-install.el 442 B

123456789101112131415
  1. ;;; org-install.el --- backward compatibility file for obsolete configuration
  2. ;;
  3. ;;; Code:
  4. (warn "The file org-install is obsolete.
  5. It is provided here so that (require 'org-install) does not
  6. trigger an error for users with obsolete Emacs configuration.
  7. You can safely remove (require 'org-install) from your config.")
  8. (provide 'org-install)
  9. ;; Local Variables:
  10. ;; no-byte-compile: t
  11. ;; coding: utf-8
  12. ;; End:
  13. ;;; org-install.el ends here