comparison lisp/server.el @ 83283:45e5f0224d81

Fix error when creating tty clients. * 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
author Karoly Lorentey <lorentey@elte.hu>
date Mon, 28 Mar 2005 04:24:51 +0000
parents bcf610fb9517
children 6deb860255f3
comparison
equal deleted inserted replaced
83282:6f9586cdd29c 83283:45e5f0224d81
662 `((client . ,proc))))) 662 `((client . ,proc)))))
663 (select-frame frame) 663 (select-frame frame)
664 (server-client-set client 'frame frame) 664 (server-client-set client 'frame frame)
665 (server-client-set client 'tty (display-name frame)) 665 (server-client-set client 'tty (display-name frame))
666 (server-client-set client 'display (frame-display frame)) 666 (server-client-set client 'display (frame-display frame))
667
667 ;; Set up display for the remote locale. 668 ;; Set up display for the remote locale.
668 (configure-display-for-locale) 669 ;; XXX This function has been removed from mule-cmds.el, we need to find another way.
670 ;; (configure-display-for-locale)
671
669 ;; Reply with our pid. 672 ;; Reply with our pid.
670 (server-send-string proc (concat "-emacs-pid " (number-to-string (emacs-pid)) "\n")) 673 (server-send-string proc (concat "-emacs-pid " (number-to-string (emacs-pid)) "\n"))
671 (setq dontkill t))) 674 (setq dontkill t)))
672 675
673 ;; -position LINE: Go to the given line in the next file. 676 ;; -position LINE: Go to the given line in the next file.