Function: kermit-clean-on
kermit-clean-on is an interactive and byte-compiled function defined
in kermit.el.gz.
Signature
(kermit-clean-on)
Documentation
Delete all null characters and ^M's from the kermit output.
Note that another (perhaps better) way to do this is to use the
command kermit | tr -d \=\015''.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/kermit.el.gz
(defun kermit-clean-on ()
"Delete all null characters and ^M's from the kermit output.
Note that another (perhaps better) way to do this is to use the
command `kermit | tr -d \\='\\015\\=''."
(interactive)
(set-process-filter (get-buffer-process (current-buffer))
'kermit-clean-filter))