aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorMiles Bader2004-09-09 09:36:36 +0000
committerMiles Bader2004-09-09 09:36:36 +0000
commita37d67ddadebe7cbcf6d5c5d2f5f4004797a32eb (patch)
tree06645beecd1ea81b98569d82ee5d486a95c3497f /lisp/eshell
parentdd6ab82fb5c85168043306deda1fa5a5010183c6 (diff)
parent6cb4a8923202a1f00fcbd2f7e3b8e0ee9e9bd3f4 (diff)
downloademacs-a37d67ddadebe7cbcf6d5c5d2f5f4004797a32eb.tar.gz
emacs-a37d67ddadebe7cbcf6d5c5d2f5f4004797a32eb.zip
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-36
Merge from emacs--cvs-trunk--0, emacs--gnus--5.10, gnus--rel--5.10 Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523 Merge from emacs--gnus--5.10, gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-524 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-534 Update from CVS * miles@gnu.org--gnu-2004/emacs--gnus--5.10--base-0 tag of miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-464 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-1 Import from CVS branch gnus-5_10-branch * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-2 Merge from lorentey@elte.hu--2004/emacs--multi-tty--0, emacs--cvs-trunk--0 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-3 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-4 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-18 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-19 Remove autoconf-generated files from archive * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-20 Update from CVS
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/em-pred.el15
1 files changed, 8 insertions, 7 deletions
diff --git a/lisp/eshell/em-pred.el b/lisp/eshell/em-pred.el
index 26349b4e94b..bbb82fc7cd8 100644
--- a/lisp/eshell/em-pred.el
+++ b/lisp/eshell/em-pred.el
@@ -186,12 +186,13 @@ OWNERSHIP:
186 186
187FILE ATTRIBUTES: 187FILE ATTRIBUTES:
188 l[+-]N +/-/= N links 188 l[+-]N +/-/= N links
189 a[Mwhm][+-](N|'FILE') access time +/-/= N mnths/weeks/days/mins 189 a[Mwhms][+-](N|'FILE') access time +/-/= N mnths/weeks/hours/mins/secs
190 if FILE specified, use as comparison basis; 190 (days if unspecified) if FILE specified,
191 so a+'file.c' shows files accessed before 191 use as comparison basis; so a+'file.c'
192 file.c was last accessed 192 shows files accessed before file.c was
193 m[Mwhm][+-](N|'FILE') modification time... 193 last accessed
194 c[Mwhm][+-](N|'FILE') change time... 194 m[Mwhms][+-](N|'FILE') modification time...
195 c[Mwhms][+-](N|'FILE') change time...
195 L[kmp][+-]N file size +/-/= N Kb/Mb/blocks 196 L[kmp][+-]N file size +/-/= N Kb/Mb/blocks
196 197
197EXAMPLES: 198EXAMPLES:
@@ -409,7 +410,7 @@ returning the resultant string."
409 "Return a predicate to test whether a file matches a certain time." 410 "Return a predicate to test whether a file matches a certain time."
410 (let* ((quantum 86400) 411 (let* ((quantum 86400)
411 qual amount when open close end) 412 qual amount when open close end)
412 (when (memq (char-after) '(?M ?w ?h ?m)) 413 (when (memq (char-after) '(?M ?w ?h ?m ?s))
413 (setq quantum (char-after)) 414 (setq quantum (char-after))
414 (cond 415 (cond
415 ((eq quantum ?M) 416 ((eq quantum ?M)