Revision cfc357cb84eaf248a44b324d7efc9de856b25d42 authored by Raphaël Cauderlier on 18 March 2021, 11:08:58 UTC, committed by Raphaël Cauderlier on 18 March 2021, 11:08:58 UTC
1 parent 3b0c3e0
Raw File
org-lint-dummy.el
;;; org-lint-dummy.el ---- A dummy package to ensure a recent-enough version of org is installed

;; Copyright (c) 2019 Nomadic Labs. <contact@nomadic-labs.com>
;; Author: Raphaël Cauderlier
;; Version: 0.1
;; License: MIT
;; Package-Requires: ((org "9.0"))
;; Filename: org-lint-dummy.el
;;; Commentary:
; This package can be used to enforce existence of the org-lint
; command that was introduced in Org-mode version 9.0

;;; Code:
(require 'org)

(provide 'org-lint-dummy)
;;; org-lint-dummy.el ends here
back to top