diff options
Diffstat (limited to 'src/terminal.c')
| -rw-r--r-- | src/terminal.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/terminal.c b/src/terminal.c index 309cc0095e8..c5185601fb6 100644 --- a/src/terminal.c +++ b/src/terminal.c | |||
| @@ -109,7 +109,7 @@ void | |||
| 109 | raw_cursor_to (struct frame *f, int row, int col) | 109 | raw_cursor_to (struct frame *f, int row, int col) |
| 110 | { | 110 | { |
| 111 | if (FRAME_TERMINAL (f)->raw_cursor_to_hook) | 111 | if (FRAME_TERMINAL (f)->raw_cursor_to_hook) |
| 112 | (*FRAME_TERMINAL (f)->raw_cursor_to_hook) (f, row, col); | 112 | (*FRAME_TERMINAL (f)->raw_cursor_to_hook) (f, row, col); |
| 113 | } | 113 | } |
| 114 | 114 | ||
| 115 | /* Erase operations */ | 115 | /* Erase operations */ |
| @@ -444,7 +444,7 @@ selected frame's terminal). */) | |||
| 444 | /* Set the value of terminal parameter PARAMETER in terminal D to VALUE. | 444 | /* Set the value of terminal parameter PARAMETER in terminal D to VALUE. |
| 445 | Return the previous value. */ | 445 | Return the previous value. */ |
| 446 | 446 | ||
| 447 | Lisp_Object | 447 | static Lisp_Object |
| 448 | store_terminal_param (struct terminal *t, Lisp_Object parameter, Lisp_Object value) | 448 | store_terminal_param (struct terminal *t, Lisp_Object parameter, Lisp_Object value) |
| 449 | { | 449 | { |
| 450 | Lisp_Object old_alist_elt = Fassq (parameter, t->param_alist); | 450 | Lisp_Object old_alist_elt = Fassq (parameter, t->param_alist); |
| @@ -569,4 +569,3 @@ or some time later. */); | |||
| 569 | 569 | ||
| 570 | Fprovide (intern_c_string ("multi-tty"), Qnil); | 570 | Fprovide (intern_c_string ("multi-tty"), Qnil); |
| 571 | } | 571 | } |
| 572 | |||