emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/w32console.c [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/w32console.c [lexbind]
Date: Tue, 06 Jul 2004 07:12:29 -0400

Index: emacs/src/w32console.c
diff -c emacs/src/w32console.c:1.32.4.2 emacs/src/w32console.c:1.32.4.3
*** emacs/src/w32console.c:1.32.4.2     Tue Oct 14 23:22:47 2003
--- emacs/src/w32console.c      Tue Jul  6 09:14:38 2004
***************
*** 55,72 ****
  
  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);
  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 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);
  static WORD w32_face_attributes (struct frame *f, int face_id);
  
  static COORD  cursor_coords;
--- 55,72 ----
  
  static void move_cursor (int row, int col);
  static void clear_to_end (void);
! void clear_frame (void);
! void clear_end_of_line (int);
  static void ins_del_lines (int vpos, 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);
! 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,109 ****
  #define PICK_FRAME() (updating_frame ? updating_frame : SELECTED_FRAME ())
  
  /* Move the cursor to (row, col).  */
! void
  move_cursor (int row, int col)
  {
    cursor_coords.X = col;
--- 103,109 ----
  #define PICK_FRAME() (updating_frame ? updating_frame : SELECTED_FRAME ())
  
  /* Move the cursor to (row, col).  */
! static void
  move_cursor (int row, int col)
  {
    cursor_coords.X = col;
***************
*** 116,122 ****
  }
  
  /* Clear from cursor to end of screen.  */
! void
  clear_to_end (void)
  {
    struct frame * f = PICK_FRAME ();
--- 116,122 ----
  }
  
  /* Clear from cursor to end of screen.  */
! static void
  clear_to_end (void)
  {
    struct frame * f = PICK_FRAME ();
***************
*** 240,246 ****
  #define       LEFT    1
  #define       RIGHT   0
  
! void
  scroll_line (int dist, int direction)
  {
    /* The idea here is to implement a horizontal scroll in one line to
--- 240,246 ----
  #define       LEFT    1
  #define       RIGHT   0
  
! static void
  scroll_line (int dist, int direction)
  {
    /* The idea here is to implement a horizontal scroll in one line to




reply via email to

[Prev in Thread] Current Thread [Next in Thread]