diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2022-01-06 16:16:27 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2022-01-06 16:16:53 +0100 |
| commit | 7dcb6bf6aab943507a928d878d422679e86e608e (patch) | |
| tree | 1029b8c8ea3330fcdbf2f24dba76b55d30c88136 | |
| parent | 2af93706c123cb0361ea0111eb8e70eeb3c959df (diff) | |
Remove accidential print debugging
| -rw-r--r-- | corfu.el | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1102,11 +1102,9 @@ there hasn't been any input, then quit." (setq corfu--auto-timer nil) (when (and (not completion-in-region-mode) (eq (current-buffer) buffer)) - (pcase - (while-no-input ;; Interruptible capf query - (run-hook-wrapped 'completion-at-point-functions #'corfu--capf-wrapper)) + (pcase (while-no-input ;; Interruptible capf query + (run-hook-wrapped 'completion-at-point-functions #'corfu--capf-wrapper)) ((and `(,fun ,beg ,end ,table . ,plist) - (guard (message "XXXGOT RETURN %S %S %S" beg end (plist-get plist :company-prefix-length))) (guard (integer-or-marker-p beg)) (guard (<= beg (point) end)) (guard |
