emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/lisp.h


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/lisp.h
Date: Thu, 26 Jun 2003 19:15:09 -0400

Index: emacs/src/lisp.h
diff -c emacs/src/lisp.h:1.457 emacs/src/lisp.h:1.458
*** emacs/src/lisp.h:1.457      Wed Jun 25 19:16:30 2003
--- emacs/src/lisp.h    Thu Jun 26 19:15:08 2003
***************
*** 1115,1121 ****
  
    /* For markers that point somewhere,
       this is used to chain of all the markers in a given buffer.  */
!   Lisp_Object chain;
    /* This is the char position where the marker points.  */
    int charpos;
    /* This is the byte position.  */
--- 1115,1121 ----
  
    /* For markers that point somewhere,
       this is used to chain of all the markers in a given buffer.  */
!   struct Lisp_Marker *next;
    /* This is the char position where the marker points.  */
    int charpos;
    /* This is the byte position.  */
***************
*** 2741,2747 ****
  extern int charpos_to_bytepos P_ ((int));
  extern int buf_charpos_to_bytepos P_ ((struct buffer *, int));
  extern int buf_bytepos_to_charpos P_ ((struct buffer *, int));
! extern void unchain_marker P_ ((Lisp_Object));
  extern Lisp_Object set_marker_restricted P_ ((Lisp_Object, Lisp_Object, 
Lisp_Object));
  extern Lisp_Object set_marker_both P_ ((Lisp_Object, Lisp_Object, int, int));
  extern Lisp_Object set_marker_restricted_both P_ ((Lisp_Object, Lisp_Object,
--- 2741,2747 ----
  extern int charpos_to_bytepos P_ ((int));
  extern int buf_charpos_to_bytepos P_ ((struct buffer *, int));
  extern int buf_bytepos_to_charpos P_ ((struct buffer *, int));
! extern void unchain_marker P_ ((struct Lisp_Marker *marker));
  extern Lisp_Object set_marker_restricted P_ ((Lisp_Object, Lisp_Object, 
Lisp_Object));
  extern Lisp_Object set_marker_both P_ ((Lisp_Object, Lisp_Object, int, int));
  extern Lisp_Object set_marker_restricted_both P_ ((Lisp_Object, Lisp_Object,




reply via email to

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