diff options
| author | Stefan Monnier | 2014-07-20 21:41:59 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2014-07-20 21:41:59 -0400 |
| commit | bb16bffbd20705fcfbbb17189f20b838eaf7d31e (patch) | |
| tree | d1217d69a114ea09b8d67bf34a03747174ee3c16 /src/terminal.c | |
| parent | 5bfcb88ced494a272045da30891cacc838276bd7 (diff) | |
| download | emacs-bb16bffbd20705fcfbbb17189f20b838eaf7d31e.tar.gz emacs-bb16bffbd20705fcfbbb17189f20b838eaf7d31e.zip | |
Indentation, punctuation, and other nitpicks.
Diffstat (limited to 'src/terminal.c')
| -rw-r--r-- | src/terminal.c | 12 |
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. */ |
| 32 | struct terminal *terminal_list; | 32 | struct terminal *terminal_list; |
| 33 | 33 | ||
| 34 | /* The first unallocated terminal id. */ | 34 | /* The first unallocated terminal id. */ |
| 35 | static int next_terminal_id; | 35 | static 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. */ |
| 38 | struct terminal *initial_terminal; | 38 | struct terminal *initial_terminal; |
| 39 | 39 | ||
| 40 | static Lisp_Object Qterminal_live_p; | 40 | static 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. */ |
| 127 | void | 127 | void |
| 128 | clear_to_end (struct frame *f) | 128 | clear_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 | ||
| 136 | void | 136 | void |
| 137 | clear_frame (struct frame *f) | 137 | clear_frame (struct frame *f) |