]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/server.el (server-ensure-safe-dir): Revert part of b663c8372495
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 18 Jul 2019 15:10:05 +0000 (11:10 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 18 Jul 2019 15:10:05 +0000 (11:10 -0400)
A non-cosmetic change that was mistakenly included.

lisp/server.el

index 3435702a651f3ca5c211ced3a9b359aa5fc13dd6..d491a260377111a533c7142026df8435026aef78 100644 (file)
@@ -535,16 +535,6 @@ Creates the directory if necessary and makes sure:
       (cl-letf (((default-file-modes) ?\700)) (make-directory dir t))
       (setq attrs (file-attributes dir 'integer)))
 
-    (let ((olddir (or (getenv "TMPDIR") "/tmp")))
-      (when (and (equal dir (format "%s/emacs" (getenv "XDG_RUNTIME_DIR")))
-                 (file-writable-p olddir))
-        (let ((link (format "%s/emacs%d" olddir (user-uid))))
-          (unless (file-directory-p link)
-            ;; We're using the new location, so try and setup a symlink from
-            ;; the old location, in case we want to use an old emacsclient.
-            ;; FIXME: Check that it's safe to use!
-            (make-symbolic-link dir link t)))))
-
     ;; Check that it's safe for use.
     (let* ((uid (file-attribute-user-id attrs))
           (w32 (eq system-type 'windows-nt))