This commit was generated by cvs2svn to compensate for changes in r3968,
[elisp/gnus.git-] / lisp / gnus-logic.el
index 0b14ce0..c276a0b 100644 (file)
@@ -1,5 +1,5 @@
 ;;; gnus-logic.el --- advanced scoring code for Gnus
-;; Copyright (C) 1996,97,98,99 Free Software Foundation, Inc.
+;; Copyright (C) 1996,97,98 Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
 ;; Keywords: news
      ((eq type 'at)
       (equal date match))
      ((eq type 'before)
-      (time-less-p match date))
+      (gnus-time-less match date))
      ((eq type 'after)
-      (time-less-p date match))
+      (gnus-time-less date match))
      (t
       (error "No such date score type: %s" type)))))
 
                      ((memq type '(s S string String))
                       'search-forward)
                      (t
-                      (error "Invalid match type: %s" type)))))
+                      (error "Illegal match type: %s" type)))))
          (goto-char (point-min))
          (prog1
              (funcall search-func match nil t)