diff --git a/lisp/ox-md.el b/lisp/ox-md.el index 01e0aa049..dcd95e987 100644 --- a/lisp/ox-md.el +++ b/lisp/ox-md.el @@ -87,7 +87,8 @@ included into another document or application that reserves top-level headings for its own use." :group 'org-export-md :package-version '(Org . "9.6") - :type 'natnum) + ;; Avoid `natnum' because that's not available until Emacs 28.1. + :type 'integer)