From d00dcd09ca64f8d653241c1462b4e0d05ca92c73 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 30 May 2015 00:06:54 +0200 Subject: [PATCH] org: Fix typo * lisp/org.el (org-not-done-heading-regexp): Fix a typo and make variable buffer-local, as expected. Reported-by: Alexander Borkowski --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 57a8cda3c..f3e4e37f8 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -4802,7 +4802,7 @@ Otherwise, these types are allowed: (make-variable-buffer-local 'org-not-done-regexp) (defvar org-not-done-heading-regexp nil "Matches a TODO headline that is not done.") -(make-variable-buffer-local 'org-not-done-regexp) +(make-variable-buffer-local 'org-not-done-heading-regexp) (defvar org-todo-line-regexp nil "Matches a headline and puts TODO state into group 2 if present.") (make-variable-buffer-local 'org-todo-line-regexp)