From 6e73c22d157fb7c0a015a2ff81e523887e3e1f1f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 22 Oct 2012 23:56:26 +0200 Subject: [PATCH] org-export: Fix commit 468d86052805e3d1438ae4a0487b4f197e572b82 * contrib/lisp/org-export.el (org-export-dispatch-ui): Ensure fitting happens once contents have been inserted in the displayed buffer. --- contrib/lisp/org-export.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index b40f18843..7b185d413 100644 --- a/contrib/lisp/org-export.el +++ b/contrib/lisp/org-export.el @@ -4591,13 +4591,13 @@ back to standard interface." (delete-other-windows) (org-switch-to-buffer-other-window (get-buffer-create "*Org Export Dispatcher*")) - (org-fit-window-to-buffer) (setq cursor-type nil)) ;; At this point, the buffer containing the menu exists and is ;; visible in the current window. So, refresh it. (with-current-buffer "*Org Export Dispatcher*" (erase-buffer) (insert help)) + (org-fit-window-to-buffer) (org-export-dispatch-action standard-prompt allowed-keys backends options first-key expertp))))