aboutsummaryrefslogtreecommitdiffstats
path: root/README.multi-tty
diff options
context:
space:
mode:
authorKaroly Lorentey2004-04-18 02:24:18 +0000
committerKaroly Lorentey2004-04-18 02:24:18 +0000
commit540216761e8c9105486b902c8eab89ffe6a09731 (patch)
tree0776536d2a95125a7cd35fea98acdb0899ab7299 /README.multi-tty
parentf2e45864d10657552bbc5cda8f10a5dcf1bfe511 (diff)
downloademacs-540216761e8c9105486b902c8eab89ffe6a09731.tar.gz
emacs-540216761e8c9105486b902c8eab89ffe6a09731.zip
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
Diffstat (limited to 'README.multi-tty')
-rw-r--r--README.multi-tty11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.multi-tty b/README.multi-tty
index e925145bcb2..f060f3f6aef 100644
--- a/README.multi-tty
+++ b/README.multi-tty
@@ -187,6 +187,17 @@ See arch logs.
187THINGS TO DO 187THINGS TO DO
188------------ 188------------
189 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.)
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)?