From 93815e5880516e0d2c860922aea0808b9f106098 Mon Sep 17 00:00:00 2001 From: Jim Porter Date: Tue, 22 Aug 2023 09:07:51 -0700 Subject: [PATCH] ; * lisp/eshell/esh-io.el (eshell-get-target): Fix docstring typos. --- lisp/eshell/esh-io.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/eshell/esh-io.el b/lisp/eshell/esh-io.el index f9f50ea433a..59c5a93d5c8 100644 --- a/lisp/eshell/esh-io.el +++ b/lisp/eshell/esh-io.el @@ -545,7 +545,7 @@ This returns a marker for that buffer." (point-marker))) (cl-defmethod eshell-get-target ((raw-target symbol) &optional mode) - "Convert a raw symbol RAW-TARGET into a valid output target using MODE. + "Convert a symbol RAW-TARGET into a valid output target using MODE. This returns RAW-TARGET, with its value initialized to nil if MODE is `overwrite'." (when (eq mode 'overwrite) @@ -553,12 +553,12 @@ This returns RAW-TARGET, with its value initialized to nil if MODE is raw-target) (cl-defmethod eshell-get-target ((raw-target process) &optional _mode) - "Convert a raw process RAW-TARGET into a valid output target. + "Convert a process RAW-TARGET into a valid output target. This just returns RAW-TARGET." raw-target) (cl-defmethod eshell-get-target ((raw-target marker) &optional _mode) - "Convert a raw process RAW-TARGET into a valid output target. + "Convert a marker RAW-TARGET into a valid output target. This just returns RAW-TARGET." raw-target) -- 2.39.2