aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-cmd.el6
-rw-r--r--lisp/eshell/esh-util.el4
2 files changed, 5 insertions, 5 deletions
diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el
index 535e169bcb3..72c8a239ff3 100644
--- a/lisp/eshell/esh-cmd.el
+++ b/lisp/eshell/esh-cmd.el
@@ -284,7 +284,7 @@ command line.")
284(defvar eshell-command-arguments nil) 284(defvar eshell-command-arguments nil)
285(defvar eshell-in-pipeline-p nil 285(defvar eshell-in-pipeline-p nil
286 "Internal Eshell variable, non-nil inside a pipeline. 286 "Internal Eshell variable, non-nil inside a pipeline.
287Has the value 'first, 'last for the first/last commands in the pipeline, 287Has the value `first', `last' for the first/last commands in the pipeline,
288otherwise t.") 288otherwise t.")
289(defvar eshell-in-subcommand-p nil) 289(defvar eshell-in-subcommand-p nil)
290(defvar eshell-last-arguments nil) 290(defvar eshell-last-arguments nil)
@@ -670,8 +670,8 @@ For an external command, it means an exit code of 0."
670 "Separate TERMS using SEPARATOR. 670 "Separate TERMS using SEPARATOR.
671If REVERSED is non-nil, the list of separated term groups will be 671If REVERSED is non-nil, the list of separated term groups will be
672returned in reverse order. If LAST-TERMS-SYM is a symbol, its value 672returned in reverse order. If LAST-TERMS-SYM is a symbol, its value
673will be set to a list of all the separator operators found (or '(list 673will be set to a list of all the separator operators found (or (nil)
674nil)' if none)." 674if none)."
675 (let ((sub-terms (list t)) 675 (let ((sub-terms (list t))
676 (eshell-sep-terms (list t)) 676 (eshell-sep-terms (list t))
677 subchains) 677 subchains)
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el
index f645702ac2b..e99a316889a 100644
--- a/lisp/eshell/esh-util.el
+++ b/lisp/eshell/esh-util.el
@@ -678,8 +678,8 @@ If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
678(defun eshell-file-attributes (file &optional id-format) 678(defun eshell-file-attributes (file &optional id-format)
679 "Return the attributes of FILE, playing tricks if it's over ange-ftp. 679 "Return the attributes of FILE, playing tricks if it's over ange-ftp.
680The optional argument ID-FORMAT specifies the preferred uid and 680The optional argument ID-FORMAT specifies the preferred uid and
681gid format. Valid values are 'string and 'integer, defaulting to 681gid format. Valid values are `string' and `integer', defaulting to
682'integer. See `file-attributes'." 682`integer'. See `file-attributes'."
683 (let* ((file (expand-file-name file)) 683 (let* ((file (expand-file-name file))
684 entry) 684 entry)
685 (if (string-equal (file-remote-p file 'method) "ftp") 685 (if (string-equal (file-remote-p file 'method) "ftp")