; * doc/misc/eshell.texi (Globbing): Fix typo and clarify (bug#79175).

This commit is contained in:
Jim Porter 2025-08-24 10:38:59 -07:00
parent 308e3ab1db
commit 9f33fb2258

View file

@ -2042,8 +2042,8 @@ Matches zero or more copies of the glob pattern @var{x}. For example,
@item @var{x}##
Matches one or more copies of the glob pattern @var{x}. Thus,
@samp{fo#.el} matches @file{fo.el}, @file{foo.el}, @file{fooo.el},
etc.
@samp{fo##.el} matches @file{fo.el}, @file{foo.el}, @file{fooo.el},
etc, but not @file{f.el}.
@item @var{x}~@var{y}
Matches anything that matches the pattern @var{x} but not @var{y}. For