Fix last todo-mode change
* lisp/calendar/todo-mode.el (todo-read-category): Return the keymap in order to use its defined key bindings.
This commit is contained in:
parent
5d4d8a3932
commit
2317c61868
1 changed files with 2 additions and 1 deletions
|
@ -5753,7 +5753,8 @@ categories from `todo-category-completions-files'."
|
|||
(let ((minibuffer-local-completion-map
|
||||
(let ((map (make-sparse-keymap)))
|
||||
(set-keymap-parent map minibuffer-local-completion-map)
|
||||
(define-key map " " nil))))
|
||||
(define-key map " " nil)
|
||||
map)))
|
||||
(let* ((add (eq match-type 'add))
|
||||
(archive (eq match-type 'archive))
|
||||
(file0 (when (and file (> (length todo-files) 1))
|
||||
|
|
Loading…
Add table
Reference in a new issue