aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-08-07 00:20:13 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-08-07 00:20:13 +0200
commita68bbb2c61abd86e6f863e3af2ea4bebf87a820c (patch)
treea40350cc6ca8e3fc15531ecab7542bafe767b301
parentAdd rudementary search page to HTML. (diff)
downloadcalp-a68bbb2c61abd86e6f863e3af2ea4bebf87a820c.tar.gz
calp-a68bbb2c61abd86e6f863e3af2ea4bebf87a820c.tar.xz
Remove debug prints from term search.
-rw-r--r--module/output/terminal.scm9
1 files 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 <search-view>) 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)
)