diff options
| author | Stefan Monnier | 2003-06-26 23:15:25 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-06-26 23:15:25 +0000 |
| commit | 568c168cc76729830f2991aa01e98412c321351d (patch) | |
| tree | 98d6c44266652e4988684712fdbe236503f05232 /src | |
| parent | c0ac2f4ab0fe5df8bdd9260d2b7d87d447412a7d (diff) | |
| download | emacs-568c168cc76729830f2991aa01e98412c321351d.tar.gz emacs-568c168cc76729830f2991aa01e98412c321351d.zip | |
(struct buffer_text): Lisp_Object `markers' => Lisp_Marker.
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ | |||
| 1 | /* Header file for the buffer manipulation primitives. | 1 | /* Header file for the buffer manipulation primitives. |
| 2 | Copyright (C) 1985, 86, 93, 94, 95, 97, 1998, 1999, 2000, 2001 | 2 | Copyright (C) 1985, 86, 93, 94, 95, 97, 1998, 1999, 2000, 01, 2003 |
| 3 | Free Software Foundation, Inc. | 3 | Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| @@ -433,7 +433,7 @@ struct buffer_text | |||
| 433 | This is actually a single marker --- | 433 | This is actually a single marker --- |
| 434 | successive elements in its marker `chain' | 434 | successive elements in its marker `chain' |
| 435 | are the other markers referring to this buffer. */ | 435 | are the other markers referring to this buffer. */ |
| 436 | Lisp_Object markers; | 436 | struct Lisp_Marker *markers; |
| 437 | }; | 437 | }; |
| 438 | 438 | ||
| 439 | /* This is the structure that the buffer Lisp object points to. */ | 439 | /* This is the structure that the buffer Lisp object points to. */ |