From: Juanma Barranquero Date: Tue, 27 Apr 2004 22:42:58 +0000 (+0000) Subject: (pcomplete-time-less-p): Remove. X-Git-Tag: ttn-vms-21-2-B4~6544 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=98155da2ad02d22f9ad18c8a7b6a62cc1de33b21;p=emacs.git (pcomplete-time-less-p): Remove. --- diff --git a/lisp/pcomplete.el b/lisp/pcomplete.el index 42f4c23add1..1260867f7c6 100644 --- a/lisp/pcomplete.el +++ b/lisp/pcomplete.el @@ -1147,12 +1147,6 @@ If specific documentation can't be given, be generic." ;; 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'.