diff options
Diffstat (limited to 'lisp/cedet/semantic')
-rw-r--r-- | lisp/cedet/semantic/db.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cedet/semantic/db.el b/lisp/cedet/semantic/db.el index 82785ec6d2e..757e46677ed 100644 --- a/lisp/cedet/semantic/db.el +++ b/lisp/cedet/semantic/db.el @@ -609,7 +609,7 @@ The file associated with OBJ does not need to be in a buffer." (or (not (slot-boundp obj 'tags)) ;; (not (oref obj tags)) --> not needed anymore? (/= (or (oref obj fsize) 0) actualsize) - (not (equal (oref obj lastmodtime) actualmod)) + (not (time-equal-p (oref obj lastmodtime) actualmod)) ) )))) |