12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #include "sys-defines.h"
- #include "extern.h"
- bool
- _pl_t_end_page (S___(Plotter *_plotter))
- {
- _pl_t_tek_move (R___(_plotter) 0, 0);
- _pl_t_tek_mode (R___(_plotter) TEK_MODE_ALPHA);
- switch (_plotter->tek_display_type)
- {
- case TEK_DPY_KERMIT:
-
- _write_string (_plotter->data, "\033[?38l");
-
-
- break;
- case TEK_DPY_XTERM:
-
- _write_string (_plotter->data, "\033\003");
- break;
- case TEK_DPY_GENERIC:
- default:
- break;
- }
- return true;
- }
|