Skip to content

Instantly share code, notes, and snippets.

View yuichish's full-sized avatar

Yuichiro ISHII yuichish

View GitHub Profile

Keybase proof

I hereby claim:

  • I am yuichish on github.
  • I am yuichish (https://keybase.io/yuichish) on keybase.
  • I have a public key ASA3L9hzn1hJPY8Dj0v7_0_GqkpqOiEfgjv9Qtk15O2XgAo

To claim this, I am signing this object:

@yuichish
yuichish / mew-summary-form-considering-timezone.el
Last active October 11, 2018 07:13 — forked from peccu/mew-summary-form-considering-timezone.el
Mewのサマリモードで、タイムゾーンを考慮した日時を表示する
;; mew summary date/time considering timezone
;; http://permalink.gmane.org/gmane.mail.mew.general.japanese/2355
(defun mew-summary-form-time-z ()
"A function to return a message time, HH:MM"
(let ((s (MEW-DATE)))
(setq s (timezone-make-date-arpa-standard
(if (or (string= s "")
(not (string-match mew-time-rfc-regex s)))
(mew-time-ctz-to-rfc
(mew-file-get-time (mew-expand-msg (MEW-FLD) (MEW-NUM))))