瀏覽代碼

org.el (org-display-inline-images): Honor the ̀beg' parameter.

* org.el (org-display-inline-images): Honor the ̀beg' parameter.

TINYCHANGE
Shoji Nishimura 13 年之前
父節點
當前提交
e92ae2e762
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -17177,7 +17177,7 @@ BEG and END default to the buffer boundaries."
     (save-restriction
       (widen)
       (setq beg (or beg (point-min)) end (or end (point-max)))
-      (goto-char (point-min))
+      (goto-char beg)
       (let ((re (concat "\\[\\[\\(\\(file:\\)\\|\\([./~]\\)\\)\\([^]\n]+?"
 			(substring (org-image-file-name-regexp) 0 -2)
 			"\\)\\]" (if include-linked "" "\\]")))