From fc09ad3be42bb859e51ae28485e72da3ff5bc7fa Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 7 Jan 2014 21:50:44 +0100 Subject: [PATCH] ox-beamer: Fix bug when an selecting environment * lisp/ox-beamer.el (org-beamer-select-environment): Function doesn't work if fast tag selection is disabled, so make sure it is always on, independently on user's configuration. Reported-by: Anders Johansson --- lisp/ox-beamer.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/ox-beamer.el b/lisp/ox-beamer.el index 7fd70739b..65ef53d16 100644 --- a/lisp/ox-beamer.el +++ b/lisp/ox-beamer.el @@ -1094,6 +1094,7 @@ aid, but the tag does not have any semantic meaning." envs) '((:endgroup)) '(("BMCOL" . ?|)))) + (org-use-fast-tag-selection t) (org-fast-tag-selection-single-key t)) (org-set-tags) (let ((tags (or (ignore-errors (org-get-tags-string)) "")))