summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2018-01-31 18:20:25 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-01-31 18:20:25 +0100
commit86f3ef8d80bf8738fd3ba99f8d0f7ffec4e23a4e (patch)
tree69343818ed0e33cbb3ed154ca994d954a88c72db
parent68b076bf5238e7236022128a22373f0b5f1daf77 (diff)
downloadorg-mode-86f3ef8d80bf8738fd3ba99f8d0f7ffec4e23a4e.tar.gz
org-macs: Fix typo in docstring.
* lisp/org-macs.el (org-match-any-p): Fix typo in docstring.
-rw-r--r--lisp/org-macs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-macs.el b/lisp/org-macs.el
index afecd08..caa5b8b 100644
--- a/lisp/org-macs.el
+++ b/lisp/org-macs.el
@@ -593,7 +593,7 @@ ones and overrule settings in the other lists."
(looking-at regexp)))
(defun org-match-any-p (re list)
- "Non nil if regexp RE matches an element in LIST."
+ "Non-nil if regexp RE matches an element in LIST."
(cl-some (lambda (x) (string-match-p re x)) list))
(defun org-in-regexp (regexp &optional nlines visually)