From 25f78d1872c83d7f3e3e1f7b6a0a93ca8321c1d0 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 3 Jul 2002 10:00:41 +0000 Subject: [PATCH] (tramp-send-eof): Fix typo. (tramp-kill-process): Likewise. --- lisp/ChangeLog | 3 +++ lisp/net/tramp.el | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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))) -- 2.39.2