From: Jim Porter Date: Tue, 22 Aug 2023 16:07:51 +0000 (-0700) Subject: ; * lisp/eshell/esh-io.el (eshell-get-target): Fix docstring typos. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=93815e5880516e0d2c860922aea0808b9f106098;p=emacs.git ; * lisp/eshell/esh-io.el (eshell-get-target): Fix docstring typos. --- 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)