comparison lib-src/emacsclient.c @ 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 82c3b4da43ca
children 895e130cc8da
comparison
equal deleted inserted replaced
83024:e66f69c4f2c5 83025:c66ebcc29777
280 #else 280 #else
281 char _sobuf[BUFSIZ]; 281 char _sobuf[BUFSIZ];
282 #endif 282 #endif
283 #endif 283 #endif
284 284
285 /* A signal handler that passes the signal to the Emacs process.
286 Useful for SIGWINCH. */
287
285 SIGTYPE 288 SIGTYPE
286 pass_signal_to_emacs (int signalnum) 289 pass_signal_to_emacs (int signalnum)
287 { 290 {
288 int old_errno = errno; 291 int old_errno = errno;
289 292
292 295
293 signal (signalnum, pass_signal_to_emacs); 296 signal (signalnum, pass_signal_to_emacs);
294 errno = old_errno; 297 errno = old_errno;
295 } 298 }
296 299
300 /* Set up signal handlers before opening a frame on the current tty. */
301
297 void 302 void
298 init_signals (void) 303 init_signals (void)
299 { 304 {
300 /* Set up signal handlers. */ 305 /* Set up signal handlers. */
301 signal (SIGWINCH, pass_signal_to_emacs); 306 signal (SIGWINCH, pass_signal_to_emacs);