Mercurial > hg > xemacs-beta
comparison src/console-stream.c @ 32:e04119814345 r19-15b99
Import from CVS: tag r19-15b99
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:52:56 +0200 |
parents | 0293115a14e9 |
children | 131b0175ea99 |
comparison
equal
deleted
inserted
replaced
31:b9328a10c56c | 32:e04119814345 |
---|---|
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"); |