]> git.eshelyaron.com Git - emacs.git/commitdiff
(pcomplete-time-less-p): Remove.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 27 Apr 2004 22:42:58 +0000 (22:42 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 27 Apr 2004 22:42:58 +0000 (22:42 +0000)
lisp/pcomplete.el

index 42f4c23add1a17ac0ce2467ffe0ceddc01afb92f..1260867f7c6b92e654446e71e9496a059663e250 100644 (file)
@@ -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'.