瀏覽代碼

Fix a bug in in-buffer src fontification

* lisp/org-src.el: Append a space character to copied text so that the
                   final text property change is picked up correctly
Dan Davison 14 年之前
父節點
當前提交
4f3a31dd97
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lisp/org-src.el

+ 1 - 1
lisp/org-src.el

@@ -774,7 +774,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 (concat 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))