emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/kermit.el


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/kermit.el
Date: Tue, 04 Feb 2003 06:32:18 -0500

Index: emacs/lisp/kermit.el
diff -c emacs/lisp/kermit.el:1.14 emacs/lisp/kermit.el:1.15
*** emacs/lisp/kermit.el:1.14   Sun Jul 15 12:15:34 2001
--- emacs/lisp/kermit.el        Tue Feb  4 06:32:17 2003
***************
*** 54,60 ****
  ;; ^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 
  ;; half-duplex terminal.
  
  ;; Some caveats:
--- 54,60 ----
  ;; ^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
  ;; half-duplex terminal.
  
  ;; Some caveats:
***************
*** 84,97 ****
  (defun kermit-esc ()
    "For sending escape sequences to a kermit running in shell mode."
    (interactive)
!   (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 
     (get-buffer-process (current-buffer))
     (char-to-string (read-char))))
  
--- 84,97 ----
  (defun kermit-esc ()
    "For sending escape sequences to a kermit running in shell mode."
    (interactive)
!   (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
     (get-buffer-process (current-buffer))
     (char-to-string (read-char))))
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]