summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-09-29 07:21:12 +0200
committerBastien Guerry <bzg@altern.org>2012-09-29 07:21:12 +0200
commitda606d8aaac0fad7b95248a627012f828b3fd1df (patch)
tree245cd79f2e727818e15555fba53387d92ec07db9
parent4224cb3336cfb945210a35153ff2d06a2b21b3b4 (diff)
downloadorg-mode-da606d8aaac0fad7b95248a627012f828b3fd1df.tar.gz
org-src.el: Fix commit e279e9
-rw-r--r--lisp/org-src.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-src.el b/lisp/org-src.el
index 62115ba..2a56859 100644
--- a/lisp/org-src.el
+++ b/lisp/org-src.el
@@ -813,7 +813,7 @@ fontification of code blocks see `org-src-fontify-block' and
(get-buffer-create
(concat " org-src-fontification:" (symbol-name lang-mode)))
(delete-region (point-min) (point-max))
- (insert string)
+ (insert string " ") ;; so there's a final property change
(unless (eq major-mode lang-mode) (funcall lang-mode))
(font-lock-fontify-buffer)
(setq pos (point-min))