aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2004-05-17 21:14:43 +0000
committerJason Rumney2004-05-17 21:14:43 +0000
commit4fdbdbbd3870f8fa29605b24b4ff1c933b51408f (patch)
tree486d7e37c97dbf3f2ba747e8193c097e299dc51e /src
parent78806724fe1548a506e66834cbe952ffc8b8a776 (diff)
downloademacs-4fdbdbbd3870f8fa29605b24b4ff1c933b51408f.tar.gz
emacs-4fdbdbbd3870f8fa29605b24b4ff1c933b51408f.zip
Use static consistently.
Diffstat (limited to 'src')
-rw-r--r--src/w32console.c26
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
56static void move_cursor (int row, int col); 56static void move_cursor (int row, int col);
57static void clear_to_end (void); 57static void clear_to_end (void);
58static void clear_frame (void); 58void clear_frame (void);
59static void clear_end_of_line (int); 59void clear_end_of_line (int);
60static void ins_del_lines (int vpos, int n); 60static void ins_del_lines (int vpos, int n);
61static void insert_glyphs (struct glyph *start, int len); 61void insert_glyphs (struct glyph *start, int len);
62static void write_glyphs (struct glyph *string, int len); 62void write_glyphs (struct glyph *string, int len);
63static void delete_glyphs (int n); 63void delete_glyphs (int n);
64void w32_sys_ring_bell (void); 64void w32_sys_ring_bell (void);
65static void reset_terminal_modes (void); 65void reset_terminal_modes (void);
66static void set_terminal_modes (void); 66void set_terminal_modes (void);
67static void set_terminal_window (int size); 67void set_terminal_window (int size);
68static void update_begin (struct frame * f); 68void update_begin (struct frame * f);
69static void update_end (struct frame * f); 69void update_end (struct frame * f);
70static WORD w32_face_attributes (struct frame *f, int face_id); 70static WORD w32_face_attributes (struct frame *f, int face_id);
71 71
72static COORD cursor_coords; 72static 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). */
106void 106static void
107move_cursor (int row, int col) 107move_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. */
119void 119static void
120clear_to_end (void) 120clear_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
243void 243static void
244scroll_line (int dist, int direction) 244scroll_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