# HG changeset patch # User Juanma Barranquero # Date 1083105778 0 # Node ID bc07155aabd8695ee478603d1618fc0d27ac510a # Parent e23d5770ddb5f3f2cd07f29b75ff85855876942d (pcomplete-time-less-p): Remove. diff -r e23d5770ddb5 -r bc07155aabd8 lisp/pcomplete.el --- 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'.