Mercurial > hg > xemacs-beta
comparison src/console-stream.c @ 110:fe104dbd9147 r20-1b7
Import from CVS: tag r20-1b7
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:19:45 +0200 |
parents | c7528f8e288d |
children | 3d6bfa290dbd |
comparison
equal
deleted
inserted
replaced
109:e183fc049578 | 110:fe104dbd9147 |
---|---|
316 | 316 |
317 void | 317 void |
318 vars_of_console_stream (void) | 318 vars_of_console_stream (void) |
319 { | 319 { |
320 DEFVAR_LISP ("terminal-console", &Vterminal_console /* | 320 DEFVAR_LISP ("terminal-console", &Vterminal_console /* |
321 The initial console-object, which represent's Emacs's stdout. | 321 The initial console-object, which represents XEmacs' stdout. |
322 */ ); | 322 */ ); |
323 Vterminal_console = Qnil; | 323 Vterminal_console = Qnil; |
324 | 324 |
325 DEFVAR_LISP ("terminal-device", &Vterminal_device /* | 325 DEFVAR_LISP ("terminal-device", &Vterminal_device /* |
326 The initial device-object, which represent's Emacs's stdout. | 326 The initial device-object, which represents XEmacs' stdout. |
327 */ ); | 327 */ ); |
328 Vterminal_device = Qnil; | 328 Vterminal_device = Qnil; |
329 | 329 |
330 DEFVAR_LISP ("terminal-frame", &Vterminal_frame /* | 330 DEFVAR_LISP ("terminal-frame", &Vterminal_frame /* |
331 The initial frame-object, which represents Emacs's stdout. | 331 The initial frame-object, which represents XEmacs' stdout. |
332 */ ); | 332 */ ); |
333 Vterminal_frame = Qnil; | 333 Vterminal_frame = Qnil; |
334 | 334 |
335 /* Moved from console-tty.c */ | 335 /* Moved from console-tty.c */ |
336 Vstdio_str = build_string ("stdio"); | 336 Vstdio_str = build_string ("stdio"); |