Commit MetaInfo

修订版4c68f6781680f0a25999a4773a9b696350c5c716 (tree)
时间2007-09-05 17:03:07
作者Daiki Ueno <ueno@unix...>
CommiterDaiki Ueno

Log Message

(epa-validity-face-alist): Fixed misuse of the list
widget type.
(epa-font-lock-keywords): Define as defvar.

更改概述

差异

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
11 2007-09-05 Daiki Ueno <ueno@unixuser.org>
22
3+ * epa.el (epa-validity-face-alist): Fixed misuse of the list
4+ widget type.
5+ (epa-font-lock-keywords): Define as defvar.
6+
37 * epa-file.el (epa-file-auto-mode-alist-entry): New variable.
48 (epa-file-enable): Install a strip-suffix entry in auto-mode-alist.
59 (epa-file-disable): Remove the entry from auto-mode-alist.
--- a/epa.el
+++ b/epa.el
@@ -156,18 +156,16 @@ the separate window."
156156 (full . epa-validity-high)
157157 (ultimate . epa-validity-high))
158158 "An alist mapping validity values to faces."
159- :type 'list
159+ :type '(repeat (cons symbol face))
160160 :group 'epa)
161161
162-(defcustom epa-font-lock-keywords
162+(defvar epa-font-lock-keywords
163163 '(("^\\*"
164164 (0 'epa-mark))
165165 ("^\t\\([^\t:]+:\\)[ \t]*\\(.*\\)$"
166166 (1 'epa-field-name)
167167 (2 'epa-field-body)))
168- "Default expressions to addon in epa-mode."
169- :type '(repeat (list string))
170- :group 'epa)
168+ "Default expressions to addon in epa-mode.")
171169
172170 (defconst epa-pubkey-algorithm-letter-alist
173171 '((1 . ?R)
Show on old repository browser