summaryrefslogtreecommitdiff
path: root/lisp/timezone.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/timezone.el')
-rw-r--r--lisp/timezone.el11
1 files changed, 4 insertions, 7 deletions
diff --git a/lisp/timezone.el b/lisp/timezone.el
index 621f02479f7..ff0b266245f 100644
--- a/lisp/timezone.el
+++ b/lisp/timezone.el
@@ -1,10 +1,9 @@
-;;; timezone.el --- time zone package for GNU Emacs
+;;; timezone.el --- time zone package for GNU Emacs -- lexical-binding: t -*-
;; Copyright (C) 1990-1993, 1996, 1999, 2001-2019 Free Software
;; Foundation, Inc.
-;; Author: Masanobu Umeda
-;; Maintainer: umerin@mse.kyutech.ac.jp
+;; Author: Masanobu Umeda <umerin@mse.kyutech.ac.jp>
;; Keywords: news
;; This file is part of GNU Emacs.
@@ -73,8 +72,7 @@ if nil, the local time zone is assumed."
(timezone-make-arpa-date (aref new 0) (aref new 1) (aref new 2)
(timezone-make-time-string
(aref new 3) (aref new 4) (aref new 5))
- (aref new 6))
- ))
+ (aref new 6))))
(defun timezone-make-date-sortable (date &optional local timezone)
"Convert DATE to a sortable date string.
@@ -85,8 +83,7 @@ if nil, the local time zone is assumed."
(let ((new (timezone-fix-time date local timezone)))
(timezone-make-sortable-date (aref new 0) (aref new 1) (aref new 2)
(timezone-make-time-string
- (aref new 3) (aref new 4) (aref new 5)))
- ))
+ (aref new 3) (aref new 4) (aref new 5)))))
;;