*** empty log message ***

This commit is contained in:
Juanma Barranquero 2007-10-17 08:15:04 +00:00
parent 2a9f4d55f8
commit d76e204651

View file

@ -505,11 +505,11 @@ kill any existing server communications subprocess."
(when server-use-tcp
(let ((auth-key
(loop
;; The auth key is a 64-byte string of random chars in the
;; range `!'..`~'.
for i below 64
collect (+ 33 (random 94)) into auth
finally return (concat auth))))
;; The auth key is a 64-byte string of random chars in the
;; range `!'..`~'.
for i below 64
collect (+ 33 (random 94)) into auth
finally return (concat auth))))
(process-put server-process :auth-key auth-key)
(with-temp-file server-file
(set-buffer-multibyte nil)