1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-03 20:24:29 +00:00

2006-07-24 Daiki Ueno <ueno@unixuser.org>

* pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
	letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
	andreas@altroot.de (Andreas V�e)
This commit is contained in:
Reiner Steib 2006-07-24 07:32:16 +00:00
parent 38db29e017
commit 88dcc76aa7
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2006-07-24 Daiki Ueno <ueno@unixuser.org>
* pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
letters from the end. Thanks to "David Smith" <davidsmith@acm.org> and
andreas@altroot.de (Andreas V,Av(Bgele)
2006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
* mouse.el (mouse-on-link-p): Doc fix.

View File

@ -87,7 +87,7 @@ Whether the passphrase is cached at all is controlled by
"If t, inform the recipient that the input is text.")
(defmacro pgg-truncate-key-identifier (key)
`(if (> (length ,key) 8) (substring ,key 8) ,key))
`(if (> (length ,key) 8) (substring ,key -8) ,key))
(provide 'pgg-def)