]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix some invalid Eshell syntax in an example
authorJim Porter <jporterbugs@gmail.com>
Tue, 18 Oct 2022 04:25:37 +0000 (21:25 -0700)
committerJim Porter <jporterbugs@gmail.com>
Tue, 18 Oct 2022 04:25:37 +0000 (21:25 -0700)
* doc/misc/eshell.texi (Expansion):
* etc/NEWS: Fix invalid Eshell syntax.

doc/misc/eshell.texi
etc/NEWS

index d518eafd7297f789277f3f89f124b91b67a58d5b..2945c05e85d16e4dc4aaea0cf7d7695a9637368c 100644 (file)
@@ -1176,7 +1176,7 @@ a number if possible.
 
 @item one or both (non-@code{nil}) lists
 Concatenate ``adjacent'' elements of each value (possibly converting
-back to a number as above).  For example, @samp{$list("a" "b")c}
+back to a number as above).  For example, @samp{$(list "a" "b")c}
 returns @samp{("a" "bc")}.
 
 @item anything else
index e63c7742bcdae899951e8083729fdaf02a0f3aa2..b48aeee008b66d7f77012ef00b55da27599ce193 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2606,7 +2606,7 @@ otherwise be returned.
 *** Concatenating Eshell expansions now works more similarly to other shells.
 When concatenating an Eshell expansion that returns a list, "adjacent"
 elements of each operand are now concatenated together,
-e.g. '$list("a" "b")c' returns '("a" "bc")'.  See the "(eshell)
+e.g. '$(list "a" "b")c' returns '("a" "bc")'.  See the "(eshell)
 Expansion" node in the Eshell manual for more details.
 
 +++