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'.
(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
(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)))