projects
/
elisp
/
semi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
894fcf5
)
* pgg-def.el (pgg-truncate-key-identifier): New macro.
author
ueno
<ueno>
Wed, 3 Nov 1999 09:39:51 +0000
(09:39 +0000)
committer
ueno
<ueno>
Wed, 3 Nov 1999 09:39:51 +0000
(09:39 +0000)
pgg-def.el
patch
|
blob
|
history
diff --git
a/pgg-def.el
b/pgg-def.el
index
83507f3
..
9a7f6be
100644
(file)
--- a/
pgg-def.el
+++ b/
pgg-def.el
@@
-48,6
+48,9
@@
(defvar pgg-scheme nil
"Current scheme of PGP implementation")
+(defmacro pgg-truncate-key-identifier (key)
+ `(if (> (length ,key) 8) (substring ,key 8) ,key))
+
(provide 'pgg-def)
;;; pgg-def.el ends here