summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Maus <dmaus@ictsoc.de>2010-09-05 17:58:30 +0200
committerDavid Maus <dmaus@ictsoc.de>2010-09-05 17:58:30 +0200
commit3ece67cc1327083e4fa111f98c4e61a26a63487d (patch)
tree61f6f599754e8b55542a4c1e48374a23a2c00155
parent045e3aea280da14a4db36d7b81d959efde4b593a (diff)
downloadorg-mode-3ece67cc1327083e4fa111f98c4e61a26a63487d.tar.gz
org-list.el: Declare functions and variables to fix compiler warning
* org-list.el (org-outline-regexp, org-ts-regexp) (org-ts-regexp-both, org-in-regexps-block-p) (org-level-increment, org-at-heading-p) (outline-previous-heading, org-icompleting-read) (org-time-string-to-seconds): Declare to fix compiler warning.
-rw-r--r--lisp/org-list.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/org-list.el b/lisp/org-list.el
index 11aa85b..b58a23d 100644
--- a/lisp/org-list.el
+++ b/lisp/org-list.el
@@ -40,6 +40,9 @@
(defvar org-M-RET-may-split-line)
(defvar org-complex-heading-regexp)
(defvar org-odd-levels-only)
+(defvar org-outline-regexp)
+(defvar org-ts-regexp)
+(defvar org-ts-regexp-both)
(declare-function org-invisible-p "org" ())
(declare-function org-on-heading-p "org" (&optional invisible-ok))
@@ -55,6 +58,13 @@
(pom property &optional inherit literal-nil))
(declare-function org-narrow-to-subtree "org" ())
(declare-function org-show-subtree "org" ())
+(declare-function org-in-regexps-block-p "org"
+ (start-re end-re &optional bound))
+(declare-function org-level-increment "org" ())
+(declare-function org-at-heading-p "org" (&optional ignored))
+(declare-function outline-previous-heading "outline" ())
+(declare-function org-icompleting-read "org" (&rest args))
+(declare-function org-time-string-to-seconds "org" (s))
(defgroup org-plain-lists nil
"Options concerning plain lists in Org-mode."