summaryrefslogtreecommitdiff
path: root/lisp/pcomplete.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2004-04-27 22:42:58 +0000
committerJuanma Barranquero <lekktu@gmail.com>2004-04-27 22:42:58 +0000
commit175a3909a655350aa0960148356965cb8c595979 (patch)
tree23ee9bbd5530f2035d58960499e9e0fd75a17ac7 /lisp/pcomplete.el
parent7741f060785eb6a5453a8e2c450ebd9871337211 (diff)
downloademacs-175a3909a655350aa0960148356965cb8c595979.tar.gz
(pcomplete-time-less-p): Remove.
Diffstat (limited to 'lisp/pcomplete.el')
-rw-r--r--lisp/pcomplete.el6
1 files changed, 0 insertions, 6 deletions
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'.