aboutsummaryrefslogtreecommitdiffstats
path: root/README.multi-tty
diff options
context:
space:
mode:
authorKaroly Lorentey <[email protected]>2004-04-18 02:24:18 +0000
committerKaroly Lorentey <[email protected]>2004-04-18 02:24:18 +0000
commit540216761e8c9105486b902c8eab89ffe6a09731 (patch)
tree0776536d2a95125a7cd35fea98acdb0899ab7299 /README.multi-tty
parentf2e45864d10657552bbc5cda8f10a5dcf1bfe511 (diff)
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: [email protected]/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 e925145bcb..f060f3f6ae 100644
--- a/README.multi-tty
+++ b/README.multi-tty
@@ -187,6 +187,17 @@ See arch logs.
THINGS TO DO
------------
+** frame-creation-function was removed, which might be a bad idea.
+ Think up a compatible solution.
+
+** make-frame does not correctly handle extra parameters in its
+ argument:
+
+ (frame-parameter (make-frame (list (cons 'foobar 42))) 'foobar)
+ => nil
+
+ (This is likely an error in the CVS trunk.)
+
** Fix set-input-mode for multi-tty. It's a truly horrible interface;
what if we'd blow it up into several separate functions (with a
compatibility definition)?