diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-10-16 15:26:37 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-10-16 15:27:43 +0200 |
commit | 9056e6392a7619332f5c191bf386164f4a093420 (patch) | |
tree | c45517804dd49e94c5ebce647c6444c794aebebf /lisp/type-break.el | |
parent | fd5c08892e05d235317c1efecb044fe53b6b9fa3 (diff) | |
download | emacs-9056e6392a7619332f5c191bf386164f4a093420.tar.gz emacs-9056e6392a7619332f5c191bf386164f4a093420.tar.bz2 emacs-9056e6392a7619332f5c191bf386164f4a093420.zip |
Remove some Emacs 19 compat code
* lisp/type-break.el (type-break-time-stamp): Remove Emacs 19
compat code.
Diffstat (limited to 'lisp/type-break.el')
-rw-r--r-- | lisp/type-break.el | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lisp/type-break.el b/lisp/type-break.el index 0d5377fb88b..a9ec19b2565 100644 --- a/lisp/type-break.el +++ b/lisp/type-break.el @@ -956,11 +956,7 @@ FRAC should be the inverse of the fractional value; for example, a value of sum)) (defun type-break-time-stamp (&optional when) - (if (fboundp 'format-time-string) - (format-time-string type-break-time-stamp-format when) - ;; Emacs 19.28 and prior do not have format-time-string. - ;; In that case, result is not customizable. Upgrade today! - (format "[%s] " (substring (current-time-string when) 11 16)))) + (format-time-string type-break-time-stamp-format when)) (defun type-break-format-time (secs) (let ((mins (/ secs 60))) |