From e92ae2e7622a30068991ef1a651b48a377126a31 Mon Sep 17 00:00:00 2001 From: Shoji Nishimura Date: Mon, 26 Mar 2012 22:26:45 +0200 Subject: [PATCH] =?utf8?q?org.el=20(org-display-inline-images):=20Honor=20?= =?utf8?q?the=20=CC=80beg'=20parameter.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * org.el (org-display-inline-images): Honor the ̀beg' parameter. TINYCHANGE --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 028243953..f1a4b9557 100644 --- a/lisp/org.el +++ b/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 "" "\\]"))) -- 2.11.4.GIT