aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/pgg-def.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8bced1e0046..f5ebf1f1cec 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12006-07-24 Daiki Ueno <ueno@unixuser.org>
2
3 * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
4 letters from the end. Thanks to "David Smith" <davidsmith@acm.org> and
5 andreas@altroot.de (Andreas V,Av(Bgele)
6
12006-07-23 Thien-Thi Nguyen <ttn@gnu.org> 72006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
2 8
3 * mouse.el (mouse-on-link-p): Doc fix. 9 * mouse.el (mouse-on-link-p): Doc fix.
diff --git a/lisp/pgg-def.el b/lisp/pgg-def.el
index 058dca4fa8f..6481a433423 100644
--- a/lisp/pgg-def.el
+++ b/lisp/pgg-def.el
@@ -87,7 +87,7 @@ Whether the passphrase is cached at all is controlled by
87 "If t, inform the recipient that the input is text.") 87 "If t, inform the recipient that the input is text.")
88 88
89(defmacro pgg-truncate-key-identifier (key) 89(defmacro pgg-truncate-key-identifier (key)
90 `(if (> (length ,key) 8) (substring ,key 8) ,key)) 90 `(if (> (length ,key) 8) (substring ,key -8) ,key))
91 91
92(provide 'pgg-def) 92(provide 'pgg-def)
93 93