From a68bbb2c61abd86e6f863e3af2ea4bebf87a820c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Fri, 7 Aug 2020 00:20:13 +0200 Subject: Remove debug prints from term search. --- module/output/terminal.scm | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/module/output/terminal.scm b/module/output/terminal.scm index c1d84d2b..e6476de7 100644 --- a/module/output/terminal.scm +++ b/module/output/terminal.scm @@ -212,20 +212,15 @@ (define-method (initialize (this ) args) (set! (current-page this) 0) (next-method) - ;; (display (search-term this)) (newline) - (format (current-error-port) "Entering search view~%") + (set! (search-term this) (prepare-string (search-term this))) - (format (current-error-port) "String preprade") (let ((q (build-query-proc (search-term this)))) - (format (current-error-port) "Query built~%") (slot-set! this 'search-result (prepare-query q - (get-event-set this))) - (format (current-error-port) "Query prepared~%") - ) + (get-event-set this)))) ;; (define current-page 0) ;; (define current-entry 0) ) -- cgit v1.2.3