comparison README.multi-tty @ 83105:efc02a84dfbb

Fix frame parameter handling in server.el. lisp/server.el (server-process-filter): Work around make-frame frame parameter bogosity by using modify-frame-parameters. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-145
author Karoly Lorentey <lorentey@elte.hu>
date Sun, 18 Apr 2004 02:24:18 +0000
parents efc0b56b83d9
children fd147ed0d1b8
comparison
equal deleted inserted replaced
83104:625059157bad 83105:efc02a84dfbb
184 184
185 See arch logs. 185 See arch logs.
186 186
187 THINGS TO DO 187 THINGS TO DO
188 ------------ 188 ------------
189
190 ** frame-creation-function was removed, which might be a bad idea.
191 Think up a compatible solution.
192
193 ** make-frame does not correctly handle extra parameters in its
194 argument:
195
196 (frame-parameter (make-frame (list (cons 'foobar 42))) 'foobar)
197 => nil
198
199 (This is likely an error in the CVS trunk.)
189 200
190 ** Fix set-input-mode for multi-tty. It's a truly horrible interface; 201 ** Fix set-input-mode for multi-tty. It's a truly horrible interface;
191 what if we'd blow it up into several separate functions (with a 202 what if we'd blow it up into several separate functions (with a
192 compatibility definition)? 203 compatibility definition)?
193 204