branch: elpa/forth-mode
commit c99ed046dfec05bc1bef97b2e4396c1e736a454c
Author: Lars Brinkhoff <[email protected]>
Commit: Lars Brinkhoff <[email protected]>
Remove debug message.
---
forth-interaction-mode.el | 1 -
1 file changed, 1 deletion(-)
diff --git a/forth-interaction-mode.el b/forth-interaction-mode.el
index f3f15de847..c29bdb6402 100644
--- a/forth-interaction-mode.el
+++ b/forth-interaction-mode.el
@@ -94,7 +94,6 @@
"Remove terminal escape sequences from STRING."
(let ((n 0))
(while (setq n (string-match "[?[0-9;]*[a-z]" string n))
- (message "n = %d" n)
(setq string (replace-match "" t t string))))
(setq string (replace-regexp-in-string "\\`[[:space:]\n]*" "" string))
(setq string (replace-regexp-in-string "[[:space:]\n]*\\'" "" string))