diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32console.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/w32console.c b/src/w32console.c index 14885f90730..b2d340d579c 100644 --- a/src/w32console.c +++ b/src/w32console.c | |||
| @@ -55,18 +55,18 @@ extern int meta_key; | |||
| 55 | 55 | ||
| 56 | static void move_cursor (int row, int col); | 56 | static void move_cursor (int row, int col); |
| 57 | static void clear_to_end (void); | 57 | static void clear_to_end (void); |
| 58 | static void clear_frame (void); | 58 | void clear_frame (void); |
| 59 | static void clear_end_of_line (int); | 59 | void clear_end_of_line (int); |
| 60 | static void ins_del_lines (int vpos, int n); | 60 | static void ins_del_lines (int vpos, int n); |
| 61 | static void insert_glyphs (struct glyph *start, int len); | 61 | void insert_glyphs (struct glyph *start, int len); |
| 62 | static void write_glyphs (struct glyph *string, int len); | 62 | void write_glyphs (struct glyph *string, int len); |
| 63 | static void delete_glyphs (int n); | 63 | void delete_glyphs (int n); |
| 64 | void w32_sys_ring_bell (void); | 64 | void w32_sys_ring_bell (void); |
| 65 | static void reset_terminal_modes (void); | 65 | void reset_terminal_modes (void); |
| 66 | static void set_terminal_modes (void); | 66 | void set_terminal_modes (void); |
| 67 | static void set_terminal_window (int size); | 67 | void set_terminal_window (int size); |
| 68 | static void update_begin (struct frame * f); | 68 | void update_begin (struct frame * f); |
| 69 | static void update_end (struct frame * f); | 69 | void update_end (struct frame * f); |
| 70 | static WORD w32_face_attributes (struct frame *f, int face_id); | 70 | static WORD w32_face_attributes (struct frame *f, int face_id); |
| 71 | 71 | ||
| 72 | static COORD cursor_coords; | 72 | static COORD cursor_coords; |
| @@ -103,7 +103,7 @@ ctrl_c_handler (unsigned long type) | |||
| 103 | #define PICK_FRAME() (updating_frame ? updating_frame : SELECTED_FRAME ()) | 103 | #define PICK_FRAME() (updating_frame ? updating_frame : SELECTED_FRAME ()) |
| 104 | 104 | ||
| 105 | /* Move the cursor to (row, col). */ | 105 | /* Move the cursor to (row, col). */ |
| 106 | void | 106 | static void |
| 107 | move_cursor (int row, int col) | 107 | move_cursor (int row, int col) |
| 108 | { | 108 | { |
| 109 | cursor_coords.X = col; | 109 | cursor_coords.X = col; |
| @@ -116,7 +116,7 @@ move_cursor (int row, int col) | |||
| 116 | } | 116 | } |
| 117 | 117 | ||
| 118 | /* Clear from cursor to end of screen. */ | 118 | /* Clear from cursor to end of screen. */ |
| 119 | void | 119 | static void |
| 120 | clear_to_end (void) | 120 | clear_to_end (void) |
| 121 | { | 121 | { |
| 122 | struct frame * f = PICK_FRAME (); | 122 | struct frame * f = PICK_FRAME (); |
| @@ -240,7 +240,7 @@ ins_del_lines (int vpos, int n) | |||
| 240 | #define LEFT 1 | 240 | #define LEFT 1 |
| 241 | #define RIGHT 0 | 241 | #define RIGHT 0 |
| 242 | 242 | ||
| 243 | void | 243 | static void |
| 244 | scroll_line (int dist, int direction) | 244 | scroll_line (int dist, int direction) |
| 245 | { | 245 | { |
| 246 | /* The idea here is to implement a horizontal scroll in one line to | 246 | /* The idea here is to implement a horizontal scroll in one line to |