diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el index 513a534d9b5..a65629b302c 100644 --- a/lisp/org/org-table.el +++ b/lisp/org/org-table.el @@ -3169,7 +3169,7 @@ ARGS are passed as arguments to the `message' function. Returns current time if a message is printed, otherwise returns T1. If T1 is nil, always messages." (let ((curtime (current-time))) - (if (or (not t1) (< 0 (nth 1 (time-subtract curtime t1)))) + (if (or (not t1) (time-less-p 1 (time-subtract curtime t1))) (progn (apply 'message args) curtime) t1)))