[gnus git] branch master updated: m0-13-66-g18f9ab4 =1= ntlm.el (ntlm-unibyte-string): Make it a macro, not an alias

Katsumi Yamaoka <[email protected]> Mon, 07 Sep 2015 01:42:31 +0200
Newsgroups gmane.emacs.gnus.cvs
Message-ID <[email protected]>
       via  18f9ab42277eed6174324c54815177763896bcb9 (commit)
      from  a4cb99d02cb4022fb250f71b631464857447c874 (commit)


- Log -----------------------------------------------------------------
commit 18f9ab42277eed6174324c54815177763896bcb9
Author: Katsumi Yamaoka <[email protected]>
Date:   Sun Sep 6 23:42:15 2015 +0000

    ntlm.el (ntlm-unibyte-string): Make it a macro, not an alias

diff --git a/lisp/ntlm.el b/lisp/ntlm.el
index f31257e..1550528 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")

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ntlm.el |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
-- 
Gnus Project