diff options
| author | Dmitry Antipov | 2013-10-14 14:55:24 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-10-14 14:55:24 +0400 |
| commit | e558436b778c0199caaff0ce40b9a279bacf640e (patch) | |
| tree | 80ab2b669ca83757b324c581f1f31b196e4ba8cf /src/termhooks.h | |
| parent | 3083cf62015294c41ca2accf3f4fa642b7687bbf (diff) | |
| download | emacs-e558436b778c0199caaff0ce40b9a279bacf640e.tar.gz emacs-e558436b778c0199caaff0ce40b9a279bacf640e.zip | |
* xfaces.c (PT_PER_INCH): Remove unused macro.
* termhooks.h (struct terminal): Remove set-but-unused
member fast_clear_end_of_line.
(FRAME_FAST_CLEAR_END_OF_LINE): Remove.
* nsterm.m (ns_create_terminal):
* term.c (init_tty):
* w32term.c (w32_create_terminal):
* xterm.c (x_create_terminal): Adjust users.
Diffstat (limited to 'src/termhooks.h')
| -rw-r--r-- | src/termhooks.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/termhooks.h b/src/termhooks.h index 9cea0c188ec..2c819ad58e3 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -408,8 +408,6 @@ struct terminal | |||
| 408 | int must_write_spaces; /* Nonzero means spaces in the text must | 408 | int must_write_spaces; /* Nonzero means spaces in the text must |
| 409 | actually be output; can't just skip over | 409 | actually be output; can't just skip over |
| 410 | some columns to leave them blank. */ | 410 | some columns to leave them blank. */ |
| 411 | int fast_clear_end_of_line; /* Nonzero means terminal has a `ce' string. */ | ||
| 412 | |||
| 413 | int line_ins_del_ok; /* Terminal can insert and delete lines. */ | 411 | int line_ins_del_ok; /* Terminal can insert and delete lines. */ |
| 414 | int char_ins_del_ok; /* Terminal can insert and delete chars. */ | 412 | int char_ins_del_ok; /* Terminal can insert and delete chars. */ |
| 415 | int scroll_region_ok; /* Terminal supports setting the scroll | 413 | int scroll_region_ok; /* Terminal supports setting the scroll |
| @@ -620,7 +618,6 @@ tset_selection_alist (struct terminal *t, Lisp_Object val) | |||
| 620 | extern struct terminal *terminal_list; | 618 | extern struct terminal *terminal_list; |
| 621 | 619 | ||
| 622 | #define FRAME_MUST_WRITE_SPACES(f) ((f)->terminal->must_write_spaces) | 620 | #define FRAME_MUST_WRITE_SPACES(f) ((f)->terminal->must_write_spaces) |
| 623 | #define FRAME_FAST_CLEAR_END_OF_LINE(f) ((f)->terminal->fast_clear_end_of_line) | ||
| 624 | #define FRAME_LINE_INS_DEL_OK(f) ((f)->terminal->line_ins_del_ok) | 621 | #define FRAME_LINE_INS_DEL_OK(f) ((f)->terminal->line_ins_del_ok) |
| 625 | #define FRAME_CHAR_INS_DEL_OK(f) ((f)->terminal->char_ins_del_ok) | 622 | #define FRAME_CHAR_INS_DEL_OK(f) ((f)->terminal->char_ins_del_ok) |
| 626 | #define FRAME_SCROLL_REGION_OK(f) ((f)->terminal->scroll_region_ok) | 623 | #define FRAME_SCROLL_REGION_OK(f) ((f)->terminal->scroll_region_ok) |