comparison src/sysdep.c @ 90159:08185296b491

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-44 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 272-288) - src/xdisp.c (dump_glyph_row): Don't display overlay_arrow_p field. - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 67) - Update from CVS
author Miles Bader <miles@gnu.org>
date Thu, 05 May 2005 00:04:55 +0000
parents e1fbb019c538 c22f4309603e
children f9a65d7ebd29
comparison
equal deleted inserted replaced
90158:bf4846baba9a 90159:08185296b491
1716 } 1716 }
1717 1717
1718 #else 1718 #else
1719 #ifdef VMS 1719 #ifdef VMS
1720 1720
1721 /* Use a fresh channel since the current one may have stale info
1722 (for example, from prior to a suspend); and to avoid a dependency
1723 in the init sequence. */
1724 int chan;
1721 struct sensemode tty; 1725 struct sensemode tty;
1722 1726
1723 SYS$QIOW (0, input_fd, IO$_SENSEMODE, &tty, 0, 0, 1727 SYS$ASSIGN (&input_dsc, &chan, 0, 0);
1724 &tty.class, 12, 0, 0, 0, 0); 1728 SYS$QIOW (0, chan, IO$_SENSEMODE, &tty, 0, 0,
1729 &tty.class, 12, 0, 0, 0, 0);
1730 SYS$DASSGN (chan);
1725 *widthp = tty.scr_wid; 1731 *widthp = tty.scr_wid;
1726 *heightp = tty.scr_len; 1732 *heightp = tty.scr_len;
1727 1733
1728 #else 1734 #else
1729 #ifdef MSDOS 1735 #ifdef MSDOS