diff options
| author | Juanma Barranquero | 2004-04-27 22:42:58 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2004-04-27 22:42:58 +0000 |
| commit | 98155da2ad02d22f9ad18c8a7b6a62cc1de33b21 (patch) | |
| tree | a6ba926c03778b126ddb7abb43af43c64d84cd29 /lisp | |
| parent | 033ad8c637aa4d5224ba65edb67451b84bd018c0 (diff) | |
| download | emacs-98155da2ad02d22f9ad18c8a7b6a62cc1de33b21.tar.gz emacs-98155da2ad02d22f9ad18c8a7b6a62cc1de33b21.zip | |
(pcomplete-time-less-p): Remove.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/pcomplete.el | 6 |
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." | |||
| 1147 | 1147 | ||
| 1148 | ;; general utilities | 1148 | ;; general utilities |
| 1149 | 1149 | ||
| 1150 | (defsubst pcomplete-time-less-p (t1 t2) | ||
| 1151 | "Say whether time T1 is less than time T2." | ||
| 1152 | (or (< (car t1) (car t2)) | ||
| 1153 | (and (= (car t1) (car t2)) | ||
| 1154 | (< (nth 1 t1) (nth 1 t2))))) | ||
| 1155 | |||
| 1156 | (defun pcomplete-pare-list (l r &optional pred) | 1150 | (defun pcomplete-pare-list (l r &optional pred) |
| 1157 | "Destructively remove from list L all elements matching any in list R. | 1151 | "Destructively remove from list L all elements matching any in list R. |
| 1158 | Test is done using `equal'. | 1152 | Test is done using `equal'. |