]> code.delx.au - gnu-emacs/commitdiff
(tramp-send-eof): Fix typo.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 3 Jul 2002 10:00:41 +0000 (10:00 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 3 Jul 2002 10:00:41 +0000 (10:00 +0000)
(tramp-kill-process): Likewise.

lisp/ChangeLog
lisp/net/tramp.el

index 623a4c17fef88128f1b2b0202db2ad9bba0aad72..b1792680bf2ab5b3db577307e616c7bf2ea54b45 100644 (file)
@@ -1,5 +1,8 @@
 2002-07-03  Juanma Barranquero  <lektu@terra.es>
 
+       * net/tramp.el (tramp-send-eof): Fix typo.
+       (tramp-kill-process): Likewise.
+
        * subr.el (chars-in-region): Add obsolescence declaration for
        `chars-in-region'.
 
index 2965c69e2c76e24a5a7fb46a7f30ccc98be76cbf..e2f485be5181b82ab9afecfb670d9a54d62542a5 100644 (file)
@@ -4446,7 +4446,7 @@ running as USER on HOST using METHOD."
 
 (defun tramp-send-eof (multi-method method user host)
   "Send EOF to the remote end.
-METHOD, HOST and USER specify the the connection."
+METHOD, HOST and USER specify the connection."
   (let ((proc (get-buffer-process
                (tramp-get-buffer multi-method method user host))))
     (unless proc
@@ -4456,7 +4456,7 @@ METHOD, HOST and USER specify the the connection."
 
 (defun tramp-kill-process (multi-method method user host)
   "Kill the connection process used by Tramp.
-MULTI-METHOD, METHOD, USER, and HOST, specify the connection."
+MULTI-METHOD, METHOD, USER, and HOST specify the connection."
   (let ((proc (get-buffer-process
               (tramp-get-buffer multi-method method user host))))
     (kill-process proc)))