From: Stefan Monnier Date: Thu, 26 Jun 2003 23:15:25 +0000 (+0000) Subject: (struct buffer_text): Lisp_Object `markers' => Lisp_Marker. X-Git-Tag: ttn-vms-21-2-B4~9564 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=568c168cc76729830f2991aa01e98412c321351d;p=emacs.git (struct buffer_text): Lisp_Object `markers' => Lisp_Marker. --- diff --git a/src/buffer.h b/src/buffer.h index 784fa1da485..41e9a4581f1 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -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 @@ struct buffer_text 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. */