From bfe2f919fa21c8931c60e1d73d91d21c14a790b0 Mon Sep 17 00:00:00 2001 From: Bastien Date: Wed, 12 Feb 2020 11:54:49 +0100 Subject: [PATCH] Fix 2508dfa6 --- lisp/ox.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/ox.el b/lisp/ox.el index 15432d326..b5cf9cc73 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -6865,7 +6865,7 @@ back to standard interface." (org-switch-to-buffer-other-window (get-buffer-create "*Org Export Dispatcher*")) (setq cursor-type nil - header-line-format "Use C-v, M-v, C-n or C-p to navigate.") + header-line-format "Use SPC, DEL, C-n or C-p to navigate.") ;; Make sure that invisible cursor will not highlight square ;; brackets. (set-syntax-table (copy-syntax-table)) @@ -6901,7 +6901,9 @@ options as CDR." ;; C-p, SPC, DEL). (while (and (setq key (read-char-exclusive prompt)) (not expertp) - (memq key '(14 16 ?\s ?\d))) + ;; FIXME: Don't use C-v (22) here, as it is used as a + ;; modifier key in the export dispatch. + (memq key '(14 16 ?\s ?\d 134217846))) (org-scroll key t)) (cond ;; Ignore undefined associations.