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:
parent
38db29e017
commit
88dcc76aa7
@ -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…
x
Reference in New Issue
Block a user