From 18ba67bf57463b8de95d20f25436e99b768846d0 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 20 Mar 2012 12:01:25 +0100 Subject: [PATCH 1/2] org-latex.el: Fix TeX-master declaration. * org-latex.el (org-export-as-latex): Fix TeX-master declaration. TINYCHANGE --- lisp/org-latex.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/org-latex.el b/lisp/org-latex.el index d09ca48ef..b70f4929f 100644 --- a/lisp/org-latex.el +++ b/lisp/org-latex.el @@ -870,7 +870,6 @@ when PUB-DIR is set, use this as the publishing directory." (concat filename ".tex") filename))) (auto-insert nil); Avoid any auto-insert stuff for the new file - (TeX-master t) ; Avoid the Query for TeX master from AUCTeX (buffer (if to-buffer (cond ((eq to-buffer 'string) (get-buffer-create @@ -943,6 +942,9 @@ when PUB-DIR is set, use this as the publishing directory." :exclude-tags (plist-get opt-plist :exclude-tags) :LaTeX-fragments nil))) + ;; Avoid the Query for TeX master from AUCTeX + (if (boundp 'TeX-master) (setq TeX-master t)) + (set-buffer buffer) (erase-buffer) (org-install-letbind) From 04c9e0e64cc01fd7a2a06704b1915934861800ae Mon Sep 17 00:00:00 2001 From: Julian Gehring Date: Sun, 26 Feb 2012 13:51:22 +0100 Subject: [PATCH 2/2] doc/org.texi: Remove duplicated keybinding for 'org-refile-cache-clear'. * org.texi (Refiling notes): Remove duplicated keybinding. TINYCHANGE --- doc/org.texi | 3 --- 1 file changed, 3 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index 32418e80d..2b47e04d2 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -6895,10 +6895,7 @@ Use the refile interface to jump to a heading. Jump to the location where @code{org-refile} last moved a tree to. @item C-2 C-c C-w Refile as the child of the item currently being clocked. -@item C-0 C-c C-w @ @r{or} @ C-u C-u C-u C-c C-w - @orgcmdtkc{C-0 C-c C-w @ @r{or} @ C-u C-u C-u C-c C-w,C-0 C-c C-w,org-refile-cache-clear} - Clear the target cache. Caching of refile targets can be turned on by setting @code{org-refile-use-cache}. To make the command see new possible targets, you have to clear the cache with this command.