X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/b35f288d478ef137a4d9e8e5a6a5f368a86b01f5..1b8dff239bf8091a75572064ff8fb085f3c073d6:/lisp/kermit.el diff --git a/lisp/kermit.el b/lisp/kermit.el index c1c78ea02f..da9fb1e386 100644 --- a/lisp/kermit.el +++ b/lisp/kermit.el @@ -1,7 +1,6 @@ ;;; kermit.el --- additions to shell mode for use with kermit -;; Copyright (C) 1988, 2001, 2002, 2003, 2004, 2005, -;; 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 1988, 2001-2013 Free Software Foundation, Inc. ;; Author: Jeff Norden ;; Maintainer: FSF @@ -64,7 +63,7 @@ ;; the -c (connect) command line option, which means you also have to specify a ;; line and baud on the command line, as in "kermit -l /dev/tty53 -b 9600 -c". ;; However, this will cause kermit to exit when the connection is closed. So -;; in order to do a file transfer, you have to think ahead and and add -r +;; in order to do a file transfer, you have to think ahead and add -r ;; (receive) to the command line. This means that you can't use the server ;; feature. The only fix I can see is to muck around with the source code for ;; kermit, although this probably wouldn't be too hard. What is needed is an @@ -78,7 +77,7 @@ (require 'shell) -(defvar kermit-esc-char "\C-\\" "*Kermit's escape char") +(defvar kermit-esc-char "\C-\\" "*Kermit's escape char.") (defun kermit-esc () "For sending escape sequences to a kermit running in shell mode." @@ -142,11 +141,10 @@ command `kermit | tr -d '\\015''." 'kermit-clean-filter)) (defun kermit-clean-off () - "Cancel a previous kermit-clean-shell-on command." + "Cancel a previous `kermit-clean-on' command." (interactive) (set-process-filter (get-buffer-process (current-buffer)) nil)) (provide 'kermit) -;; arch-tag: 6633215d-6c47-4e66-9f27-16fba02a8dce ;;; kermit.el ends here