summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien <bzg@gnu.org>2020-02-12 11:54:49 +0100
committerBastien <bzg@gnu.org>2020-02-12 11:54:49 +0100
commitbfe2f919fa21c8931c60e1d73d91d21c14a790b0 (patch)
tree9b186c60000f081df518c7ac465cdb7cf6398fe1
parentea47d9ebb46320cbf5e43f32e0eb6fd524ec1fce (diff)
downloadorg-mode-bfe2f919fa21c8931c60e1d73d91d21c14a790b0.tar.gz
Fix 2508dfa6
-rw-r--r--lisp/ox.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ox.el b/lisp/ox.el
index 15432d3..b5cf9cc 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.