Remove logging output

This commit is contained in:
Tony Garnock-Jones 2014-12-23 11:13:29 -05:00
parent bc62d6f415
commit cd8f5ad6e8
1 changed files with 0 additions and 1 deletions

View File

@ -14,7 +14,6 @@
(define fundamental-mode (make-mode "fundamental"))
(define-command fundamental-mode (self-insert-command e #:keyseq keyseq)
(log-info "self-insert-command ~a" (keyseq->keyspec keyseq))
(match keyseq
[(list (key (? char? ch) modifiers)) #:when (set-empty? (set-remove modifiers 'shift))
(buffer-insert! (editor-active-buffer e) (string->rope (string ch)))]