diff options
Diffstat (limited to 'lisp/erc')
| -rw-r--r-- | lisp/erc/erc.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index b20a6c9e966..8501e2cba7d 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el | |||
| @@ -6007,10 +6007,8 @@ Returns a list of the form (HIGH LOW), compatible with Emacs time format." | |||
| 6007 | (list (truncate (/ n 65536)) | 6007 | (list (truncate (/ n 65536)) |
| 6008 | (truncate (mod n 65536))))) | 6008 | (truncate (mod n 65536))))) |
| 6009 | 6009 | ||
| 6010 | (defalias 'erc-emacs-time-to-erc-time | 6010 | (defalias 'erc-emacs-time-to-erc-time 'float-time) |
| 6011 | (if (featurep 'xemacs) 'time-to-seconds 'float-time)) | 6011 | (defalias 'erc-current-time 'float-time) |
| 6012 | |||
| 6013 | (defalias 'erc-current-time 'erc-emacs-time-to-erc-time) | ||
| 6014 | 6012 | ||
| 6015 | (defun erc-time-diff (t1 t2) | 6013 | (defun erc-time-diff (t1 t2) |
| 6016 | "Return the time difference in seconds between T1 and T2." | 6014 | "Return the time difference in seconds between T1 and T2." |