Forráskód Böngészése

org-src.el: Fix commit e279e9

Bastien Guerry 12 éve
szülő
commit
da606d8aaa
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      lisp/org-src.el

+ 1 - 1
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))