12345678910111213141516171819202122232425262728293031323334353637 |
- #include "sys-defines.h"
- #include "extern.h"
- bool
- _pl_t_begin_page (S___(Plotter *_plotter))
- {
-
- if (_plotter->tek_display_type == TEK_DPY_XTERM
- || _plotter->tek_display_type == TEK_DPY_KERMIT)
-
- _write_string (_plotter->data, "\033[?38h");
- return true;
- }
|