Browse Source

Bugfix: Fix regexp

The regular expression org-complex-heading-regexp had an error,
it would also match lines where there is no space after the stars.
Carsten Dominik 16 years ago
parent
commit
e30bf26061
2 changed files with 6 additions and 1 deletions
  1. 5 0
      lisp/ChangeLog
  2. 1 1
      lisp/org.el

+ 5 - 0
lisp/ChangeLog

@@ -1,3 +1,8 @@
+2009-01-06  Carsten Dominik  <carsten.dominik@gmail.com>
+
+	* org.el (org-set-regexps-and-options): Fix the regexp
+	`org-complex-heading-regexp'.
+
 2009-01-05  Carsten Dominik  <carsten.dominik@gmail.com>
 
 	* org.el (org-edit-src-get-label-format): New function.

+ 1 - 1
lisp/org.el

@@ -3233,7 +3233,7 @@ means to push this value onto the list in the variable.")
 		    (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
 		    "\\)\\>\\)?[ \t]*\\(.*\\)")
 	    org-complex-heading-regexp
-	    (concat "^\\(\\*+\\)\\(?:[ \t]+\\("
+	    (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
 		    (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
 		    "\\)\\>\\)?\\(?:[ \t]*\\(\\[#.\\]\\)\\)?[ \t]*\\(.*?\\)"
 		    "\\(?:[ \t]+\\(:[[:alnum:]_@:]+:\\)\\)?[ \t]*$")