From: Juanma Barranquero Date: Wed, 3 Jul 2002 10:00:41 +0000 (+0000) Subject: (tramp-send-eof): Fix typo. X-Git-Tag: ttn-vms-21-2-B4~14331 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=25f78d1872c83d7f3e3e1f7b6a0a93ca8321c1d0;p=emacs.git (tramp-send-eof): Fix typo. (tramp-kill-process): Likewise. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 623a4c17fef..b1792680bf2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2002-07-03 Juanma Barranquero + * net/tramp.el (tramp-send-eof): Fix typo. + (tramp-kill-process): Likewise. + * subr.el (chars-in-region): Add obsolescence declaration for `chars-in-region'. diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 2965c69e2c7..e2f485be518 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -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)))