diff options
| author | Bastien Guerry <bzg@altern.org> | 2012-12-31 10:29:17 (GMT) |
|---|---|---|
| committer | Bastien Guerry <bzg@altern.org> | 2012-12-31 10:29:17 (GMT) |
| commit | 001b6d1ebdd6e55097e60d4862c9baf98718a002 (patch) | |
| tree | d008fb6e94b3987ea56d2a7a38d376ebf02d4371 | |
| parent | 61993bc4bf86769ef37573c5b7db40feebb34d53 (diff) | |
| download | org-mode-001b6d1ebdd6e55097e60d4862c9baf98718a002.zip org-mode-001b6d1ebdd6e55097e60d4862c9baf98718a002.tar.gz | |
org.el (org-fontify-meta-lines-and-blocks-1): Fix fontification bug
* org.el (org-fontify-meta-lines-and-blocks-1): Fix
fontification bug when fontifying a keyword with no associated
value.
| -rw-r--r-- | lisp/org.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el index a780fa3..036409b 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5417,7 +5417,8 @@ by a #." (match-beginning 6) (match-end 6) (if (string-equal dc1 "+title:") '(font-lock-fontified t face org-document-title) - '(font-lock-fontified t face org-document-info)))) + '(font-lock-fontified t face org-document-info))) + (org-rear-nonsticky-at (match-end 0))) ((or (equal dc1 "+results") (member dc1 '("+begin:" "+end:" "+caption:" "+label:" "+orgtbl:" "+tblfm:" "+tblname:" "+results:" |
