diff options
Diffstat (limited to 'lisp/org/org-num.el')
-rw-r--r-- | lisp/org/org-num.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/org/org-num.el b/lisp/org/org-num.el index ebddaa32b4e..408b86ff411 100644 --- a/lisp/org/org-num.el +++ b/lisp/org/org-num.el @@ -29,8 +29,8 @@ ;; to toggle it. ;; ;; You can select what is numbered according to level, tags, COMMENT -;; keyword, or UNNUMBERED property. You can also skip footnotes -;; sections. See `org-num-max-level', `org-num-skip-tags', +;; keyword, or UNNUMBERED property. You can also skip footnotes +;; sections. See `org-num-max-level', `org-num-skip-tags', ;; `org-num-skip-commented', `org-num-skip-unnumbered', and ;; `org-num-skip-footnotes' for details. ;; @@ -63,6 +63,7 @@ (require 'cl-lib) (require 'org-macs) +(require 'org) ;Otherwise `org-num--comment-re' burps on `org-comment-string' (defvar org-comment-string) (defvar org-complex-heading-regexp) @@ -90,7 +91,7 @@ output." (face :tag "Use face")) :safe (lambda (val) (or (null val) (facep val)))) -(defcustom org-num-format-function 'org-num-default-format +(defcustom org-num-format-function #'org-num-default-format "Function used to display numbering. It is called with one argument, a list of numbers, and should return a string, or nil. When nil, no numbering is displayed. |