emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/src/xdisp.c
Date: Sat, 13 Nov 2004 23:36:33 -0500

Index: emacs/src/xdisp.c
diff -c emacs/src/xdisp.c:1.930 emacs/src/xdisp.c:1.931
*** emacs/src/xdisp.c:1.930     Sat Nov 13 01:05:47 2004
--- emacs/src/xdisp.c   Sun Nov 14 04:31:03 2004
***************
*** 892,898 ****
  static void reseat P_ ((struct it *, struct text_pos, int));
  static void reseat_1 P_ ((struct it *, struct text_pos, int));
  static void back_to_previous_visible_line_start P_ ((struct it *));
! static void reseat_at_previous_visible_line_start P_ ((struct it *));
  static void reseat_at_next_visible_line_start P_ ((struct it *, int));
  static int next_element_from_display_vector P_ ((struct it *));
  static int next_element_from_string P_ ((struct it *));
--- 892,898 ----
  static void reseat P_ ((struct it *, struct text_pos, int));
  static void reseat_1 P_ ((struct it *, struct text_pos, int));
  static void back_to_previous_visible_line_start P_ ((struct it *));
! void reseat_at_previous_visible_line_start P_ ((struct it *));
  static void reseat_at_next_visible_line_start P_ ((struct it *, int));
  static int next_element_from_display_vector P_ ((struct it *));
  static int next_element_from_string P_ ((struct it *));
***************
*** 4592,4598 ****
     selective display.  At the end, update IT's overlay information,
     face information etc.  */
  
! static void
  reseat_at_previous_visible_line_start (it)
       struct it *it;
  {
--- 4592,4598 ----
     selective display.  At the end, update IT's overlay information,
     face information etc.  */
  
! void
  reseat_at_previous_visible_line_start (it)
       struct it *it;
  {
***************
*** 4897,4904 ****
             translated to octal form.  */
          else if ((it->c < ' '
                    && (it->area != TEXT_AREA
!                       /* In mode line, treat \n, \t like other crl chars.  */
!                       || (it->glyph_row && it->glyph_row->mode_line_p)
                        || (it->c != '\n' && it->c != '\t')))
                   || (it->multibyte_p
                       ? ((it->c >= 127
--- 4897,4905 ----
             translated to octal form.  */
          else if ((it->c < ' '
                    && (it->area != TEXT_AREA
!                       /* In mode line, treat \n like other crl chars.  */
!                       || (it->c == '\n'
!                           && it->glyph_row && it->glyph_row->mode_line_p)
                        || (it->c != '\n' && it->c != '\t')))
                   || (it->multibyte_p
                       ? ((it->c >= 127




reply via email to

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