Mercurial > emacs
changeset 55205:bc07155aabd8
(pcomplete-time-less-p): Remove.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 27 Apr 2004 22:42:58 +0000 |
parents | e23d5770ddb5 |
children | c2c29cafaa74 |
files | lisp/pcomplete.el |
diffstat | 1 files changed, 0 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/pcomplete.el Tue Apr 27 22:02:27 2004 +0000 +++ b/lisp/pcomplete.el Tue Apr 27 22:42:58 2004 +0000 @@ -1147,12 +1147,6 @@ ;; general utilities -(defsubst pcomplete-time-less-p (t1 t2) - "Say whether time T1 is less than time T2." - (or (< (car t1) (car t2)) - (and (= (car t1) (car t2)) - (< (nth 1 t1) (nth 1 t2))))) - (defun pcomplete-pare-list (l r &optional pred) "Destructively remove from list L all elements matching any in list R. Test is done using `equal'.