comparison src/termchar.h @ 83025:c66ebcc29777

Removed %T in mode-line-format. Trivial documentation changes. lisp/bindings.el (mode-line-buffer-identification): Use the conditional formatting feature instead of builtin support. src/buffer.c (Vmode_line_format): Removed %T documentation. src/xdisp.c (decode_mode_spec): Removed %T processing. lib-src/emacsclient.c (pass_signal_to_emacs, init_signals): Added comment. src/cm.c: Cosmetic changes. src/termchar.h: Ditto. src/keyboard.c (interrupt_signal, handle_interrupt): Updated documentation. src/process.c (add_keyboard_wait_descriptor): Added docs. src/sysdep.c (init_all_sys_modes, init_sys_modes) (reset_all_sys_modes): Added docs. src/term.c (tty_ring_bell, tty_set_terminal_modes) (tty_reset_terminal_modes, tty_update_end, set_terminal_window) (tty_set_terminal_window, clear_to_end, tty_clear_to_end) (tty_clear_frame, tty_clear_end_of_line, write_glyphs) (tty_write_glyphs, insert_glyphs, tty_insert_glyphs, delete_glyphs) (tty_delete_glyphs, tty_ins_del_lines, get_named_tty_display) (init_initial_display, delete_tty): Added docs. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-65
author Karoly Lorentey <lorentey@elte.hu>
date Sun, 25 Jan 2004 00:43:38 +0000
parents 040dd41ed7d0
children 5b06ac722eb1
comparison
equal deleted inserted replaced
83024:e66f69c4f2c5 83025:c66ebcc29777
19 Boston, MA 02111-1307, USA. */ 19 Boston, MA 02111-1307, USA. */
20 20
21 /* Each termcap frame points to its own struct tty_output object in 21 /* Each termcap frame points to its own struct tty_output object in
22 the output_data.tty field. The tty_output structure contains the 22 the output_data.tty field. The tty_output structure contains the
23 information that is specific to termcap frames. */ 23 information that is specific to termcap frames. */
24
24 struct tty_output 25 struct tty_output
25 { 26 {
26 /* The Emacs structure for the tty device this frame is on. */ 27 /* The Emacs structure for the tty device this frame is on. */
27 struct tty_display_info *display_info; 28 struct tty_display_info *display_info;
28 29
29 /* There is nothing else here at the moment... */ 30 /* There is nothing else here at the moment... */
30 }; 31 };
31 32
32 /* Parameters that are shared between frames on the same tty device. */ 33 /* Parameters that are shared between frames on the same tty device. */
34
33 struct tty_display_info 35 struct tty_display_info
34 { 36 {
35 struct tty_display_info *next; /* Chain of all tty devices. */ 37 struct tty_display_info *next; /* Chain of all tty devices. */
36 38
37 char *name; /* The name of the device file or 0 if 39 char *name; /* The name of the device file or 0 if