[Misc] Even more silencing

This commit is contained in:
Daniel - 2018-01-16 18:30:59 +01:00
parent b55ad9c988
commit 9e32733014
Signed by: dbo
GPG Key ID: 4F63DB96D45AA9C6
1 changed files with 4 additions and 1 deletions

View File

@ -597,7 +597,10 @@ _y_: ?y? year _q_: quit _L__l__c_: ?l?
;; disable usage of helm for `org-capture'
(eval-after-load 'helm-mode
'(add-to-list 'helm-completing-read-handlers-alist '(org-capture . nil)))
'(progn
(defvar helm-completing-read-handlers-alist) ; for the byte compiler
(add-to-list 'helm-completing-read-handlers-alist
'(org-capture . nil))))
(setq org-capture-use-agenda-date nil)