From 16030b0a23b688874725badf89a6603ada10f70e Mon Sep 17 00:00:00 2001 From: ueno Date: Fri, 5 Jan 2007 23:30:28 +0000 Subject: [PATCH] Fixed. --- epg.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/epg.el b/epg.el index 366e4b6..02f1601 100644 --- a/epg.el +++ b/epg.el @@ -1672,8 +1672,8 @@ This function is for internal use only." (string-to-number (aref line 2)) (aref line 4) (epg--time-from-seconds (aref line 5)) - (unless (equal (aref line 6) "0") - (epg--time-from-seconds (aref line 6))))) + (if (aref line 6) + (epg--time-from-seconds (aref line 6))))) ;;;###autoload (defun epg-list-keys (context &optional name mode) -- 1.7.10.4