summaryrefslogtreecommitdiff
path: root/src/w32console.c
diff options
context:
space:
mode:
authorJason Rumney <jasonr@gnu.org>2004-05-17 21:14:43 +0000
committerJason Rumney <jasonr@gnu.org>2004-05-17 21:14:43 +0000
commit4fdbdbbd3870f8fa29605b24b4ff1c933b51408f (patch)
tree486d7e37c97dbf3f2ba747e8193c097e299dc51e /src/w32console.c
parent78806724fe1548a506e66834cbe952ffc8b8a776 (diff)
downloademacs-4fdbdbbd3870f8fa29605b24b4ff1c933b51408f.tar.gz
Use static consistently.
Diffstat (limited to 'src/w32console.c')
-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;
static void move_cursor (int row, int col);
static void clear_to_end (void);
-static void clear_frame (void);
-static void clear_end_of_line (int);
+void clear_frame (void);
+void clear_end_of_line (int);
static void ins_del_lines (int vpos, int n);
-static void insert_glyphs (struct glyph *start, int len);
-static void write_glyphs (struct glyph *string, int len);
-static void delete_glyphs (int n);
+void insert_glyphs (struct glyph *start, int len);
+void write_glyphs (struct glyph *string, int len);
+void delete_glyphs (int n);
void w32_sys_ring_bell (void);
-static void reset_terminal_modes (void);
-static void set_terminal_modes (void);
-static void set_terminal_window (int size);
-static void update_begin (struct frame * f);
-static void update_end (struct frame * f);
+void reset_terminal_modes (void);
+void set_terminal_modes (void);
+void set_terminal_window (int size);
+void update_begin (struct frame * f);
+void update_end (struct frame * f);
static WORD w32_face_attributes (struct frame *f, int face_id);
static COORD cursor_coords;
@@ -103,7 +103,7 @@ ctrl_c_handler (unsigned long type)
#define PICK_FRAME() (updating_frame ? updating_frame : SELECTED_FRAME ())
/* Move the cursor to (row, col). */
-void
+static void
move_cursor (int row, int col)
{
cursor_coords.X = col;
@@ -116,7 +116,7 @@ move_cursor (int row, int col)
}
/* Clear from cursor to end of screen. */
-void
+static void
clear_to_end (void)
{
struct frame * f = PICK_FRAME ();
@@ -240,7 +240,7 @@ ins_del_lines (int vpos, int n)
#define LEFT 1
#define RIGHT 0
-void
+static void
scroll_line (int dist, int direction)
{
/* The idea here is to implement a horizontal scroll in one line to