Browse Source

Fix 2508dfa6

Bastien 5 years ago
parent
commit
bfe2f919fa
1 changed files with 4 additions and 2 deletions
  1. 4 2
      lisp/ox.el

+ 4 - 2
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.