Fix property fontification problem.
This commit is contained in:
parent
739edc7849
commit
816cc80acb
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
* lisp/org.el (org-op-to-function, org<>, org-string<=)
|
* lisp/org.el (org-op-to-function, org<>, org-string<=)
|
||||||
(org-string>=, org-string<>): New functions.
|
(org-string>=, org-string<>): New functions.
|
||||||
|
(org-property-re): Make sure the value contains a non-white
|
||||||
|
character.
|
||||||
|
|
||||||
2008-04-21 Carsten Dominik <dominik@science.uva.nl>
|
2008-04-21 Carsten Dominik <dominik@science.uva.nl>
|
||||||
|
|
||||||
|
|
|
@ -3580,7 +3580,7 @@ between words."
|
||||||
|
|
||||||
(defvar org-font-lock-keywords nil)
|
(defvar org-font-lock-keywords nil)
|
||||||
|
|
||||||
(defconst org-property-re (org-re "^[ \t]*\\(:\\([[:alnum:]_]+\\):\\)[ \t]*\\(\\S-.*\\)")
|
(defconst org-property-re (org-re "^[ \t]*\\(:\\([[:alnum:]_]+\\):\\)[ \t]*\\([^ \t\r\n].*\\)")
|
||||||
"Regular expression matching a property line.")
|
"Regular expression matching a property line.")
|
||||||
|
|
||||||
(defun org-set-font-lock-defaults ()
|
(defun org-set-font-lock-defaults ()
|
||||||
|
|
Loading…
Reference in New Issue