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:
parent
38db29e017
commit
88dcc76aa7
2 changed files with 7 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue