From 86f3ef8d80bf8738fd3ba99f8d0f7ffec4e23a4e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 31 Jan 2018 18:20:25 +0100 Subject: [PATCH] org-macs: Fix typo in docstring. * lisp/org-macs.el (org-match-any-p): Fix typo in docstring. --- lisp/org-macs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-macs.el b/lisp/org-macs.el index afecd0819..caa5b8bc2 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)