comparison README.multi-tty @ 83070:dceddd93a691

README updates. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-110
author Karoly Lorentey <lorentey@elte.hu>
date Sat, 06 Mar 2004 12:13:42 +0000
parents a39b38a5d680
children 34a7a8f40548
comparison
equal deleted inserted replaced
83069:a39b38a5d680 83070:dceddd93a691
179 See arch logs. 179 See arch logs.
180 180
181 THINGS TO DO 181 THINGS TO DO
182 ------------ 182 ------------
183 183
184 ** Emacs assumes that all terminal frames have the same locale
185 settings as Emacs itself. This may lead to bogus results in a
186 multi-locale setup. (E.g., while logging in from a remote client
187 with a different locale.)
188
184 ** Dan Nicolaescu suggests that -nw should be added as an alias for -t 189 ** Dan Nicolaescu suggests that -nw should be added as an alias for -t
185 in emacsclient. Good idea. (Alas, implementing this is not 190 in emacsclient. Good idea. (Alas, implementing this is not
186 trivial, getopt_long does not seem to support two-letter ``short'' 191 trivial, getopt_long does not seem to support two-letter ``short''
187 options.) 192 options.)
188 193
193 198
194 ** Make `struct display' accessible to Lisp programs. Accessor functions: 199 ** Make `struct display' accessible to Lisp programs. Accessor functions:
195 200
196 (displayp OBJECT): Returns t if OBJECT is a display. 201 (displayp OBJECT): Returns t if OBJECT is a display.
197 202
203 (display-list): Returns list of currently active displays.
204
198 (selected-display): Returns the display object of the selected frame. 205 (selected-display): Returns the display object of the selected frame.
199 206
200 (frame-display FRAME): Returns the display object of FRAME. 207 (frame-display FRAME): Returns the display object of FRAME.
201 208
202 (display-frames DISPLAY): Returns a list of frames on DISPLAY. 209 (display-frames DISPLAY): Returns a list of frames on DISPLAY.
205 symbol. (See `framep'.) 212 symbol. (See `framep'.)
206 213
207 (display-device DISPLAY): Returns the name of the device that 214 (display-device DISPLAY): Returns the name of the device that
208 DISPLAY uses, as a string. (E.g: "/dev/pts/16", or 215 DISPLAY uses, as a string. (E.g: "/dev/pts/16", or
209 ":0.0") 216 ":0.0")
217
218 etc.
210 219
211 See next issue why this is necessary. 220 See next issue why this is necessary.
212 221
213 ** The following needs to be supported: 222 ** The following needs to be supported:
214 223