diff options
Diffstat (limited to 'lisp/org/ox-md.el')
-rw-r--r-- | lisp/org/ox-md.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org/ox-md.el b/lisp/org/ox-md.el index 01e0aa0491b..dcd95e98711 100644 --- a/lisp/org/ox-md.el +++ b/lisp/org/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) |