From da606d8aaac0fad7b95248a627012f828b3fd1df Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sat, 29 Sep 2012 07:21:12 +0200 Subject: [PATCH] org-src.el: Fix commit e279e9 --- lisp/org-src.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-src.el b/lisp/org-src.el index 62115ba9a..2a56859fe 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)) -- 2.11.4.GIT