From 18f9ab42277eed6174324c54815177763896bcb9 Mon Sep 17 00:00:00 2001 From: Katsumi Yamaoka Date: Sun, 6 Sep 2015 23:42:15 +0000 Subject: [PATCH] ntlm.el (ntlm-unibyte-string): Make it a macro, not an alias --- lisp/ntlm.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lisp/ntlm.el b/lisp/ntlm.el index f31257ec9..155052881 100644 --- a/lisp/ntlm.el +++ b/lisp/ntlm.el @@ -136,11 +136,10 @@ is not given." (if (fboundp 'string-make-unibyte) `(string-make-unibyte ,string) string)) - (defalias 'ntlm-unibyte-string + (defmacro ntlm-unibyte-string (&rest bytes) (if (fboundp 'unibyte-string) - 'unibyte-string - (lambda (&rest bytes) - (concat (apply #'vector bytes)))))) + `(unibyte-string ,@bytes) + `(concat (vector ,@bytes))))) (eval-and-compile (autoload 'sha1 "sha1") -- 2.25.1