annotate README.multi-tty @ 83537:c19f348befac

Fix F10 behaviour. (Reported by Bernard Adrian.) * src/xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from Fmenu_bar_open. (syms_of_xmenu): Update defsubr. * lisp/menu-bar.el (menu-bar-open): New function. Bind it to f10. * lisp/term/x-win.el: Don't bind f10. * lisp/tmm.el: Remove autoload binding for f10. * lisp/ldefs-boot.el: Regenerate. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-577
author Karoly Lorentey <lorentey@elte.hu>
date Sat, 29 Jul 2006 20:57:26 +0000
parents 6c8cebe86511
children 5a2272b3d2b7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
1 -*- coding: utf-8; mode: text; -*-
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
2 GOAL
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
3 ----
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
4
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
5 This branch implements support for opening multiple, different tty
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
6 devices and simultaneous X and tty frames from a single Emacs session.
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
7
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
8 Some use cases:
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
9 Emacs is notoriously slow at startup, so most people use another
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
10 editor or emacsclient for quick editing jobs from the console.
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
11 Unfortunately, emacsclient was very awkward to use, because it did not
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
12 support opening a new Emacs frame on the current virtual tty.
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
13 Now, with multi-tty support, it can do that. (Emacsclient starts up
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
14 faster than vi!)
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
15
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
16 Some Gnus users (including me) run Gnus in an X frame in its own Emacs
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
17 instance, which they typically leave running for weeks. It would be
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
18 nice if they could connect to this instance from a remote ssh session
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
19 and check their messages without opening a remote X frame or resorting
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
20 to gnus-slave.
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
21
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
22 WHO IS DOING IT
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
23 ---------------
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
24
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
25 I'm Károly Lőrentey. My address: lorentey@elte.hu.
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
26
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
27 Comments, bug reports, suggestions and patches are welcome; send them
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
28 to multi-tty@lists.fnord.hu.
83190
57877d5c2cf2 Updated archive location in docs. (Thanks to Dan Waber.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83186
diff changeset
29
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
30 The following is a (sadly incomplete) list of people who have
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
31 contributed to the project by testing, submitting patches, bug
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
32 reports, and suggestions. Thanks!
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
33
83409
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
34 Bernard Adrian <bernadrian@free.fr>
83374
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
35 ARISAWA Akihiro <ari@mbf.ocn.ne.jp>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
36 Vincent Bernat <bernat@luffy.cx>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
37 Han Boetes <han@mijncomputer.nl>
83412
573105015a96 Work around Emacs crash on Konsole detach. (Tom Schutzer-Weissmann)
Karoly Lorentey <lorentey@elte.hu>
parents: 83411
diff changeset
38 Francisco Borges <borges@let.rug.nl>
83409
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
39 Damien Cassou <damien.cassou@laposte.net>
83374
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
40 Robert J. Chassell <bob@rattlesnake.com>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
41 Romain Francoise <romain@orebokech.com>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
42 Ami Fischman <ami@fischman.org>
83529
0d9e16eab053 Rework environment variable support. (Reported by Kalle Olavi Niemitalo and Noah Friedman.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83524
diff changeset
43 Noah Friedman <friedman@splode.com>
83374
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
44 Friedrich Delgado Friedrichs <friedel@nomaden.org>
83535
6c8cebe86511 Let frames on new terminals inherit 'environment and 'client.
Karoly Lorentey <lorentey@elte.hu>
parents: 83529
diff changeset
45 Eric Hanchrow <offby1@blarg.net>
83374
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
46 IRIE Tetsuya <irie@t.email.ne.jp>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
47 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
48 Bas Kok <nekkobassu@yahoo.com>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
49 Jurej Kubelka <Juraj.Kubelka@email.cz>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
50 David Lichteblau <david@lichteblau.com>
83496
f271076dab2d Fix toolbars on X frames when Emacs is started on a tty. (Reported by Richard Lewis.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83486
diff changeset
51 Richard Lewis <rtf@jabble.com>
83465
3ec9cf0f2305 Fix bootstrapping problem. (Reported by "mace".)
Karoly Lorentey <lorentey@elte.hu>
parents: 83460
diff changeset
52 mace <mace@kirjakaapeli.lib.hel.fi>
83486
fc6efa09ea7a Fix segfault by `C-x 5 2' on the controlling tty. (Reported by Suresh Madhu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83477
diff changeset
53 Suresh Madhu <madhu@cs.unm.edu>
83374
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
54 Xavier Mallard <zedek@gnu-rox.org>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
55 Istvan Marko <mi-mtty@kismala.com>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
56 Ted Morse <morse@ciholas.com>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
57 Gergely Nagy <algernon@debian.org>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
58 Dan Nicolaescu <dann@ics.uci.edu>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
59 Kalle Olavi Niemitalo <kon@iki.fi>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
60 Mark Plaksin <happy@mcplaksin.org>
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
61 Frank Ruell <stoerte@dreamwarrior.net>
83412
573105015a96 Work around Emacs crash on Konsole detach. (Tom Schutzer-Weissmann)
Karoly Lorentey <lorentey@elte.hu>
parents: 83411
diff changeset
62 Tom Schutzer-Weissmann <trmsw@yahoo.co.uk>
83417
fe870a866ce7 Don't let x_initialize break 8-bit input on ttys. (Reported by Joakim Verona.) Split `set-input-mode'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83416
diff changeset
63 Joakim Verona <joakim@verona.se>
83374
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
64 Dan Waber <dwaber@logolalia.com>
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
65 and many others.
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
66
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
67 Richard Stallman was kind enough to review an earlier version of my
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
68 patches.
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
69
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
70
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
71 MAILING LISTS
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
72 -------------
53228
c5b253fd2504 Added a pointer to my archive to README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
73
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
74 The multi-tty mailing list (discussion & bug reports):
83111
fd147ed0d1b8 Mention `tla replay' in README.multi-tty (Gaute Strokkenes).
Karoly Lorentey <lorentey@elte.hu>
parents: 83105
diff changeset
75
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
76 Address: multi-tty@lists.fnord.hu
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
77 Signup: http://lists.fnord.hu/mailman/listinfo/multi-tty
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
78 Archive: http://news.gmane.org/gmane.emacs.multi-tty/
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
79
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
80 Commit notifications (read-only):
83020
d617fe346b2b Added note about the commit mailing list.
Karoly Lorentey <lorentey@elte.hu>
parents: 83018
diff changeset
81
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
82 Address: multi-tty-commits@lists.fnord.hu
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
83 Signup: http://lists.fnord.hu/mailman/listinfo/multi-tty-commits
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
84
83020
d617fe346b2b Added note about the commit mailing list.
Karoly Lorentey <lorentey@elte.hu>
parents: 83018
diff changeset
85
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
86 STATUS
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
87 ------
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
88
83118
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
89 The branch is now very stable and almost full-featured. All of the
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
90 major problems have been fixed, only a few minor issues remain. (It
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
91 still needs to be ported to Windows/Mac/DOS, though.) Both multiple
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
92 tty device support and simultaneous X and tty frame support works
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
93 fine. Emacsclient has been extended to support opening new tty and X
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
94 frames. It has been changed to open new Emacs frames by default.
83118
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
95
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
96 The multi-tty branch has been scheduled for inclusion in the next
83274
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
97 major release of Emacs (version 23). I expect the merge into the
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
98 development trunk to occur sometime during next year (2006), after the
83118
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
99 merge of the Unicode branch.
83014
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
100
83208
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
101 Tested on GNU/Linux, Solaris 8, FreeBSD and OpenBSD. Please let me
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
102 know if you succeed or fail to use it on other platforms---I'll have a
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
103 few tricky test cases for you.
83014
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
104
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
105 Known problems:
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
106
83274
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
107 * GTK support. If you compile your Emacs with the GTK
83410
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
108 toolkit, some functionality of multi-tty will be lost. In
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
109 particular, you will not be able to work on multiple X
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
110 displays at once. Current releases of GTK have limitations
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
111 and bugs that prevent full-blown multi-display support in
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
112 Emacs. (GTK crashes when Emacs tries to disconnect from an
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
113 X server.) Use the Lucid toolkit if you want to see a
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
114 complete feature set.
83274
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
115
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
116 * The single-kboard mode.
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
117
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
118 If your multi-tty Emacs session seems to be frozen, you
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
119 probably have a recursive editing session or a pending
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
120 minibuffer prompt (which is a kind of recursive editing) on
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
121 another display. To unfreeze your session, switch to that
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
122 display and complete the recursive edit, for example by
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
123 pressing C-] (`abort-recursive-edit').
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
124
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
125 I am sorry to say that currently there is no way to break
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
126 out of this "single-kboard mode" from a frozen display. If
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
127 you are unable to switch to the display that locks the
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
128 others (for example because it is on a remote computer),
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
129 then you can use emacsclient to break out of all recursive
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
130 editing sessions:
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
131
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
132 emacsclient -e '(top-level)'
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
133
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
134 Note that this (perhaps) unintuitive behaviour is by design.
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
135 Single-kboard mode is required because of an intrinsic Emacs
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
136 limitation that is very hard to eliminate. (This limitation
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
137 is related to the single-threaded nature of Emacs.)
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
138
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
139 I plan to implement better user notification and support for
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
140 breaking out of single-kboard mode from locked displays.
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
141
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
142 * Mac, Windows and DOS support is broken, doesn't even
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
143 compile. Multiple display support will probably not provide
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
144 new Emacs features on these systems, but the multi-tty
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
145 branch changed a few low-level interfaces, and the
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
146 system-dependent source files need to be adapted
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
147 accordingly. The changes are mostly trivial, so almost
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
148 anyone can help, if only by compiling the branch and
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
149 reporting the compiler errors.
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
150
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
151
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
152 HOW TO GET THE BRANCH
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
153 ---------------------
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
154
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
155 The branch uses Bazaar 1 (http://bazaar.canonical.com) for version control.
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
156
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
157 Retrieving the latest version of the branch:
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
158
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
159 baz register-archive -f http://aszt.inf.elte.hu/~lorentey/mirror/arch/2004
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
160 baz get lorentey@elte.hu--2004/emacs--multi-tty <directory>
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
161
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
162 This incantation uses an archive mirror that is hosted on a
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
163 high-bandwidth site. Please note that on average there is a two-hour
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
164 delay for commits to arrive on this mirror. My primary mirror is on the
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
165 low-bandwidth http://lorentey.hu/ site:
83274
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
166
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
167 baz register-archive -f http://lorentey.hu/arch/2004/
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
168 baz get lorentey@elte.hu--2004/emacs--multi-tty <directory>
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
169
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
170 This is "instantly" updated, but very slow from outside Hungary.
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
171 (By "instantly" I mean as soon as I connect the notebook I work on to
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
172 a network. It could take days.)
83274
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
173
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
174 The Arch supermirror provides mirroring services for all public Arch
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
175 repositories. We have a mirror there, too, if you prefer.
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
176
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
177 baz register-archive -f http://mirrors.sourcecontrol.net/lorentey%40elte.hu--2004
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
178 baz get lorentey@elte.hu--2004/emacs--multi-tty <directory>
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
179
83247
a257c9edb57b README updates. (Reported by Xavier Mallard)
Karoly Lorentey <lorentey@elte.hu>
parents: 83235
diff changeset
180 My GPG key id is 0FB27A3F; it is available from
a257c9edb57b README updates. (Reported by Xavier Mallard)
Karoly Lorentey <lorentey@elte.hu>
parents: 83235
diff changeset
181 hkp://wwwkeys.eu.pgp.net/, or from my homepage at
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
182 http://lorentey.hu/rolam/gpg.html)
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
183
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
184 Don't worry if the above checkout takes a few minutes to complete;
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
185 once you have a source tree, updating it to the latest revision will
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
186 be _much_ faster. Use the following command for the update:
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
187
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
188 baz replay
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
189
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
190 You can find more information about Bazaar on
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
191 http://bazaar.canonical.com/. It's a distributed source control
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
192 system that is somewhat less broken than competing projects.
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
193
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
194 If you don't have Bazaar, the branch has a homepage from which you can
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
195 download conventional patches against Emacs CVS HEAD:
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
196
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
197 http://lorentey.hu/project/emacs.html
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
198
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
199 I suggest you use Bazaar whenever feasible.
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
200
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
201
83274
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
202 DEBIAN PACKAGES
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
203 ---------------
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
204
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
205 If you run Debian, or a distribution based on Debian, you are welcome
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
206 to use our binary packages; put these lines in your /etc/apt/sources.list:
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
207
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
208 # Multi-tty Emacs
83409
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
209 deb http://aszt.inf.elte.hu/~lorentey/mirror/apt unstable multi-tty
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
210 deb-src http://aszt.inf.elte.hu/~lorentey/mirror/apt unstable multi-tty
83274
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
211
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
212 Note that these packages are intended solely to provide an easy way to
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
213 test the new multi-tty features. They are not to be taken as Emacs
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
214 releases, and it's a mistake to expect robust operation or any kind of
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
215 timely support for them. Do not install them, unless you'd like to
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
216 have your editor crash on you.
c22274b1aa9b README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83264
diff changeset
217
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
218
83208
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
219 COMPILATION
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
220 -----------
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
221
83186
1adf7aed3649 Cleaned up README compile & test instructions.
Karoly Lorentey <lorentey@elte.hu>
parents: 83174
diff changeset
222 The multi-tty branch is compiled the same way as Emacs itself:
53235
1bf332eccca1 Added compilation instructions to README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 53234
diff changeset
223
83208
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
224 make maintainer-clean # (If you have compiled Emacs before)
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
225
83409
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
226 ./configure --without-gtk <your favourite options>
53235
1bf332eccca1 Added compilation instructions to README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 53234
diff changeset
227 make bootstrap
83186
1adf7aed3649 Cleaned up README compile & test instructions.
Karoly Lorentey <lorentey@elte.hu>
parents: 83174
diff changeset
228 make install
1adf7aed3649 Cleaned up README compile & test instructions.
Karoly Lorentey <lorentey@elte.hu>
parents: 83174
diff changeset
229
83208
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
230 If you have strange compilation errors, they may be caused by old
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
231 *.elc files that are left over from an earlier bootstrap. The `make
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
232 maintainer-clean' target deletes them, so it is a good idea to run
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
233 that before reporting a bug. (Emacs requires a clean recompilation
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
234 after certain kinds of source code changes.)
83186
1adf7aed3649 Cleaned up README compile & test instructions.
Karoly Lorentey <lorentey@elte.hu>
parents: 83174
diff changeset
235
83208
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
236 TESTING
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
237 -------
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
238
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
239 To test the multi-tty branch, start up the Emacs server with the
83186
1adf7aed3649 Cleaned up README compile & test instructions.
Karoly Lorentey <lorentey@elte.hu>
parents: 83174
diff changeset
240 following commands:
1adf7aed3649 Cleaned up README compile & test instructions.
Karoly Lorentey <lorentey@elte.hu>
parents: 83174
diff changeset
241
1adf7aed3649 Cleaned up README compile & test instructions.
Karoly Lorentey <lorentey@elte.hu>
parents: 83174
diff changeset
242 emacs
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
243 M-x server-start
53235
1bf332eccca1 Added compilation instructions to README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 53234
diff changeset
244
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
245 and then (from a shell prompt on another terminal) start emacsclient
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
246 with
83186
1adf7aed3649 Cleaned up README compile & test instructions.
Karoly Lorentey <lorentey@elte.hu>
parents: 83174
diff changeset
247 emacsclient -t /optional/file/names... (for a tty frame)
1adf7aed3649 Cleaned up README compile & test instructions.
Karoly Lorentey <lorentey@elte.hu>
parents: 83174
diff changeset
248 emacsclient /optional/file/names... (for an X frame)
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
249
83186
1adf7aed3649 Cleaned up README compile & test instructions.
Karoly Lorentey <lorentey@elte.hu>
parents: 83174
diff changeset
250 (Make sure both emacs and emacsclient are multi-tty versions.)
53340
db645482d6bc Trivial changes
Karoly Lorentey <lorentey@elte.hu>
parents: 53238
diff changeset
251 You'll hopefully have two fully working, independent frames on
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
252 separate terminals. The new frame is closed automatically when you
83101
a2e3f695c833 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83097
diff changeset
253 finish editing the specified files (C-x #), but delete-frame (C-x 5 0)
a2e3f695c833 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83097
diff changeset
254 also works. Of course, you can create frames on more than two tty
a2e3f695c833 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83097
diff changeset
255 devices.
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
256
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
257 Creating new frames on the same tty with C-x 5 2 (make-frame-command)
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
258 works, and behaves the same way as in previous Emacs versions. If you
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
259 exit emacs, all terminals should be restored to their previous states.
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
260
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
261 This is work in progress, and probably full of bugs. It is a good
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
262 idea to run emacs from gdb, so that you'll have a live instance to
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
263 debug if something goes wrong. Please send me your bug reports on our
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
264 mailing list: multi-tty@lists.fnord.hu
53234
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
265
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
266 TIPS & TRICKS
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
267 -------------
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
268
83028
bf5b5fb49420 Don't exit Emacs when the X display is closed during a tty-X combo session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83024
diff changeset
269 I think the best way to use the new Emacs is to have it running inside
bf5b5fb49420 Don't exit Emacs when the X display is closed during a tty-X combo session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83024
diff changeset
270 a disconnected GNU screen session, and always use emacsclient for
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
271 normal work. One advantage of this is that not a single keystroke of
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
272 your work will be lost if the display device that you are using
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
273 crashes, or the network connection times out, or whatever. (I had an
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
274 extremely unstable X server for some time while I was developing these
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
275 patches, and running Emacs this way has saved me a number of M-x
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
276 recover-session invocations.)
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
277
83300
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
278 I use the following two bash scripts to handle my Emacs sessions:
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
279
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
280 -------------------------------------------------------connect-emacs--
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
281 #!/bin/bash
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
282 # Usage: connect-emacs <name> <args>...
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
283 #
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
284 # Connects to the Emacs instance called NAME. Starts up the instance
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
285 # if it is not already running. The rest of the arguments are passed
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
286 # to emacsclient.
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
287
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
288 name="$1"
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
289 shift
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
290
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
291 if [ -z "$name" ]; then
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
292 echo "Usage: connect_emacs <name> <args>..." >&2
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
293 exit 1
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
294 fi
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
295 preload-emacs "$name" wait
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
296 /usr/bin/emacsclient.emacs-multi-tty -s "$name" "$@"
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
297 ----------------------------------------------------------------------
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
298
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
299 -------------------------------------------------------preload-emacs--
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
300 #!/bin/bash
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
301 # Usage: preload-emacs <name> [<waitp>]
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
302 #
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
303 # Preloads the Emacs instance called NAME in a detached screen
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
304 # session. Does nothing if the instance is already running. If WAITP
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
305 # is non-empty, the function waits until the server starts up and
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
306 # creates its socket; otherwise it returns immediately.
83028
bf5b5fb49420 Don't exit Emacs when the X display is closed during a tty-X combo session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83024
diff changeset
307
83300
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
308 name="$1"
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
309 waitp="$2"
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
310 screendir="/var/run/screen/S-$USER"
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
311 serverdir="/tmp/emacs$UID"
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
312 emacs=/usr/bin/emacs-multi-tty # Or wherever you installed your multi-tty Emacs
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
313
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
314 if [ -z "$name" ]; then
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
315 echo "Usage: preload_emacs <name> [<waitp>]" >&2
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
316 exit 1
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
317 fi
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
318
83300
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
319 if [ ! -e "$screendir"/*."$name" ]; then
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
320 if [ -e "$serverdir/$name" ]; then
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
321 # Delete leftover socket (for the wait option)
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
322 rm "$serverdir/$name"
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
323 fi
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
324 screen -dmS "$name" "$emacs" -nw --eval "(setq server-name \"$name\")" -f server-start
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
325 fi
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
326 if [ ! -z "$waitp" ]; then
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
327 while [ ! -e "$serverdir/$name" ]; do sleep 0.1; done
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
328 fi
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
329 ----------------------------------------------------------------------
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
330
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
331 I have the following in my profile to have two instances automatically
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
332 preloaded for editing and email:
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
333
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
334 preload-emacs editor
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
335 preload-emacs gnus
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
336
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
337 It is useful to set up short aliases for connect-emacs. I use the
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
338 following:
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
339
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
340 alias edit="connect-emacs editor"
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
341 alias e=edit
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
342 alias et="connect-emacs editor -t"
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
343 alias gnus="connect-emacs gnus"
83191
bc4b91420ff4 README updates, including a new Tips & Tricks section
Karoly Lorentey <lorentey@elte.hu>
parents: 83190
diff changeset
344
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
345
83325
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
346 CHANGELOG
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
347 ---------
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
348
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
349 See arch logs.
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
350
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
351
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
352 NEWS
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
353 ----
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
354
83325
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
355 For the NEWS file: (Needs much, much work)
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
356
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
357 ** Support for multiple terminal devices and simultaneous graphical
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
358 and tty frames has been added. You can test for the presence of
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
359 this feature in your Lisp code by testing for the `multi-tty'
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
360 feature.
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
361
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
362 *** The `window-system' variable has been made frame-local. The new
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
363 `initial-window-system' variable contains the `window-system'
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
364 value for the first frame.
83014
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
365
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
366 *** You can specify a terminal device (`tty' parameter) and a terminal
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
367 type (`tty-type' parameter) to `make-terminal-frame'.
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
368
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
369 *** The new function `make-frame-on-tty' allows you to create a new
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
370 frame on another tty device interactively.
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
371
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
372 *** The function `make-frame-on-display' now works during a tty
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
373 session, and `make-frame-on-tty' works during a graphical session.
83014
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
374
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
375 *** Emacsclient has been extended to support opening a new terminal
83046
8ba4eb224be7 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83045
diff changeset
376 frame. Its behaviour has been changed to open a new Emacs frame by
8ba4eb224be7 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83045
diff changeset
377 default. Use the -c option to get the old behavior of opening
8ba4eb224be7 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83045
diff changeset
378 files in the currently selected Emacs frame.
83045
8ca11496d25c Changed emacsclient to open new frames by default.
Karoly Lorentey <lorentey@elte.hu>
parents: 83036
diff changeset
379
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
380 *** C-z now invokes `suspend-frame', C-x C-c now invokes
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
381 `save-buffers-kill-terminal'.
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
382
83325
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
383 *** New functions: frame-tty-name, frame-tty-type, delete-tty,
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
384 suspend-tty, resume-tty, terminal-id, terminal-parameters,
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
385 terminal-parameter, set-terminal-parameter,
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
386 modify-terminal-parameters, environment, let-environment
83333
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
387
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
388 *** New variables: local-key-translation-map, local-function-key-map
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
389
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
390 *** The `keyboard-translate-table' variable and the terminal and
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
391 keyboard coding systems have been made terminal-local.
83014
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
392
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
393 *** In addition to the global key-translation-map and
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
394 function-key-map, Emacs has terminal-local
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
395 local-key-translation-map and local-function-key-map variables,
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
396 and uses them instead of the global keymaps to set up translations
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
397 and function key sequences relevant to a specific terminal device.
83014
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
398
83325
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
399 *** talk.el has been extended for multiple tty support.
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
400
83208
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
401 * * *
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
402
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
403 (The rest of this file consists of my development notes and as such it
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
404 is probably not very interesting for anyone else.)
e318dfc2edc6 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83203
diff changeset
405
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
406 THINGS TO DO
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
407 ------------
83035
fcf6fc349e0d Don't hang on the tty if called from a shell script.
Karoly Lorentey <lorentey@elte.hu>
parents: 83032
diff changeset
408
83524
673d62ad74b5 Fix and/or simplify terminal initialization files.
Karoly Lorentey <lorentey@elte.hu>
parents: 83511
diff changeset
409 ** See if `tty-defined-color-alist' needs to be terminal-local.
83535
6c8cebe86511 Let frames on new terminals inherit 'environment and 'client.
Karoly Lorentey <lorentey@elte.hu>
parents: 83529
diff changeset
410 Dan says it should be, so convert it.
83524
673d62ad74b5 Fix and/or simplify terminal initialization files.
Karoly Lorentey <lorentey@elte.hu>
parents: 83511
diff changeset
411
83504
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
412 ** emacsclient -t on the console does not work after su. You have to
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
413 use non-root accounts or start as root to see this.
83471
08b49bab776b Fix permissions. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83465
diff changeset
414
83504
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
415 Login: root
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
416 Password:
83472
b8bd59a73456 Fix tty state problem after error in `set-quit-char'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83471
diff changeset
417 # su lorentey
83471
08b49bab776b Fix permissions. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83465
diff changeset
418 $ emacsclient -t
08b49bab776b Fix permissions. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83465
diff changeset
419 *ERROR*: Could not open file: /dev/tty1
08b49bab776b Fix permissions. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83465
diff changeset
420
08b49bab776b Fix permissions. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83465
diff changeset
421 The tty can be opened as /dev/tty by emacsclient, but not by Emacs.
08b49bab776b Fix permissions. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83465
diff changeset
422 This seems to be a serious problem. Currently my only idea is to
08b49bab776b Fix permissions. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83465
diff changeset
423 bring back the ugly pty proxy hack from the initial versions of
08b49bab776b Fix permissions. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83465
diff changeset
424 multi-tty. Suggestions would be appreciated.
08b49bab776b Fix permissions. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83465
diff changeset
425
83504
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
426 Update: we could change emacsclient to pass its open file
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
427 descriptor to the Emacs process. Unfortunately, this requires a
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
428 new Lisp-level Emacs API, and as file descriptors are not otherwise
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
429 exported to Lisp, this approach seems at least as ugly as the pty
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
430 proxy idea.
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
431
83511
f714f11da40a Fix `vc-annotate' under X. (Reported by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83504
diff changeset
432 ** lisp/vc.el depends on the terminal type during load time.
f714f11da40a Fix `vc-annotate' under X. (Reported by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83504
diff changeset
433 `vc-annotate-color-map' is one example that needs to be fixed.
f714f11da40a Fix `vc-annotate' under X. (Reported by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83504
diff changeset
434
83454
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
435 ** Understand how `quit_throw_to_read_char' works, and fix any bugs
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
436 that come to light.
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
437
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
438 ** See if getcjmp can be eliminated somehow. Why does Emacs allow
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
439 asynchronous input processing while it's reading input anyway?
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
440
83437
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
441 ** `delete-frame' events are handled by `special-event-map'
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
442 immediately when read by `read_char'. This is fine but it prevents
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
443 higher-level keymaps from binding that event to get notified of the
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
444 deleted frame.
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
445
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
446 Sometimes it would be useful for Lisp code to be notified of frame
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
447 deletions after they have happened, usually because they want to
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
448 clean up after the deleted frame. Not all frame-local states can
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
449 be stored as a frame parameter. For example,
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
450 `display-splash-screen' uses `recursive-edit' with a special keymap
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
451 override to create its buffer---and it leads to all kinds of
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
452 nastiness if Emacs stays in this recursive edit mode after the
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
453 frame containing the splash screen is deleted. Basically, the
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
454 splash-screen implementation wants to throw out of the recursive
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
455 edit when the frame is deleted; however, it is not legal to throw
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
456 from `delete-frame-functions' because `delete-frame' must not fail.
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
457 (Introducing `delete-frame-after-functions' would not help either
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
458 because `delete-frame' may not fail at that time either.)
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
459
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
460 Currently `fancy-splash-screens' installs a
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
461 `delete-frame-functions' hook that sets up a timer to exit the
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
462 recursive edit. This is an adequate solution, but it would perhaps
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
463 be better to have something like a `frame-deleted' event that could
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
464 be bound in the normal way.
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
465
83421
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
466 ** Trouble: `setenv' doesn't actually set environment variables in the
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
467 Emacs process. This defeats the purpose of the elaborate
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
468 `server-with-environment' magic around the `tgetent' call in
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
469 `init_tty'. D'oh.
83420
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
470
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
471 ** (Possibly) create hooks in struct device for creating frames on a
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
472 specific terminal, and eliminate the hackish terminal-related frame
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
473 parameters (display, tty, tty-type).
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
474
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
475 make_terminal_frame
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
476 create_tty_output
83427
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
477
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
478 ** Decide whether to keep the C implementation of terminal parameters,
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
479 or revert to the previous, purely Lisp code. It turned out that
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
480 local environments do not need terminal parameters after all.
83420
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
481
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
482 ** Move Fsend_string_to_terminal to term.c, and declare get_named_tty
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
483 as static, removing it from dispextern.h.
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
484 Move fatal to emacs.c and declare it somewhere.
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
485
83416
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
486 ** Search for `suspend-emacs' references and replace them with
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
487 `suspend-frame', if necessary. Ditto for `save-buffers-kill-emacs'
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
488 vs. `save-buffers-kill-display'.
4513d8dcdfd5 Reimplement and extend support for terminal-local environment variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 83412
diff changeset
489
83412
573105015a96 Work around Emacs crash on Konsole detach. (Tom Schutzer-Weissmann)
Karoly Lorentey <lorentey@elte.hu>
parents: 83411
diff changeset
490 ** Emacs crashes when a tty frame is resized so that there is no space
573105015a96 Work around Emacs crash on Konsole detach. (Tom Schutzer-Weissmann)
Karoly Lorentey <lorentey@elte.hu>
parents: 83411
diff changeset
491 for all its windows. (Tom Schutzer-Weissmann)
573105015a96 Work around Emacs crash on Konsole detach. (Tom Schutzer-Weissmann)
Karoly Lorentey <lorentey@elte.hu>
parents: 83411
diff changeset
492
83374
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
493 ** Report GTK multi-display problems to GTK maintainers. For extra
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
494 credit, fix them.
83369
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
495
83410
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
496 Currently you can not connect to new X displays when you compile
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
497 Emacs with GTK support. If you want to play around with GTK
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
498 multidisplay (and don't mind core dumps), you can edit src/config.h
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
499 and define HAVE_GTK_MULTIDISPLAY there by hand.
83449
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
500
83477
3a9507e5aa39 Fix `server-delete-client' behavior when the user quits `kill-buffer'. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83472
diff changeset
501 http://bugzilla.gnome.org/show_bug.cgi?id=85715
3a9507e5aa39 Fix `server-delete-client' behavior when the user quits `kill-buffer'. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83472
diff changeset
502
83449
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
503 Update: Han reports that GTK+ version 2.8.9 almost gets display
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
504 disconnects right. GTK will probably be fully fixed by the time
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
505 multi-tty gets into the trunk.
83409
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
506
83477
3a9507e5aa39 Fix `server-delete-client' behavior when the user quits `kill-buffer'. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83472
diff changeset
507 Update: I am still having problems with GTK+ 2.8.10. I have the
3a9507e5aa39 Fix `server-delete-client' behavior when the user quits `kill-buffer'. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83472
diff changeset
508 impression that the various multidisplay fixes will only get
3a9507e5aa39 Fix `server-delete-client' behavior when the user quits `kill-buffer'. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83472
diff changeset
509 released in GTK+ 2.10.
3a9507e5aa39 Fix `server-delete-client' behavior when the user quits `kill-buffer'. (Reported by Han Boetes.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83472
diff changeset
510
83411
c35ff18ca977 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83410
diff changeset
511 ** Audit `face-valid-attribute-values' usage in customize and
c35ff18ca977 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83410
diff changeset
512 elsewhere. Its return value depends on the current window system.
c35ff18ca977 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83410
diff changeset
513 Replace static initializers using it with runtime functions. For
c35ff18ca977 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83410
diff changeset
514 example, custom's buttons are broken on non-initial device types.
c35ff18ca977 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83410
diff changeset
515
83387
0181341f0aca Fix Delete key on X by adapting normal-erase-is-backspace-mode for multi-tty. (Reported by Dan Waber and Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83378
diff changeset
516 ** Possibly turn off the double C-g feature when there is an X frame.
0181341f0aca Fix Delete key on X by adapting normal-erase-is-backspace-mode for multi-tty. (Reported by Dan Waber and Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83378
diff changeset
517 C.f. (emacs)Emergency Escape.
0181341f0aca Fix Delete key on X by adapting normal-erase-is-backspace-mode for multi-tty. (Reported by Dan Waber and Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83378
diff changeset
518
83369
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
519 ** frames-on-display-list should also accept frames.
83352
b258b3492423 Add two pending bugs to README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83350
diff changeset
520
83362
c3dd82172ed1 Enforce the presence of `window-system' and `tty-type' frame parameters in all frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83361
diff changeset
521 ** Consider the `tty-type' frame parameter and the `display-tty-type'
c3dd82172ed1 Enforce the presence of `window-system' and `tty-type' frame parameters in all frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83361
diff changeset
522 function. They serve the exact same purpose. I think it may be
c3dd82172ed1 Enforce the presence of `window-system' and `tty-type' frame parameters in all frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83361
diff changeset
523 a good idea to eliminate one of them, preferably `tty-type'.
c3dd82172ed1 Enforce the presence of `window-system' and `tty-type' frame parameters in all frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83361
diff changeset
524
83333
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
525 ** The handling of lisp/term/*.el, and frame creation in general, is a
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
526 big, big mess. How come the terminal-specific file is loaded by
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
527 tty-create-frame-with-faces? I don't think it is necessary to load
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
528 these files for each frame; once per terminal should be enough.
83369
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
529 Update: lisp/term/*.el is not loaded repeatedly anymore, but
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
530 faces.el still needs to be cleaned up.
83333
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
531
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
532 ** Fix frame-set-background-mode in this branch. It was recently
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
533 changed in CVS, and frame.el in multi-tty has not yet been adapted
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
534 for the changes. (It needs to look at
83369
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
535 default-frame-background-mode.) (Update: maybe it is fixed now;
83422
1f5d64c4df6f Fix compilation errors in previous commit.
Karoly Lorentey <lorentey@elte.hu>
parents: 83421
diff changeset
536 needs testing.) (Note that the byte compiler has this to say about
1f5d64c4df6f Fix compilation errors in previous commit.
Karoly Lorentey <lorentey@elte.hu>
parents: 83421
diff changeset
537 term/rxvt.el:)
1f5d64c4df6f Fix compilation errors in previous commit.
Karoly Lorentey <lorentey@elte.hu>
parents: 83421
diff changeset
538
1f5d64c4df6f Fix compilation errors in previous commit.
Karoly Lorentey <lorentey@elte.hu>
parents: 83421
diff changeset
539 term/rxvt.el:309:17:Warning: assignment to free variable
1f5d64c4df6f Fix compilation errors in previous commit.
Karoly Lorentey <lorentey@elte.hu>
parents: 83421
diff changeset
540 `default-frame-background-mode'
83333
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
541
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
542 ** I think `(set-)terminal-local-value' and the terminal parameter
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
543 mechanism should be integrated into a single framework.
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
544
83420
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
545 (Update: `(set-)terminal-local-value' is now eliminated, but the
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
546 terminal-local variables should still be accessible as terminal
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
547 parameters. This also applies to `display-name' and similar
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
548 functions.)
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83417
diff changeset
549
83333
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
550 ** Add the following hooks: after-delete-frame-hook (for server.el,
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
551 instead of delete-frame-functions),
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
552 after-delete-terminal-functions, after-create-terminal-functions.
40c0ee282254 Implement rudimentary Lisp-level terminal parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83328
diff changeset
553
83318
666b48e39a5a Work around mysterious breakage of arrow key recognition under screen (see first TODO in README).
Karoly Lorentey <lorentey@elte.hu>
parents: 83300
diff changeset
554 ** BULK RENAME: The `display-' prefix of new Lisp-level functions
666b48e39a5a Work around mysterious breakage of arrow key recognition under screen (see first TODO in README).
Karoly Lorentey <lorentey@elte.hu>
parents: 83300
diff changeset
555 conflicts with stuff like `display-time-mode'. Use `device-'
83328
f2eb4324cbaf Speed up loading of term/xterm.el (Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 83325
diff changeset
556 or `terminal-' instead. I think I prefer `terminal-'.
f2eb4324cbaf Speed up loading of term/xterm.el (Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 83325
diff changeset
557
83340
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
558 It turns out that most of the offending Lisp functions were defined
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
559 in the trunk. Therefore, compatibility aliases should be defined
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
560 for the following names:
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
561
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
562 display-color-cells terminal-color-cells
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
563 display-color-p terminal-color-p
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
564 display-graphic-p terminal-graphic-p
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
565 display-grayscale-p terminal-grayscale-p
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
566 display-images-p terminal-images-p
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
567 display-mm-height terminal-mm-height
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
568 display-mm-width terminal-mm-width
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
569 display-mouse-p terminal-mouse-p
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
570 display-multi-font-p terminal-multi-font-p
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
571 display-multi-frame-p terminal-multi-frame-p
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
572 display-pixel-height terminal-pixel-height
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
573 display-pixel-width terminal-pixel-width
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
574 display-pixels-per-inch terminal-pixels-per-inch
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
575 display-planes terminal-planes
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
576 display-popup-menus-p terminal-popup-menus-p
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
577 display-save-under terminal-save-under
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
578 display-screens terminal-screens
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
579 display-supports-face-attributes-p terminal-supports-face-attributes-p
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
580 display-visual-class terminal-visual-class
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
581 framep-on-display framep-on-terminal
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
582 frames-on-display-list frames-on-terminal-list
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
583
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
584 The following functions were introduced in the multi-tty branch, and
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
585 were renamed without aliases:
83340
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
586
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
587 delete-display delete-terminal
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
588 display-controlling-tty-p controlling-tty-p
83340
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
589 display-list terminal-list
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
590 display-live-p terminal-live-p
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
591 display-name terminal-name
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
592 display-tty-type tty-type
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
593 frame-display frame-terminal
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
594 selected-display selected-terminal
83340
f92ac4808cd4 README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83333
diff changeset
595
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
596 ** The single-keyboard mode of MULTI_KBOARD is extremely confusing
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
597 sometimes; Emacs does not respond to stimuli from other keyboards.
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
598 At least a beep or a message would be important, if the single-mode
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
599 is still required to prevent interference. (Reported by Dan
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
600 Nicolaescu.)
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
601
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
602 Update: selecting a region with the mouse enables single_kboard
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
603 under X. This is very confusing.
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
604
83298
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
605 Update: After discussions with Richard Stallman, this will be
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
606 resolved by having locked displays warn the user to wait, and
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
607 introducing a complex protocol to remotely bail out of
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
608 single-kboard mode by pressing C-g.
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
609
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
610 Update: Warning the user is not trivial to implement, as Emacs has
83298
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
611 only one echo area, shared by all frames. Ideally the warning
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
612 should not be displayed on the display that is locking the others.
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
613 Perhaps the high probability of user confusion caused by
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
614 single_kboard mode deserves a special case in the display code.
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
615 Alternatively, it might be good enough to signal single_kboard mode
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
616 by changing the modelines or some other frame-local display element
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
617 on the locked out displays.
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
618
83449
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
619 Update: In fact struct kboard does have an echo_string slot.
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
620
83350
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
621 ** The session management module is prone to crashes when the X
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
622 connection is closed and then later I try to connect to a new X
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
623 session:
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
624
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
625 #0 0xb7ebc806 in SmcGetIceConnection () from /usr/X11R6/lib/libSM.so.6
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
626 #1 0x080e6641 in x_session_check_input (bufp=0xbf86c9c0) at xsmfns.c:144
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
627 #2 0x080d3bbc in XTread_socket (device=0xa722ff8, expected=1, hold_quit=0xbf86ca90) at xterm.c:7037
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
628 #3 0x080fa404 in read_avail_input (expected=1) at keyboard.c:6696
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
629 #4 0x080fa4ca in handle_async_input () at keyboard.c:6900
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
630 #5 0x080d51fa in x_term_init (display_name=162628899, xrm_option=0x0, resource_name=0x857068c "emacs") at xterm.c:10622
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
631 #6 0x080d920e in x_display_info_for_name (name=162628899) at xfns.c:3975
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
632 #7 0x080d92f9 in check_x_display_info (object=1) at xfns.c:274
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
633 #8 0x080d97b8 in Fx_create_frame (parms=151221485) at xfns.c:3016
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
634 #9 0x0815bf72 in Ffuncall (nargs=2, args=0xbf86ceec) at eval.c:2851
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
635
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
636 I installed a workaround to prevent this. The X session manager is
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
637 only contacted when the very first display in the Emacs session is
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
638 an X display. Also, x_delete_display() on this display aborts
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
639 session management, and XTread_socket only calls
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
640 x_session_check_input when it is called for the display that the
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
641 session was opened on. While this does not really fix the bug, it
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
642 makes it much less frequent, because session manager support will
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
643 not normally be enabled when Emacs can survive the shutdown of the
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
644 X server.
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
645
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
646 See if xsmfns.c should be updated.
e7d5238afe52 Work around crashes in X session management after normal shutdown of X server.
Karoly Lorentey <lorentey@elte.hu>
parents: 83345
diff changeset
647
83167
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
648 ** Hunt down display-related functions in frame.el and extend them all
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
649 to accept display ids.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
650
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
651 ** rif->flush_display_optional (NULL) calls should be replaced by a
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
652 new global function.
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
653
83300
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
654 ** The set-locale-environment hack (adding the DISPLAY option) should
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
655 be replaced with a clean design.
83298
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
656
83300
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
657 ** standard-display-table should be display-local.
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
658 standard-display-european should be display-local.
83298
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
659
83328
f2eb4324cbaf Speed up loading of term/xterm.el (Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 83325
diff changeset
660 ** With iswitchb-default-method set to 'always-frame, only frames on
f2eb4324cbaf Speed up loading of term/xterm.el (Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 83325
diff changeset
661 the current display should be considered. This might involve
f2eb4324cbaf Speed up loading of term/xterm.el (Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 83325
diff changeset
662 extending `get-buffer-window'.
f2eb4324cbaf Speed up loading of term/xterm.el (Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 83325
diff changeset
663
83300
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
664 ** Have a look at Vlocale_coding_system. Seems like it would be a
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
665 tedious job to localize it, although most references use it for
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
666 interfacing with libc and are therefore OK with the global
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
667 definition.
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
668
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
669 Exceptions found so far: x-select-text and
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
670 x-cut-buffer-or-selection-value.
83298
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
671
83152
632f9d4fdffb README.multi-tty update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83148
diff changeset
672 ** Have a look at fatal_error_hook.
632f9d4fdffb README.multi-tty update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83148
diff changeset
673
83235
7950b2b0a56a README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83234
diff changeset
674 ** Have a look at set_frame_matrix_frame.
7950b2b0a56a README update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83234
diff changeset
675
83148
33462a853808 README.multi-tty update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83141
diff changeset
676 ** Check if we got term-setup-hook right.
33462a853808 README.multi-tty update.
Karoly Lorentey <lorentey@elte.hu>
parents: 83141
diff changeset
677
83234
ad592995fd24 Trivial changes in x_create_tip_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83230
diff changeset
678 ** I think tip_frame should be display-local.
ad592995fd24 Trivial changes in x_create_tip_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83230
diff changeset
679
ad592995fd24 Trivial changes in x_create_tip_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83230
diff changeset
680 ** Check display reference count handling in x_create_tip_frame.
ad592995fd24 Trivial changes in x_create_tip_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83230
diff changeset
681
83105
efc02a84dfbb Fix frame parameter handling in server.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 83103
diff changeset
682 ** make-frame does not correctly handle extra parameters in its
efc02a84dfbb Fix frame parameter handling in server.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 83103
diff changeset
683 argument:
efc02a84dfbb Fix frame parameter handling in server.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 83103
diff changeset
684
efc02a84dfbb Fix frame parameter handling in server.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 83103
diff changeset
685 (frame-parameter (make-frame (list (cons 'foobar 42))) 'foobar)
efc02a84dfbb Fix frame parameter handling in server.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 83103
diff changeset
686 => nil
efc02a84dfbb Fix frame parameter handling in server.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 83103
diff changeset
687
efc02a84dfbb Fix frame parameter handling in server.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 83103
diff changeset
688 (This is likely an error in the CVS trunk.)
efc02a84dfbb Fix frame parameter handling in server.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 83103
diff changeset
689
83055
e6b7cd8486dd README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83046
diff changeset
690 ** Dan Nicolaescu suggests that -nw should be added as an alias for -t
e6b7cd8486dd README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83046
diff changeset
691 in emacsclient. Good idea. (Alas, implementing this is not
e6b7cd8486dd README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83046
diff changeset
692 trivial, getopt_long does not seem to support two-letter ``short''
83409
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
693 options. Patches are welcome.)
83018
1465425fe2d3 Romain Francoise's and Ami Fischman's bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83014
diff changeset
694
83055
e6b7cd8486dd README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83046
diff changeset
695 ** Mark Plaksin suggests that emacsclient should accept the same
e6b7cd8486dd README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83046
diff changeset
696 X-related command-line arguments as Emacs. Most of the X-related
e6b7cd8486dd README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83046
diff changeset
697 argument-handling is done in Lisp, so this should be quite easy to
e6b7cd8486dd README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83046
diff changeset
698 implement.
83021
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
699
83076
5eaa708b8d47 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
700 ** Gergely Nagy suggests that C-x # should only kill the current
5eaa708b8d47 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
701 frame, not any other emacsclient frame that may have the same file
5eaa708b8d47 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
702 opened for editing. I think I agree with him.
5eaa708b8d47 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
703
83065
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
704 ** Very strange bug: visible-bell does not work on secondary
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
705 terminals in xterm and konsole. The screen does flicker a bit,
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
706 but it's so quick it isn't noticable.
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
707
83449
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
708 (Update: This is probably some problem with padding or whatnot on
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
709 the secondary terminals.)
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
710
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
711 ** Move baud_rate to struct display.
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
712
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
713 ** Implement support for starting an interactive Emacs session without
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
714 an initial frame. (The user would connect to it and open frames
83063
404175b0a47e README.multi-tty updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83055
diff changeset
715 later, with emacsclient.)
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
716
83118
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
717 ** Fix Mac support (I can't do this entirely myself). Note that the
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
718 current state of Mac-specific source files in the multi-tty tree
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
719 are not useful; before starting work on Mac support, revert to
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
720 pristine, pre-multi-tty versions.
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
721
83118
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
722 ** Fix W32 support (I can't do this entirely myself). Note that the
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
723 current state of W32-specific source files in the multi-tty tree
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
724 are not useful; before starting work on W32 support, revert to
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
725 pristine, pre-multi-tty versions.
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
726
83118
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
727 ** Fix DOS support (I can't do this entirely myself). Note that the
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
728 current state of DOS-specific source files in the multi-tty tree
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
729 are not useful; before starting work on DOS support, revert to
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
730 pristine, pre-multi-tty versions.
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
731
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
732 ** Do a grep on XXX and ?? for more issues.
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
733
83391
e99392472e41 Change `keyboard-translate-table' to be terminal-local.
Karoly Lorentey <lorentey@elte.hu>
parents: 83387
diff changeset
734 ** flow-ctrl.el must be updated.
e99392472e41 Change `keyboard-translate-table' to be terminal-local.
Karoly Lorentey <lorentey@elte.hu>
parents: 83387
diff changeset
735
83328
f2eb4324cbaf Speed up loading of term/xterm.el (Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 83325
diff changeset
736 ** Fix stuff_char for multi-tty. Doesn't seem to be of high priority.
f2eb4324cbaf Speed up loading of term/xterm.el (Dan Nicolaescu).
Karoly Lorentey <lorentey@elte.hu>
parents: 83325
diff changeset
737
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
738 DIARY OF CHANGES
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
739 ----------------
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
740
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
741 (ex-TODO items with explanations.)
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
742
83009
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
743 -- Introduce a new struct for terminal devices.
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
744
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
745 (Done, see struct tty_output. The list of members is not yet
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
746 complete.)
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
747
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
748 -- Change the bootstrap procedure to initialize tty_list.
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
749
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
750 (Done, but needs review.)
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
751
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
752 -- Change make-terminal-frame to support specifying another tty.
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
753
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
754 (Done, new frame parameters: `tty' and `tty-type'.)
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
755
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
756 -- Implement support for reading from multiple terminals.
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
757
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
758 (Done, read_avail_input tries to read from each terminal, until one
82989
f3845715a5f6 Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 82988
diff changeset
759 succeeds. MULTI_KBOARD is not used. Secondary terminals don't send
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
760 SIGIO!)
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
761
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
762 (Update: They do, now.)
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
763
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
764 (Update2: After enabling X, they don't.)
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
765
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
766 -- other-frame should cycle through the frames on the `current'
83009
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
767 terminal only.
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
768
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
769 (Done, by trivially modifiying next_frame and prev_frame.)
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
770
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
771 -- Support different terminal sizes.
83009
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
772
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
773 (Done, no problem.)
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
774
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
775 -- Make sure terminal resizes are handled gracefully. (Could be
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
776 problematic.)
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
777
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
778 (Done. We don't get automatic SIGWINCH for additional ttys,
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
779 though.)
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
780
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
781 -- Extend emacsclient to automatically open a new tty when it connects
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
782 to Emacs.
83009
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
783
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
784 (Done. It's an ugly hack, needs more work.)
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
785
53234
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
786 -- Redisplay must refresh the topmost frame on *all* terminals, not
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
787 just the initial terminal.
83009
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
788
53234
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
789 (Done, but introduced an ugly redisplay problems. Ugh.)
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53228
diff changeset
790
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
791 -- Fix redisplay problems.
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
792
53234
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
793 (Done; it turned out that the entire Wcm structure must be moved
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
794 inside tty_output. Why didn't I catch this earlier?)
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
795
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
796 -- Provide a way for emacsclient to tell Emacs that the tty has been
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
797 resized.
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
798
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
799 (Done, simply forward the SIGWINCH signal.)
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
800
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
801 -- Each keypress should automatically select the frame corresponding
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
802 to the terminal that it was coming from. This means that Emacs
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
803 must know from which terminal the last keyboard event came from.
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
804
53234
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
805 (Done, it was quite simple, the input event system already
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
806 supported multiple frames.)
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
807
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
808 -- Fix SIGIO issue with secondary terminals.
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
809
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
810 (Done, emacsclient signals Emacs after writing to the proxy pseudo
53234
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
811 terminal. Note that this means that multi-tty does not work with
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
812 raw ttys!)
53233
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
813
53341
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
814 (Update: This is bullshit. There is a read_input_waiting function,
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
815 extend that somehow.)
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
816
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
817 (Update of update: The first update was not right either, extending
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
818 read_input_waiting was not necessary. Secondary ttys do seem to
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
819 send signals on input.)
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
820
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
821 (Update^3: Not any more.)
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
822
53233
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
823 -- Make make-terminal-frame look up the `tty' and `tty-type' frame
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
824 parameters from the currently selected terminal before the global
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
825 default.
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
826
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
827 (Done.)
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
828
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
829 -- Put all cached terminal escape sequences into struct tty_output.
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
830 Currently, they are still stored in global variables, so we don't
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
831 really support multiple terminal types.
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
832
53234
f3b94bd26d21 Cosmetic changes in README.multi-tty
Karoly Lorentey <lorentey@elte.hu>
parents: 53233
diff changeset
833 (Done. It was not fun.)
53233
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
834
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
835 -- Implement sane error handling after initialization. (Currently
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
836 emacs exits if you specify a bad terminal type.) The helpful error
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
837 messages must still be provided when Emacs starts.
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
838
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
839 (Done.)
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
840
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
841 -- Implement terminal deletion, i.e., deleting local frames, closing
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
842 the tty device and restoring its previous state without exiting
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
843 Emacs.
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
844
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
845 (Done, but at the moment only called when an error happens during
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
846 initialization. There is a memory corruption error around this
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
847 somewhere.) (Update: now it is fully enabled.)
53233
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
848
53236
e77dcb66ec84 Implemented automatic deletion of terminals.
Karoly Lorentey <lorentey@elte.hu>
parents: 53235
diff changeset
849 -- Implement automatic deletion of terminals when the last frame on
e77dcb66ec84 Implemented automatic deletion of terminals.
Karoly Lorentey <lorentey@elte.hu>
parents: 53235
diff changeset
850 that terminal is closed.
e77dcb66ec84 Implemented automatic deletion of terminals.
Karoly Lorentey <lorentey@elte.hu>
parents: 53235
diff changeset
851
e77dcb66ec84 Implemented automatic deletion of terminals.
Karoly Lorentey <lorentey@elte.hu>
parents: 53235
diff changeset
852 (Done.)
e77dcb66ec84 Implemented automatic deletion of terminals.
Karoly Lorentey <lorentey@elte.hu>
parents: 53235
diff changeset
853
53341
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
854 -- Restore tty screen after closing the terminal.
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
855
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
856 (Done, we do the same as Emacs 21.2 for all terminals.)
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
857
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
858 -- 'TERM=dumb src/emacs' does not restore the terminal state.
83009
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
859
53341
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
860 (Done.)
53233
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
861
53343
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
862 -- C-g should work on secondary terminals.
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
863
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
864 (Done, but the binding is not configurable.)
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
865
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
866 -- Deal with SIGHUP in Emacs and in emacsclient. (After this, the
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
867 server-frames may be removed from server.el.)
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
868
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
869 (Done, nothing to do. It seems that Emacs does not receive SIGHUP
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
870 from secondary ttys, which is actually a good thing.) (Update: I
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
871 think it would be a bad idea to remove server-frames.)
53343
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
872
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
873 -- Change emacsclient/server.el to support the -t argument better,
53343
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
874 i.e. automatically close the socket when the frame is closed.
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
875
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
876 (Seems to be working OK.)
56e4b7166995 Make sure secondary frames are deleted when emacsclient quits.
Karoly Lorentey <lorentey@elte.hu>
parents: 53341
diff changeset
877
82987
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
878 -- Fix mysterious memory corruption error with tty deletion. To
53233
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
879 trigger it, try the following shell command:
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
880
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
881 while true; do TERM=no-such-terminal-definition emacsclient -h; done
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
882
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
883 Emacs usually dumps core after a few dozen iterations. (The bug
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
884 seems to be related to the xfreeing or bzeroing of
82986
02a346f99eaf Undo patch-23. I need a coffee.
Karoly Lorentey <lorentey@elte.hu>
parents: 82985
diff changeset
885 tty_output.Wcm. Maybe there are outside references to struct Wcm?
02a346f99eaf Undo patch-23. I need a coffee.
Karoly Lorentey <lorentey@elte.hu>
parents: 82985
diff changeset
886 Why were these vars collected into a struct before multi-tty
02a346f99eaf Undo patch-23. I need a coffee.
Karoly Lorentey <lorentey@elte.hu>
parents: 82985
diff changeset
887 support?)
53233
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
888
82987
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
889 (Done. Whew. It turned out that the problem had nothing to do
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
890 with hypothetical external references to Wcm, or any other
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
891 tty_output component; it was simply that delete_tty closed the
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
892 filehandles of secondary ttys twice, resulting in fclose doubly
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
893 freeing memory. Utterly trivial matter. I love the C's memory
82987
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
894 management, it puts hair on your chest.)
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
895
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
896 -- Support raw secondary terminals. (Note that SIGIO works only on
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
897 the controlling terminal.) Hint: extend read_input_waiting for
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
898 multiple ttys and hopefully this will be fixed.
82987
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
899
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
900 (Done, it seems to have been working already for some time. It
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
901 seems F_SETOWN does work, after all. Not sure what made it fail
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
902 earlier, but it seems to be fixed (there were several changes
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
903 around request_sigio, maybe one of them did it).
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
904 read_input_waiting is only used in sys_select, don't change
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
905 it.) (Update: After adding X support, it's broken again.)
83097
01716205773e README changes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83084
diff changeset
906 (Update^2: No it isn't.) :-)
82983
21720c013048 Don't compile sys_select on systems that don't need it.
Karoly Lorentey <lorentey@elte.hu>
parents: 53343
diff changeset
907
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
908 -- Find out why does Emacs abort when it wants to close its
53341
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
909 controlling tty. Hint: chan_process[] array. Hey, maybe
82987
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
910 noninterrupt-IO would work, too? Update: no, there is no process
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
911 for stdin/out.
53237
4f33c6fc9a1f README.multi-tty updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 53236
diff changeset
912
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
913 (Done. Added add/delete_keyboard_wait_descriptor to
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
914 term_init/delete_tty. The hint was right, in a way.)
53232
22aaf1e5fbe6 Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents: 53229
diff changeset
915
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
916 -- Issue with SIGIO: it needs to be disabled during redisplay. See if
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
917 fcntl kernel behaviour could be emulated by emacsclient.
53341
d4e6a050c9b1 Bugfix festival.
Karoly Lorentey <lorentey@elte.hu>
parents: 53340
diff changeset
918
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
919 (Done. Simply disabled the SIGIO emulation hack in emacsclient.)
83097
01716205773e README changes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83084
diff changeset
920 (Update: it was added back.) (Update^2: and removed again.)
82987
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
921
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
922 -- server.el: There are issues with saving files in buffers of closed
82987
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
923 clients. Try editing a file with emacsclient -f, and (without
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
924 saving it) do a delete-frame. The frame is closed without
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
925 question, and a surprising confirmation prompt appears in another
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
926 frame.
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
927
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
928 (Done. delete-frame now asks for confirmation if it still has
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
929 pending buffers, and modified buffers don't seem to be deleted.)
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
930
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
931 -- emacsclient.el, server.el: Handle eval or file open errors when
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
932 doing -t.
82987
1682917e56b4 Major bugfixes and slight enhancements.
Karoly Lorentey <lorentey@elte.hu>
parents: 82986
diff changeset
933
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
934 (Done.)
82985
8d7be2534cbc Delete server frames on server restart.
Karoly Lorentey <lorentey@elte.hu>
parents: 82983
diff changeset
935
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
936 -- Make parts of struct tty_output accessible from Lisp. The device
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
937 name and the type is sufficient.
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
938
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
939 (Done, see frame-tty-name and frame-tty-type.)
82985
8d7be2534cbc Delete server frames on server restart.
Karoly Lorentey <lorentey@elte.hu>
parents: 82983
diff changeset
940
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
941 -- Export delete_tty to the Lisp environment, for emacsclient.
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
942
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
943 (Done, see delete-tty.)
82985
8d7be2534cbc Delete server frames on server restart.
Karoly Lorentey <lorentey@elte.hu>
parents: 82983
diff changeset
944
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
945 -- Get rid of the accessor macros in termchar.h, or define macros for
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
946 all members.
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
947
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
948 (Done.)
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
949
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
950 -- Move device-specific parameters (like costs) commonly used by
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
951 device backends to a common, device-dependent structure.
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
952
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
953 (Done. See struct display_method in termhooks.h.)
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
954
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
955 -- Fix X support.
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
956
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
957 (Done. Well, it seems to be working.)
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
958
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
959 -- Allow simultaneous X and tty frames. (Handling input could be
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
960 tricky. Or maybe not.)
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
961
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
962 (Done. Allowed, that is. It is currently extremely unstable, to
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
963 the point of being unusable. The rif variable causes constant
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
964 core dumps. Handling input is indeed tricky.)
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
965
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
966 -- Rewrite multi-tty input in terms of MULTI_KBOARD.
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
967
82991
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
968 (Done. In fact, there was no need to rewrite anything, I just
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
969 added a kboard member to tty_display_info, and initialized the
2b26656ff804 MULTI_KBOARD support for ttys. Input-related bugfixes for X+tty sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
970 frame's kboard from there.)
82988
f82e3a6f5ccb A few more bugfixes and new features.
Karoly Lorentey <lorentey@elte.hu>
parents: 82987
diff changeset
971
82992
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
972 -- Fix rif issue with X-tty combo sessions. IMHO the best thing to do
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
973 is to get rid of that global variable (and use the value value in
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
974 display_method, which is guaranteed to be correct).
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
975
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
976 (Done, did exactly that. Core dumps during combo sessions became
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
977 much rarer. In fact, I have not yet met a single one.)
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
978
82997
af2d6b850383 Added multi-tty support for talk.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 82995
diff changeset
979 -- Add multi-tty support to talk.el.
af2d6b850383 Added multi-tty support for talk.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 82995
diff changeset
980
af2d6b850383 Added multi-tty support for talk.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 82995
diff changeset
981 (Done.)
af2d6b850383 Added multi-tty support for talk.el.
Karoly Lorentey <lorentey@elte.hu>
parents: 82995
diff changeset
982
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
983 -- Clean up the source of emacsclient. It is a mess.
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
984
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
985 (Done, eliminated stupid proxy-pty kludge.)
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
986
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
987 -- Fix faces on tty frames during X-tty combo sessions. There is an
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
988 init_frame_faces call in init_sys_modes, see if there is a problem
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
989 with it.
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
990
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
991 (Done, there was a stupid mistake in
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
992 Ftty_supports_face_attributes_p. Colors are broken, though.)
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
993
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
994 -- C-x 5 2, C-x 5 o, C-x 5 0 on an emacsclient frame unexpectedly
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
995 exits emacsclient. This is a result of trying to be clever with
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
996 delete-frame-functions.
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
997
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
998 (Fixed, added delete-tty-after-functions, and changed server.el to
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
999 use it.)
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1000
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1001 -- Something with (maybe) multi-keyboard support broke function keys
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1002 and arrows on ttys during X+tty combo sessions. Debug this.
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1003
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1004 (I can't reproduce it, maybe the terminal type was wrong.)
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1005
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1006 -- Fix input from raw ttys (again).
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1007
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1008 (Now it seems to work all right.)
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1009
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1010 -- During an X-tty combo session, a (message "Hello") from a tty frame
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1011 goes to the X frame. Fix this.
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1012
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1013 (Done. There was a safeguard against writing to the initial
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1014 terminal frame during bootstrap which prevented echo_area_display
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1015 from working correctly on a tty frame during a combo session.)
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 82997
diff changeset
1016
83009
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1017 -- If there are no frames on its controlling terminal, Emacs should
83097
01716205773e README changes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83084
diff changeset
1018 exit if the user presses C-c there.
83009
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1019
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1020 (Done, as far as possible. See the SIGTERM comment in
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1021 interrupt_signal on why this seems to be impossible to solve this
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1022 in general.)
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1023
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1024 -- During an X session, Emacs seems to read from stdin. Also, Emacs
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1025 fails to start without a controlling tty.
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1026
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1027 (Fixed by replacing the troublesome termcap display with a dummy
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1028 bootstrap display during bootstrap.
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1029
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1030 -- Do tty output through struct display, like graphical display
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1031 backends.
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1032
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1033 (Done.)
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1034
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1035 -- Define an output_initial value for output_method for the initial
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1036 frame that is dumped with Emacs. Checking for this frame (e.g. in
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1037 cmd_error_internal) is ugly.
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1038
83409
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
1039 (Done, breaking interactive temacs.)
83009
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1040
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1041 -- The command `emacsclient -t -e '(delete-frame)'' fails to exit.
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1042
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1043 (Fixed.)
b2b37c85b00a Numerous bugfixes and small improvements.
Karoly Lorentey <lorentey@elte.hu>
parents: 83008
diff changeset
1044
83012
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1045 -- frame-creation-function should always create a frame that is on the
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1046 same display as the selected frame. Maybe frame-creation-function
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1047 should simply be removed and make-frame changed to do the right
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1048 thing.
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1049
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1050 (Done, with a nice hack. frame-creation-function is now frame-local.)
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1051
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1052 -- Fix C-g on raw ttys.
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1053
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1054 (Done. I disabled the interrupt/quit keys on all secondary
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1055 terminals, so Emacs sees C-g as normal input. This looks like an
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1056 overkill, because emacsclient has extra code to pass SIGINT to
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1057 Emacs, so C-g should remain the interrupt/quit key on emacsclient
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1058 frames. See the next entry why implementing this distinction would
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1059 be a bad idea.)
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1060
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1061 -- Make sure C-g goes to the right frame with ttys. This is hard, as
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1062 SIGINT doesn't have a tty parameter. :-(
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1063
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1064 (Done, the previous change fixes this as a pleasant side effect.)
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1065
83013
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1066 -- I have seen a case when Emacs with multiple ttys fell into a loop
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1067 eating 100% of CPU time. Strace showed this loop:
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1068
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1069 getpid() = 30284
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1070 kill(30284, SIGIO) = 0
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1071 --- SIGIO (I/O possible) @ 0 (0) ---
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1072 ioctl(6, FIONREAD, [0]) = -1 EIO (Input/output error)
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1073 ioctl(5, FIONREAD, [0]) = -1 EIO (Input/output error)
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1074 ioctl(0, FIONREAD, [0]) = 0
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1075 sigreturn() = ? (mask now [])
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1076 gettimeofday({1072842297, 747760}, NULL) = 0
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1077 gettimeofday({1072842297, 747806}, NULL) = 0
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1078 select(9, [0 3 5 6], NULL, NULL, {0, 0}) = 2 (in [5 6], left {0, 0})
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1079 select(9, [0 3 5 6], NULL, NULL, {0, 0}) = 2 (in [5 6], left {0, 0})
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1080 gettimeofday({1072842297, 748245}, NULL) = 0
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1081
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1082 I have seen something similar with a single X frame, but have not
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1083 been able to reproduce it for debugging.
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1084
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1085 Update: This may have been caused by checking for nread != 0
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1086 instead of nread > 0 after calling read_socket_hook in
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1087 read_avail_input.
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1088
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1089 (Fixed. This was caused by unconditionally including stdin in
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1090 input_wait_mask in init_process. The select call in
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1091 wait_reading_process_input always returned immediately, indicating
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1092 that there is pending input from stdin, which nobody read.
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1093
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1094 Note that the above strace output seems to be an unrelated but
e77d1a63471b Don't select on stdin unconditionally.
Karoly Lorentey <lorentey@elte.hu>
parents: 83012
diff changeset
1095 similar bug. I think that is now fixed.)
83012
4aa172a45af1 Fix C-g handling with multiple ttys.
Karoly Lorentey <lorentey@elte.hu>
parents: 83009
diff changeset
1096
83014
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
1097 -- Exiting Emacs while there are emacsclient frames doesn't restore the
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
1098 ttys to their default states.
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
1099
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
1100 (This seems to be fixed by some previous change.)
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
1101
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
1102 -- Allow opening an X session after -nw.
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
1103
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
1104 (Done.)
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
1105
83021
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1106 -- Fix color handling during tty+X combo sessions. (It seems that tty
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1107 sessions automatically convert the face colors to terminal colors
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1108 when the face is loaded. This conversion must happen instead on
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1109 the fly in write_glyphs, which might be problematic, as color
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1110 approximation is currently done in lisp (term/tty-colors.el).)
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1111 (Update: hm, colors seem to work fine if I start emacs with -nw and
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1112 then create an X frame. Maybe it's just a small buglet somewhere.)
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1113
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1114 (Seems to be fixed. The problem was in startup.el, it did not
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1115 initialize tty colors when the initial window system was
32bf8e7cc0c2 Fixed tty faces during combo sessions. Plus other assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83020
diff changeset
1116 graphical.)
83014
f5cadabb36dd Support for opening X frames from a tty session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83013
diff changeset
1117
83023
6ce586a7243e Set the keyboard of the initial frame correctly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83021
diff changeset
1118 -- emacs -nw --eval '(y-or-n-p "Foobar")' segfaults. (Reported by
6ce586a7243e Set the keyboard of the initial frame correctly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83021
diff changeset
1119 Romain Francoise)
6ce586a7243e Set the keyboard of the initial frame correctly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83021
diff changeset
1120
6ce586a7243e Set the keyboard of the initial frame correctly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83021
diff changeset
1121 (Fixed, there was a keyboard initialization problem.)
6ce586a7243e Set the keyboard of the initial frame correctly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83021
diff changeset
1122
83024
e66f69c4f2c5 Fixed interactive temacs.
Karoly Lorentey <lorentey@elte.hu>
parents: 83023
diff changeset
1123 -- Fix interactive use of temacs. There are face-related SEGVs, most
e66f69c4f2c5 Fixed interactive temacs.
Karoly Lorentey <lorentey@elte.hu>
parents: 83023
diff changeset
1124 likely because of changes in realize_default_face, realize_face.
e66f69c4f2c5 Fixed interactive temacs.
Karoly Lorentey <lorentey@elte.hu>
parents: 83023
diff changeset
1125
e66f69c4f2c5 Fixed interactive temacs.
Karoly Lorentey <lorentey@elte.hu>
parents: 83023
diff changeset
1126 (Fixed.)
e66f69c4f2c5 Fixed interactive temacs.
Karoly Lorentey <lorentey@elte.hu>
parents: 83023
diff changeset
1127
83028
bf5b5fb49420 Don't exit Emacs when the X display is closed during a tty-X combo session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83024
diff changeset
1128 -- Don't exit Emacs when the last X connection fails during a
bf5b5fb49420 Don't exit Emacs when the X display is closed during a tty-X combo session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83024
diff changeset
1129 multi-display session.
bf5b5fb49420 Don't exit Emacs when the X display is closed during a tty-X combo session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83024
diff changeset
1130
bf5b5fb49420 Don't exit Emacs when the X display is closed during a tty-X combo session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83024
diff changeset
1131 (Fixed.)
bf5b5fb49420 Don't exit Emacs when the X display is closed during a tty-X combo session.
Karoly Lorentey <lorentey@elte.hu>
parents: 83024
diff changeset
1132
83032
b8237c556f0e Fix the case when emacsclient is run on Emacs's controlling tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83028
diff changeset
1133 -- Dan Nicolaescu noticed that starting emacsclient on the same
b8237c556f0e Fix the case when emacsclient is run on Emacs's controlling tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83028
diff changeset
1134 terminal device that is the controlling tty of the Emacs process
b8237c556f0e Fix the case when emacsclient is run on Emacs's controlling tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83028
diff changeset
1135 gives unexpected results.
b8237c556f0e Fix the case when emacsclient is run on Emacs's controlling tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83028
diff changeset
1136
b8237c556f0e Fix the case when emacsclient is run on Emacs's controlling tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83028
diff changeset
1137 (Fixed.)
b8237c556f0e Fix the case when emacsclient is run on Emacs's controlling tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83028
diff changeset
1138
83035
fcf6fc349e0d Don't hang on the tty if called from a shell script.
Karoly Lorentey <lorentey@elte.hu>
parents: 83032
diff changeset
1139 -- Istvan Marko reported that Emacs hang on ttys if it was started
fcf6fc349e0d Don't hang on the tty if called from a shell script.
Karoly Lorentey <lorentey@elte.hu>
parents: 83032
diff changeset
1140 from a shell script.
fcf6fc349e0d Don't hang on the tty if called from a shell script.
Karoly Lorentey <lorentey@elte.hu>
parents: 83032
diff changeset
1141
fcf6fc349e0d Don't hang on the tty if called from a shell script.
Karoly Lorentey <lorentey@elte.hu>
parents: 83032
diff changeset
1142 (Fixed. There was a bug in the multi-tty version of
fcf6fc349e0d Don't hang on the tty if called from a shell script.
Karoly Lorentey <lorentey@elte.hu>
parents: 83032
diff changeset
1143 narrow_foreground_group. tcsetpgrp blocks if it is called from a
fcf6fc349e0d Don't hang on the tty if called from a shell script.
Karoly Lorentey <lorentey@elte.hu>
parents: 83032
diff changeset
1144 process that is not in the same process group as the tty.)
fcf6fc349e0d Don't hang on the tty if called from a shell script.
Karoly Lorentey <lorentey@elte.hu>
parents: 83032
diff changeset
1145
83064
e7e9448cb3a0 Make emacsclient refuse to create a frame inside an Emacs term buffer.
Karoly Lorentey <lorentey@elte.hu>
parents: 83063
diff changeset
1146 -- emacsclient -t from an Emacs term buffer does not work, complains
e7e9448cb3a0 Make emacsclient refuse to create a frame inside an Emacs term buffer.
Karoly Lorentey <lorentey@elte.hu>
parents: 83063
diff changeset
1147 about face problems. This can even lock up Emacs (if the recursive
e7e9448cb3a0 Make emacsclient refuse to create a frame inside an Emacs term buffer.
Karoly Lorentey <lorentey@elte.hu>
parents: 83063
diff changeset
1148 frame sets single_kboard). Update: the face problems are caused by
e7e9448cb3a0 Make emacsclient refuse to create a frame inside an Emacs term buffer.
Karoly Lorentey <lorentey@elte.hu>
parents: 83063
diff changeset
1149 bugs in term.el, not in multi-tty. The lockup is caused by
83097
01716205773e README changes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83084
diff changeset
1150 single_kboard mode, and is not easily resolvable. The best thing to
83064
e7e9448cb3a0 Make emacsclient refuse to create a frame inside an Emacs term buffer.
Karoly Lorentey <lorentey@elte.hu>
parents: 83063
diff changeset
1151 do is to simply refuse to create a tty frame of type `eterm'.
e7e9448cb3a0 Make emacsclient refuse to create a frame inside an Emacs term buffer.
Karoly Lorentey <lorentey@elte.hu>
parents: 83063
diff changeset
1152
e7e9448cb3a0 Make emacsclient refuse to create a frame inside an Emacs term buffer.
Karoly Lorentey <lorentey@elte.hu>
parents: 83063
diff changeset
1153 (Fixed, changed emacsclient to check for TERM=eterm. The face
e7e9448cb3a0 Make emacsclient refuse to create a frame inside an Emacs term buffer.
Karoly Lorentey <lorentey@elte.hu>
parents: 83063
diff changeset
1154 complaints seem to be caused by bugs in term.el; they are not
e7e9448cb3a0 Make emacsclient refuse to create a frame inside an Emacs term buffer.
Karoly Lorentey <lorentey@elte.hu>
parents: 83063
diff changeset
1155 related to multi-tty.)
e7e9448cb3a0 Make emacsclient refuse to create a frame inside an Emacs term buffer.
Karoly Lorentey <lorentey@elte.hu>
parents: 83063
diff changeset
1156
83065
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
1157 -- Find out the best way to support suspending Emacs with multiple
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
1158 ttys. My guess: disable it on the controlling tty, but from other
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
1159 ttys pass it on to emacsclient somehow. (It is (I hope) trivial to
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
1160 extend emacsclient to handle suspend/resume. A `kill -STOP' almost
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
1161 works right now.)
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
1162
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
1163 (Done. I needed to play with signal handling and the server
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
1164 protocol a bit to make emacsclient behave as a normal UNIX program
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
1165 wrt foreground/background process groups.)
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83064
diff changeset
1166
83069
a39b38a5d680 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83065
diff changeset
1167 -- There is a flicker during the startup of `emacs -nw'; it's as if
a39b38a5d680 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83065
diff changeset
1168 the terminal is initialized, reset and then initialialized again.
a39b38a5d680 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83065
diff changeset
1169 Debug this. (Hint: narrow_foreground_group is called twice during
a39b38a5d680 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83065
diff changeset
1170 startup.)
a39b38a5d680 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83065
diff changeset
1171
a39b38a5d680 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83065
diff changeset
1172 (This is gone.)
a39b38a5d680 README updates.
Karoly Lorentey <lorentey@elte.hu>
parents: 83065
diff changeset
1173
83084
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1174 -- Robert Chassell has found serious copy-paste bugs with the
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1175 multi-tty branch. There seem to be redisplay bugs while copying
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1176 from X to a terminal frame. Copying accented characters do not
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1177 work for me.
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1178
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1179 (Patch-124 should fix this, by changing the interprogram-*-function
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1180 variables to be frame-local, as suggested by Mark Plaksin
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1181 (thanks!). I think that the redisplay bugs are in fact not bugs,
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1182 but delays caused by single_kboard --> perhaps MULTI_KBOARD should
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1183 be removed.)
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1184
83118
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1185 -- frame-creation-function was removed, which might be a bad idea.
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1186 Think up a compatible solution.
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1187
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1188 (It was an internal interface that may be changed when necessary.)
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1189
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1190 -- Change Lisp code not to (getenv "TERM"); use the `tty-type' frame
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1191 parameter or the frame-tty-type function instead. (M-x tags-search
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1192 "TERM" helps with this.) Update: Actually, all getenv invocations
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1193 should be checked for multi-tty compatibility, and an interface
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1194 must be implemented to get the remote client's environment.
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1195
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1196 (Done. Only getenv calls in lisp/term/*.el were changed; other
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1197 calls should be mostly left as they are.)
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1198
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1199 -- Add an elaborate mechanism for display-local variables. (There are
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1200 already a few of these; search for `terminal-local' in the Elisp
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1201 manual.)
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1202
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1203 (Not needed. Display-local variables could be emulated by
7652900ea029 Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents: 83111
diff changeset
1204 frame-local variables.)
83084
0d3eea319893 Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert Chassell).
Karoly Lorentey <lorentey@elte.hu>
parents: 83076
diff changeset
1205
83132
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1206 -- Emacs assumes that all terminal frames have the same locale
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1207 settings as Emacs itself. This may lead to bogus results in a
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1208 multi-locale setup. (E.g., while logging in from a remote client
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1209 with a different locale.)
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1210 (Update after new bugreport by Friedrich Delgado Friedrichs:
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1211 (at least) the structs terminal_coding and keyboard_coding in
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1212 coding.c must be moved to struct display, and the Lisp interface
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1213 [set-]keyboard-coding-system must be adapted for the change.)
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1214
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1215 (Fixed. Emacs now uses the locale settings as seen by the
f982df4459a4 Update README.multi-tty.
Karoly Lorentey <lorentey@elte.hu>
parents: 83125
diff changeset
1216 emacsclient process for server tty frames.)
83298
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
1217 (Update: Not really; Vlocale_coding_system is still global.)
83167
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1218
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1219 -- Make `struct display' accessible to Lisp programs. Accessor functions:
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1220
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1221 (displayp OBJECT): Returns t if OBJECT is a display.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1222 => Implemented as display-live-p.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1223
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1224 (display-list): Returns list of currently active displays.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1225 => Implemented.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1226
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1227 (selected-display): Returns the display object of the selected frame.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1228 => Not strictly necessary, but implemented anyway.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1229
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1230 (frame-display FRAME): Returns the display object of FRAME.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1231 => Implemented.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1232
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1233 (display-frames DISPLAY): Returns a list of frames on DISPLAY.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1234 => Already implemented, see frames-on-display-list.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1235
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1236 (display-type DISPLAY): Returns the type of DISPLAY, as a
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1237 symbol. (See `framep'.)
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1238 => Implemented as display-live-p.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1239
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1240 (display-device DISPLAY): Returns the name of the device that
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1241 DISPLAY uses, as a string. (E.g: "/dev/pts/16", or
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1242 ":0.0")
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1243 => Implemented as display-name.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1244
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1245 etc.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1246
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1247 See next issue why this is necessary.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1248
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1249 (Update: The consensus on emacs-devel seems to be to do this via
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1250 integer identifiers. That's fine by me.)
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1251
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1252 (Done.)
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1253
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1254 -- The following needs to be supported:
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1255
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1256 $ emacsclient -t
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1257 C-z
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1258 $ emacsclient -t
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1259 (This fails now.)
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1260
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1261 The cleanest way to solve this is to allow multiple displays on the
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1262 same terminal device; each new emacsclient process should create
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1263 its own display. As displays are currently identified by their
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1264 device names, this is not possible until struct display becomes
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1265 accessible as a Lisp-level object.
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1266
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1267 (Done.)
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83161
diff changeset
1268
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
1269 -- Miles Bader suggests that C-x C-c on an emacsclient frame should
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
1270 only close the frame, not exit the entire Emacs session. Update:
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
1271 see above for a function that does this. Maybe this should be the
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
1272 new default?
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
1273
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
1274 (Done. This is the new default. No complaints so far.)
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
1275
83298
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
1276 -- Clean up the frame-local variable system. I think it's ugly and
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
1277 error-prone. But maybe I just haven't yet fully understood it.
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
1278
ed09a89e2b25 Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents: 83282
diff changeset
1279 (Nothing to do. It doesn't seem ugly any more. It's rather clever.)
83230
d8738586aaec Remove remaining references to updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83220
diff changeset
1280
83300
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
1281 -- Support multiple character locales. A version of
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
1282 `set-locale-environment' needs to be written for setting up
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
1283 display-local settings on ttys. I think calling
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
1284 set-display-table-and-terminal-coding-system and
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
1285 set-keyboard-coding-system would be enough. The language
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
1286 environment itself should remain a global setting.
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
1287
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
1288 (Done, by an ugly hack.)
6deb860255f3 Support for ttys with different character locale settings.
Karoly Lorentey <lorentey@elte.hu>
parents: 83298
diff changeset
1289
83318
666b48e39a5a Work around mysterious breakage of arrow key recognition under screen (see first TODO in README).
Karoly Lorentey <lorentey@elte.hu>
parents: 83300
diff changeset
1290 -- The terminal customization files in term/*.el tend to change global
666b48e39a5a Work around mysterious breakage of arrow key recognition under screen (see first TODO in README).
Karoly Lorentey <lorentey@elte.hu>
parents: 83300
diff changeset
1291 parameters, which may confuse Emacs with multiple displays. Change
666b48e39a5a Work around mysterious breakage of arrow key recognition under screen (see first TODO in README).
Karoly Lorentey <lorentey@elte.hu>
parents: 83300
diff changeset
1292 them to tweak only frame-local settings, if possible. (They tend
666b48e39a5a Work around mysterious breakage of arrow key recognition under screen (see first TODO in README).
Karoly Lorentey <lorentey@elte.hu>
parents: 83300
diff changeset
1293 to call define-key to set function key sequences a lot.)
666b48e39a5a Work around mysterious breakage of arrow key recognition under screen (see first TODO in README).
Karoly Lorentey <lorentey@elte.hu>
parents: 83300
diff changeset
1294
666b48e39a5a Work around mysterious breakage of arrow key recognition under screen (see first TODO in README).
Karoly Lorentey <lorentey@elte.hu>
parents: 83300
diff changeset
1295 (Done, by making `function-key-map' terminal-local (i.e., part of
666b48e39a5a Work around mysterious breakage of arrow key recognition under screen (see first TODO in README).
Karoly Lorentey <lorentey@elte.hu>
parents: 83300
diff changeset
1296 struct kboard). This has probably covered all the remaining problems.)
666b48e39a5a Work around mysterious breakage of arrow key recognition under screen (see first TODO in README).
Karoly Lorentey <lorentey@elte.hu>
parents: 83300
diff changeset
1297
83325
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1298 -- Make `function-key-map' and `key-translation-map' terminal-local.
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1299
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1300 (Done.)
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1301
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1302 -- Implement `terminal-local-value' and `set-terminal-local-value' to
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1303 allow deterministic access to terminal local bindings. The
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1304 encode-kb package can not set up `key-translation-map' without
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1305 these. The terminal-local bindings seem to be independent of what
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1306 frame is selected.
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1307
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1308 (Done.)
83369
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
1309
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
1310 -- xt-mouse.el needs to be adapted for multi-tty. It currently
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
1311 signals an error on kill-emacs under X, which prevents the user
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
1312 from exiting Emacs. (Reported by Mnemonikk on freenode.)
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
1313
d2e0850b17f2 Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents: 83367
diff changeset
1314 (Done, I hope.)
83362
c3dd82172ed1 Enforce the presence of `window-system' and `tty-type' frame parameters in all frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83361
diff changeset
1315
83325
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1316
83373
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1317 -- Having {reset,init}_all_sys_modes in set-input-mode breaks arrow
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1318 keys on non-selected terminals under screen, and sometimes on other
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1319 terminal types as well. The other function keys continue to work
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1320 fine. Sometimes faces on these screens become garbled.
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1321
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1322 This only seems to affect displays that are of the same terminfo
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1323 type as the selected one. Interestingly, in screen Emacs normally
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1324 reports the up arrow key as `M-o A', but after the above SNAFU, it
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1325 complains about `M-[ a'. UNIX ttys are a complete mystery to me,
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1326 but it seems the reset-reinitialize cycle somehow leaves the
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1327 non-selected terminals in a different state than usual. I have no
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1328 idea how this could happen.
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1329
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1330 Currently set-input-mode resets only the currently selected
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1331 terminal, which seems to somehow work around the problem.
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1332
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1333 Update:
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1334
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1335 Dan Nicolaescu <dann@ics.uci.edu> writes:
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1336 > Some terminals have 2 modes for cursor keys: Application Mode where
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1337 > the cursor keys transmit the codes defined in the terminfo entry, and
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1338 > Cursor mode. Applications have to send the smkx and rmkx terminfo
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1339 > strings to switch between the 2 modes. So Emacs (and emacsclient) have
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1340 > to send smkx when initializing and rmkx when quitting (or on
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1341 > suspend).
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1342
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1343 (I think patch-370 fixed this.)
35ba943c8399 Set Emacs version number to 22.0.51 to allow parallel installations of CVS trunk and the multi-tty branch.
Karoly Lorentey <lorentey@elte.hu>
parents: 83371
diff changeset
1344
83374
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1345 -- This long-standing bug (first reported by Han Boetes) seems to come
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1346 and go all the time. It is time to track it down and fix it.
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1347
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1348 emacs
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1349 M-x server-start
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1350
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1351 # From another xterm:
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1352 emacsclient -e '(y-or-n-p "Do you want me to crash? ")'
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1353 # Notice how the answer ends up in the *scratch* buffer
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1354 M-x garbage-collect
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1355 SIGSEGV
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1356
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1357 (Fixed in patch-414 after detailed analysis by Kalle Olavi Niemitalo.)
0b75ace4f7ad Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by Han Boetes, analysis by Kalle Olavi Niemitalo.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83373
diff changeset
1358
83387
0181341f0aca Fix Delete key on X by adapting normal-erase-is-backspace-mode for multi-tty. (Reported by Dan Waber and Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83378
diff changeset
1359 -- normal-erase-is-backspace-mode in simple.el needs to be updated for
0181341f0aca Fix Delete key on X by adapting normal-erase-is-backspace-mode for multi-tty. (Reported by Dan Waber and Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83378
diff changeset
1360 multi-tty (rep. by Dan Waber). (The Delete key is broken on X
0181341f0aca Fix Delete key on X by adapting normal-erase-is-backspace-mode for multi-tty. (Reported by Dan Waber and Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83378
diff changeset
1361 because of this.)
0181341f0aca Fix Delete key on X by adapting normal-erase-is-backspace-mode for multi-tty. (Reported by Dan Waber and Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83378
diff changeset
1362
0181341f0aca Fix Delete key on X by adapting normal-erase-is-backspace-mode for multi-tty. (Reported by Dan Waber and Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83378
diff changeset
1363 (Fixed in patch-427.)
0181341f0aca Fix Delete key on X by adapting normal-erase-is-backspace-mode for multi-tty. (Reported by Dan Waber and Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83378
diff changeset
1364
83391
e99392472e41 Change `keyboard-translate-table' to be terminal-local.
Karoly Lorentey <lorentey@elte.hu>
parents: 83387
diff changeset
1365 -- I think keyboard-translate-table should be made terminal-local.
e99392472e41 Change `keyboard-translate-table' to be terminal-local.
Karoly Lorentey <lorentey@elte.hu>
parents: 83387
diff changeset
1366
e99392472e41 Change `keyboard-translate-table' to be terminal-local.
Karoly Lorentey <lorentey@elte.hu>
parents: 83387
diff changeset
1367 (Done in patch-431.)
e99392472e41 Change `keyboard-translate-table' to be terminal-local.
Karoly Lorentey <lorentey@elte.hu>
parents: 83387
diff changeset
1368
83396
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1369 -- The semantics of terminal-local variables are confusing; it is not
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1370 clear what binding is in effect in any given time. See if
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1371 current_kboard (or at least the terminal-local bindings exported to
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1372 Lisp) might be changed to be tied to the selected frame instead.
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1373 Currently, `function-key-map' and `key-translation-map' may be
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1374 accessed reliably only using the hackish
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1375 `(set-)terminal-local-value' functions.
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1376
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1377 Perhaps there should be a difference between `last-command' &co.
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1378 and these more conventional configuration variables.
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1379 (E.g. `symbol-value' would use current_kboard to access
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1380 `last-command', but SELECTED_FRAME()->display->kboard to get the
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1381 value of `function-key-map'.
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1382
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1383 (Fixed in patch-434.)
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1384
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1385 -- If the first key pressed on a new tty terminal is a function key,
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1386 it is not recognized correctly. May be related to the bug below.
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1387
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1388 (Seems to have been fixed as a side effect of patch-434. "The bug
83409
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
1389 below" was the set-input-mode madness.)
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
1390
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
1391 (Update: this bug was fixed for good in patch-449. It was tracked
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
1392 down to a bug in `read_key_sequence': it failed to reinitialize its
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
1393 local function-key-map/key-translation-map references when it
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
1394 switched keyboards. I don't understand why did this bug only
be1f74bffc1d Fix "first non-ASCII character on new tty frames" problem.
Karoly Lorentey <lorentey@elte.hu>
parents: 83396
diff changeset
1395 appear on brand new frames, though!)
83396
201f610eb492 Update frames-on-display-list to accept terminal id numbers.
Karoly Lorentey <lorentey@elte.hu>
parents: 83391
diff changeset
1396
83410
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
1397 -- Disable connecting to a new X display when we use the GTK toolkit.
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
1398
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
1399 (Disabled in patch-450.)
fea405284011 Prevent core dumps with GTK by disabling secondary X connections there.
Karoly Lorentey <lorentey@elte.hu>
parents: 83409
diff changeset
1400
83421
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1401 -- Implement automatic forwarding of client environment variables to
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1402 forked processes, as discussed on the multi-tty list. Terminal
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1403 parameters are now accessible in C code, so the biggest obstacle is
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1404 gone. The `getenv_internal' and `child_setup' functions in
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1405 callproc.c must be changed to support the following variable:
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1406
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1407 terminal-local-environment-variables is a variable defined in ...
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1408
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1409 Enable or disable terminal-local environment variables.
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1410
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1411 If set to t, `getenv', `setenv' and subprocess creation
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1412 functions use the environment variables of the emacsclient
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1413 process that created the selected frame, ignoring
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1414 `process-environment'.
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1415
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1416 If set to nil, Emacs uses `process-environment' and ignores
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1417 the client environment.
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1418
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1419 Otherwise, `terminal-local-environment-variables' should be a
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1420 list of variable names (represented by Lisp strings) to look
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1421 up in the client environment. The rest will come from
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1422 `process-environment'.
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1423
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1424 (Implemented in patch-461; `terminal-getenv', `terminal-setenv' and
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1425 `with-terminal-environment' are now replaced by extensions to
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1426 `getenv' and `setenv', and the new `local-environment-variables'
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1427 facility. Yay!)
bb2edc915032 Implement automatic terminal-local environment variables via `local-environment-variables'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83420
diff changeset
1428
83427
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1429 (Updated in patch-465 to fix the semantics of let-binding
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1430 `process-environment'. `process-environment' was changed to
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1431 override all local/global environment variables, and a new variable
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1432 `global-environment' was introduced to have `process-environment's
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1433 old meaning.)
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1434
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1435 (Updated in patch-466 to fix the case when two emacsclient sessions
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1436 share the same terminal, but have different environment. The local
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1437 environment lists are now stored as frame parameters, so the
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1438 C-level terminal parameters are not strictly necessary any more.)
2afc49c9f0c0 Store local environment in frame (not terminal) parameters.
Karoly Lorentey <lorentey@elte.hu>
parents: 83422
diff changeset
1439
83437
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1440 -- `Fdelete_frame' is called from various critical places where it is
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1441 not acceptable for the frame deletion to fail, e.g. from
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1442 x_connection_closed after an X error. `Fdelete_frame' now protects
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1443 against `delete-frame-functions' throwing an error and preventing a
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1444 frame delete. (patch-475)
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1445
83449
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1446 -- Fix set-input-mode for multi-tty. It's a truly horrible interface;
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1447 what if we'd blow it up into several separate functions (with a
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1448 compatibility definition)?
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1449
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1450 (Done. See `set-input-interrupt-mode', `set-output-flow-control',
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1451 `set-input-meta-mode' and `set-quit-char'.) (patch-457)
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1452
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1453 -- Let-binding `overriding-terminal-local-map' on a brand new frame
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1454 does not seem to work correctly. (See `fancy-splash-screens'.)
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1455 The keymap seems to be set up right, but events go to another
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1456 terminal. Or is it `unread-command-events' that gets Emacs
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1457 confused? Investigate.
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1458
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1459 (Emacs was confused because a process filter entered
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1460 `recursive-edit' while Emacs was reading input. I added support
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1461 for this in the input system.) (patch-489)
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1462
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1463 -- I smell something funny around pop_kboard's "deleted kboard" case.
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1464 Determine what are the circumstances of this case, and fix any
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1465 bug that comes to light.
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1466
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1467 (It happens simply because single_kboard's terminal is sometimes
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1468 deleted while executing a command on it, for example the one that
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1469 kills the terminal. There was no bug here, but I rewrote the whole
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1470 single_kboard mess anyway.) (patch-489)
ff74a86c2b16 Overhaul and simplify single_kboard API. Allow calls to `recursive-edit' in process filters. Small fixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83438
diff changeset
1471
83454
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1472 -- Understand Emacs's low-level input system (it's black magic) :-)
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1473 What exactly does interrupt_input do? I tried to disable it for
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1474 raw secondary tty support, but it does not seem to do anything
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1475 useful. (Update: Look again. X unconditionally enables this, maybe
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1476 that's why raw terminal support is broken again. I really do need
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1477 to understand input.)
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1478 (Update: I am starting to understand the read_key_sequence->read-char
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1479 ->kbd_buffer_get_event->read_avail_input->read_socket_hook path. Yay!)
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1480
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1481 (Update: OK, it all seems so easy now (NOT). Input could be done
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1482 synchronously (with wait_reading_process_input), or asynchronously
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1483 by SIGIO or polling (SIGALRM). C-g either sets the Vquit_flag,
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1484 signals a 'quit condition (when immediate_quit), or throws to
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1485 `getcjmp' when Emacs was waiting for input when the C-g event
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1486 arrived.)
845a93c68e9a Fix C-g during `make-network-process'. (Reported by Mark Plaksin.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83449
diff changeset
1487
83460
dbd791ef90a1 Eliminate wrong_kboard_jmpbuf.
Karoly Lorentey <lorentey@elte.hu>
parents: 83454
diff changeset
1488 -- Replace wrong_kboard_jmpbuf with a special return value of
dbd791ef90a1 Eliminate wrong_kboard_jmpbuf.
Karoly Lorentey <lorentey@elte.hu>
parents: 83454
diff changeset
1489 read_char. It is absurd that we use setjmp/longjmp just to return
dbd791ef90a1 Eliminate wrong_kboard_jmpbuf.
Karoly Lorentey <lorentey@elte.hu>
parents: 83454
diff changeset
1490 to the immediate caller.
dbd791ef90a1 Eliminate wrong_kboard_jmpbuf.
Karoly Lorentey <lorentey@elte.hu>
parents: 83454
diff changeset
1491
dbd791ef90a1 Eliminate wrong_kboard_jmpbuf.
Karoly Lorentey <lorentey@elte.hu>
parents: 83454
diff changeset
1492 (Done in patch-500.)
83437
c415fd182aef Enhance splash screens to work better with emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1493
83497
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1494 -- `tool-bar-mode', `scroll-bar-mode', `menu-bar-mode' and
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1495 'fringe-mode' are modes global to the entire Emacs session, not
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1496 just a single frame or a single terminal. This means that their
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1497 status sometimes differs from what's actually displayed on the
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1498 screen. As a consequence, the Options | Show/Hide menu sometimes
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1499 shows incorrect status, and you have to select an option twice for
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1500 it to have any visible effect on the current frame.
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1501
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1502 Change Emacs so that the status of the items in the Options |
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1503 Show/Hide menu correspond to the current frame.
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1504
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1505 (Done in patch-537.)
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
1506
83499
0fe580113f72 Set `default-directory' in *scratch* to the current directory of emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83497
diff changeset
1507 -- The `default-directory' variable should somehow be set to the
0fe580113f72 Set `default-directory' in *scratch* to the current directory of emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83497
diff changeset
1508 cwd of the emacsclient process when the user runs emacsclient
0fe580113f72 Set `default-directory' in *scratch* to the current directory of emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83497
diff changeset
1509 without file arguments. Perhaps it is OK to just override the
0fe580113f72 Set `default-directory' in *scratch* to the current directory of emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83497
diff changeset
1510 directory of the *scratch* buffer.
0fe580113f72 Set `default-directory' in *scratch* to the current directory of emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83497
diff changeset
1511
0fe580113f72 Set `default-directory' in *scratch* to the current directory of emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83497
diff changeset
1512 (Done in patch-539.)
0fe580113f72 Set `default-directory' in *scratch* to the current directory of emacsclient.
Karoly Lorentey <lorentey@elte.hu>
parents: 83497
diff changeset
1513
83504
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1514 -- The borders on tooltip frames on X are messed up. More
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1515 specifically, the frame's internal border (internal-border-width
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1516 frame parameter) is not filled with the correct background color.
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1517
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1518 It seems the border contents are drawn onto by the
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1519 update_single_window call in `x-show-tip'. After some debugging, I
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1520 think the window's background color is not set up
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1521 correctly---calling `x_clear_area' fills the specified area with
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1522 black, not light yellow.
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1523
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1524 (Done in patch-544. A background_pixel field was defined both in
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1525 struct frame and struct x_output, and Emacs got confused between
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1526 them.)
7aa43f830ce4 Fix tooltip border color.
Karoly Lorentey <lorentey@elte.hu>
parents: 83499
diff changeset
1527
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
diff changeset
1528 ;;; arch-tag: 8da1619e-2e79-41a8-9ac9-a0485daad17d
83325
9e41c80c6389 Work around nondeterministic binding of terminal-local variables. (Fixes national character input on ttys.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83318
diff changeset
1529