# HG changeset patch # User Stefan Monnier # Date 1056669325 0 # Node ID 52d50e52438f1b7daf937318dc1bf2a7b0f349af # Parent 7181f5ced81c49d71ad5bd35adff5595045ef0d3 (struct buffer_text): Lisp_Object `markers' => Lisp_Marker. diff -r 7181f5ced81c -r 52d50e52438f src/buffer.h --- a/src/buffer.h Thu Jun 26 23:15:08 2003 +0000 +++ b/src/buffer.h Thu Jun 26 23:15:25 2003 +0000 @@ -1,5 +1,5 @@ /* Header file for the buffer manipulation primitives. - Copyright (C) 1985, 86, 93, 94, 95, 97, 1998, 1999, 2000, 2001 + Copyright (C) 1985, 86, 93, 94, 95, 97, 1998, 1999, 2000, 01, 2003 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -433,7 +433,7 @@ This is actually a single marker --- successive elements in its marker `chain' are the other markers referring to this buffer. */ - Lisp_Object markers; + struct Lisp_Marker *markers; }; /* This is the structure that the buffer Lisp object points to. */