Don't consider tags as a replacement for a missing title in an headline
* lisp/org.el (org-set-regexps-and-options): Don't consider tags as a replacement for a missing title in an headline.
This commit is contained in:
parent
2de5d35243
commit
9d334897e3
|
@ -4824,7 +4824,7 @@ but the stars and the body are.")
|
|||
(concat "^\\(\\*+\\)"
|
||||
"\\(?: +" org-todo-regexp "\\)?"
|
||||
"\\(?: +\\(\\[#.\\]\\)\\)?"
|
||||
"\\(?: +\\(.*?\\)\\)?"
|
||||
"\\(?: +\\(.*?\\)\\)??"
|
||||
(org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
|
||||
"[ \t]*$")
|
||||
org-complex-heading-regexp-format
|
||||
|
@ -4842,7 +4842,7 @@ but the stars and the body are.")
|
|||
org-todo-line-tags-regexp
|
||||
(concat "^\\(\\*+\\)"
|
||||
"\\(?: +" org-todo-regexp "\\)?"
|
||||
"\\(?: +\\(.*?\\)\\)?"
|
||||
"\\(?: +\\(.*?\\)\\)??"
|
||||
(org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
|
||||
"[ \t]*$")
|
||||
org-deadline-regexp (concat "\\<" org-deadline-string)
|
||||
|
|
Loading…
Reference in New Issue