Diary/2007-10-22
頬がはれる
朝起きたら、親知らずを抜いた方の頬がしっかり腫れていてびっくり。
Mule 19.28でChangeLogモード
日付が、最近のフォーマットと違って、current-time-stringそのままだった
change-log-redate
と、最近のemacsの方で実行すると自動的に更新されるけど、
mule上で編集したり検索しているときに日付フォーマットが違うと
いまいち使い勝手がよくない。
というわけで、add-log.elをちょっと変更。timezone.elはもっていたので
(require 'timezone) (defune simple-date-string (d) (format "%04d-%02d-%02d" (aref d 0) (aref d 1) (aref d 2))
という関数を用意しておいて、
current-time-stringを呼び出している箇所で
(simple-date-string (time-zone-fix-time (current-time-string) "JST" "JST))
とか。