summaryrefslogtreecommitdiff
path: root/lisp/net/hmac-def.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/net/hmac-def.el')
-rw-r--r--lisp/net/hmac-def.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/hmac-def.el b/lisp/net/hmac-def.el
index f493d2d1691..d087d55c56f 100644
--- a/lisp/net/hmac-def.el
+++ b/lisp/net/hmac-def.el
@@ -73,7 +73,7 @@ If BIT is non-nil, truncate output to specified bits."
,(if (and bit (< (/ bit 8) L))
`(substring key-xor-opad 0 ,(/ bit 8))
;; return a copy of `key-xor-opad'.
- `(concat key-xor-opad)))
+ '(concat key-xor-opad)))
;; cleanup.
(fillarray key-xor-ipad 0)
(fillarray key-xor-opad 0)))))