branch: externals/idlwave commit 1641fe1ba1d0a104bdfcc9aae82cecbde948c090 Author: JD Smith <jdtsm...@gmail.com> Commit: JD Smith <jdtsm...@gmail.com>
Erase the full hidden output buffer. Hidden output accumulates on Windows, where the input is not echoed by the new CL (as of v7.1). --- idlw-shell.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/idlw-shell.el b/idlw-shell.el index 634d486cd7..63efec4156 100644 --- a/idlw-shell.el +++ b/idlw-shell.el @@ -1626,7 +1626,8 @@ and then calls `idlwave-shell-send-command' for any pending commands." (setq idlwave-shell-command-output (buffer-substring-no-properties (point-min) (point))) - (delete-region (point-min) (point))) + (erase-buffer)) + ;(delete-region (point-min) (point))) ;; In-shell output (setq idlwave-shell-command-output (with-current-buffer (process-buffer proc)