diff options
Diffstat (limited to 'lisp/kermit.el')
-rw-r--r-- | lisp/kermit.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/kermit.el b/lisp/kermit.el index ee4f0d54480..a11163133ba 100644 --- a/lisp/kermit.el +++ b/lisp/kermit.el @@ -54,7 +54,7 @@ ;; ^C^Q^C to send an interrupt, and ^C^Q^Z for a stop signal, etc. (since ^C^C ;; just generates a local stop signal, which kermit ignores). ;; To connect to a VMS system, I use a shell script to invoke kermit thru the -;; tr filter, do "M-X kermit-send-cr", and then tell VMS that I'm on a +;; tr filter, do "M-X kermit-send-cr", and then tell VMS that I'm on a ;; half-duplex terminal. ;; Some caveats: @@ -84,14 +84,14 @@ (defun kermit-esc () "For sending escape sequences to a kermit running in shell mode." (interactive) - (process-send-string + (process-send-string (get-buffer-process (current-buffer)) (concat kermit-esc-char (char-to-string (read-char))))) (defun kermit-send-char () "Send an arbitrary character to a program in shell mode." (interactive) - (process-send-string + (process-send-string (get-buffer-process (current-buffer)) (char-to-string (read-char)))) |