aboutsummaryrefslogtreecommitdiffstats
path: root/src/terminal.c
diff options
context:
space:
mode:
authorStefan Monnier2014-07-20 21:41:59 -0400
committerStefan Monnier2014-07-20 21:41:59 -0400
commitbb16bffbd20705fcfbbb17189f20b838eaf7d31e (patch)
treed1217d69a114ea09b8d67bf34a03747174ee3c16 /src/terminal.c
parent5bfcb88ced494a272045da30891cacc838276bd7 (diff)
downloademacs-bb16bffbd20705fcfbbb17189f20b838eaf7d31e.tar.gz
emacs-bb16bffbd20705fcfbbb17189f20b838eaf7d31e.zip
Indentation, punctuation, and other nitpicks.
Diffstat (limited to 'src/terminal.c')
-rw-r--r--src/terminal.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/terminal.c b/src/terminal.c
index 23455262cb3..a827677a58d 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -28,13 +28,13 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
28#include "coding.h" 28#include "coding.h"
29#include "keyboard.h" 29#include "keyboard.h"
30 30
31/* Chain of all terminals currently in use. */ 31/* Chain of all terminals currently in use. */
32struct terminal *terminal_list; 32struct terminal *terminal_list;
33 33
34/* The first unallocated terminal id. */ 34/* The first unallocated terminal id. */
35static int next_terminal_id; 35static int next_terminal_id;
36 36
37/* The initial terminal device, created by initial_term_init. */ 37/* The initial terminal device, created by initial_term_init. */
38struct terminal *initial_terminal; 38struct terminal *initial_terminal;
39 39
40static Lisp_Object Qterminal_live_p; 40static Lisp_Object Qterminal_live_p;
@@ -121,9 +121,9 @@ raw_cursor_to (struct frame *f, int row, int col)
121 (*FRAME_TERMINAL (f)->raw_cursor_to_hook) (f, row, col); 121 (*FRAME_TERMINAL (f)->raw_cursor_to_hook) (f, row, col);
122} 122}
123 123
124/* Erase operations */ 124/* Erase operations. */
125 125
126/* Clear from cursor to end of frame. */ 126/* Clear from cursor to end of frame. */
127void 127void
128clear_to_end (struct frame *f) 128clear_to_end (struct frame *f)
129{ 129{
@@ -131,7 +131,7 @@ clear_to_end (struct frame *f)
131 (*FRAME_TERMINAL (f)->clear_to_end_hook) (f); 131 (*FRAME_TERMINAL (f)->clear_to_end_hook) (f);
132} 132}
133 133
134/* Clear entire frame */ 134/* Clear entire frame. */
135 135
136void 136void
137clear_frame (struct frame *f) 137clear_frame (struct frame *f)