emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/eshell/em-pred.el


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/eshell/em-pred.el
Date: Sat, 04 Sep 2004 09:30:04 -0400

Index: emacs/lisp/eshell/em-pred.el
diff -c emacs/lisp/eshell/em-pred.el:1.10 emacs/lisp/eshell/em-pred.el:1.11
*** emacs/lisp/eshell/em-pred.el:1.10   Fri Feb 20 12:32:19 2004
--- emacs/lisp/eshell/em-pred.el        Sat Sep  4 13:21:51 2004
***************
*** 186,197 ****
  
  FILE ATTRIBUTES:
    l[+-]N                 +/-/= N links
!   a[Mwhm][+-](N|'FILE')  access time +/-/= N mnths/weeks/days/mins
!                        if FILE specified, use as comparison basis;
!                        so a+'file.c' shows files accessed before
!                        file.c was last accessed
!   m[Mwhm][+-](N|'FILE')  modification time...
!   c[Mwhm][+-](N|'FILE')  change time...
    L[kmp][+-]N            file size +/-/= N Kb/Mb/blocks
  
  EXAMPLES:
--- 186,198 ----
  
  FILE ATTRIBUTES:
    l[+-]N                 +/-/= N links
!   a[Mwhms][+-](N|'FILE') access time +/-/= N mnths/weeks/hours/mins/secs
!                        (days if unspecified) if FILE specified,
!                        use as comparison basis; so a+'file.c'
!                        shows files accessed before file.c was
!                        last accessed
!   m[Mwhms][+-](N|'FILE') modification time...
!   c[Mwhms][+-](N|'FILE') change time...
    L[kmp][+-]N            file size +/-/= N Kb/Mb/blocks
  
  EXAMPLES:
***************
*** 409,415 ****
    "Return a predicate to test whether a file matches a certain time."
    (let* ((quantum 86400)
         qual amount when open close end)
!     (when (memq (char-after) '(?M ?w ?h ?m))
        (setq quantum (char-after))
        (cond
         ((eq quantum ?M)
--- 410,416 ----
    "Return a predicate to test whether a file matches a certain time."
    (let* ((quantum 86400)
         qual amount when open close end)
!     (when (memq (char-after) '(?M ?w ?h ?m ?s))
        (setq quantum (char-after))
        (cond
         ((eq quantum ?M)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]