Fix error when creating tty clients.
authorKaroly Lorentey <lorentey@elte.hu>
Mon, 28 Mar 2005 04:24:51 +0000 (04:24 +0000)
committerKaroly Lorentey <lorentey@elte.hu>
Mon, 28 Mar 2005 04:24:51 +0000 (04:24 +0000)
* lisp/server.el (server-process-filter): Disable call to configure-display-for-locale.

git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-323

lisp/server.el

index f0ce3c6..b822eff 100644 (file)
@@ -664,8 +664,11 @@ The following commands are accepted by the client:
                    (server-client-set client 'frame frame)
                    (server-client-set client 'tty (display-name frame))
                    (server-client-set client 'display (frame-display frame))
+
                    ;; Set up display for the remote locale.
-                   (configure-display-for-locale)
+                   ;; XXX This function has been removed from mule-cmds.el, we need to find another way.
+                   ;; (configure-display-for-locale)
+
                    ;; Reply with our pid.
                    (server-send-string proc (concat "-emacs-pid " (number-to-string (emacs-pid)) "\n"))
                    (setq dontkill t)))