# HG changeset patch # User Juanma Barranquero # Date 1280838143 -7200 # Node ID 71264d39075a3a9c536e254857556b6d6f4d9d59 # Parent eed576998b56cfa44255e56cdb3ec27190427422 * server.el (server-start): Simplify loop. diff -r eed576998b56 -r 71264d39075a lisp/ChangeLog --- a/lisp/ChangeLog Tue Aug 03 01:20:48 2010 +0200 +++ b/lisp/ChangeLog Tue Aug 03 14:22:23 2010 +0200 @@ -1,3 +1,7 @@ +2010-08-03 Leo + + * server.el (server-start): Simplify loop. + 2010-08-02 Stefan Monnier * frame.el (screen-height, screen-width, set-screen-width) diff -r eed576998b56 -r 71264d39075a lisp/server.el --- a/lisp/server.el Tue Aug 03 01:20:48 2010 +0200 +++ b/lisp/server.el Tue Aug 03 14:22:23 2010 +0200 @@ -577,7 +577,7 @@ (loop ;; The auth key is a 64-byte string of random chars in the ;; range `!'..`~'. - for i below 64 + repeat 64 collect (+ 33 (random 94)) into auth finally return (concat auth)))) (process-put server-process :auth-key auth-key)