diff options
| author | Stefan Monnier | 2003-06-26 23:15:08 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-06-26 23:15:08 +0000 |
| commit | c0ac2f4ab0fe5df8bdd9260d2b7d87d447412a7d (patch) | |
| tree | 8ad29fc5dffe680e2db509d290516f7edaa4c451 /src | |
| parent | a5f696acd2f4ad2a22fd1b5e48ea97d2ffa311b9 (diff) | |
| download | emacs-c0ac2f4ab0fe5df8bdd9260d2b7d87d447412a7d.tar.gz emacs-c0ac2f4ab0fe5df8bdd9260d2b7d87d447412a7d.zip | |
(unchain_marker): Lisp_Object arg => Lisp_Marker.
(struct Lisp_Marker): Lisp_Object `chain' => Lisp_Marker `next'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 1bc5949cea6..16611484c8b 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1115,7 +1115,7 @@ struct Lisp_Marker | |||
| 1115 | 1115 | ||
| 1116 | /* For markers that point somewhere, | 1116 | /* For markers that point somewhere, |
| 1117 | this is used to chain of all the markers in a given buffer. */ | 1117 | this is used to chain of all the markers in a given buffer. */ |
| 1118 | Lisp_Object chain; | 1118 | struct Lisp_Marker *next; |
| 1119 | /* This is the char position where the marker points. */ | 1119 | /* This is the char position where the marker points. */ |
| 1120 | int charpos; | 1120 | int charpos; |
| 1121 | /* This is the byte position. */ | 1121 | /* This is the byte position. */ |
| @@ -2741,7 +2741,7 @@ extern void clear_charpos_cache P_ ((struct buffer *)); | |||
| 2741 | extern int charpos_to_bytepos P_ ((int)); | 2741 | extern int charpos_to_bytepos P_ ((int)); |
| 2742 | extern int buf_charpos_to_bytepos P_ ((struct buffer *, int)); | 2742 | extern int buf_charpos_to_bytepos P_ ((struct buffer *, int)); |
| 2743 | extern int buf_bytepos_to_charpos P_ ((struct buffer *, int)); | 2743 | extern int buf_bytepos_to_charpos P_ ((struct buffer *, int)); |
| 2744 | extern void unchain_marker P_ ((Lisp_Object)); | 2744 | extern void unchain_marker P_ ((struct Lisp_Marker *marker)); |
| 2745 | extern Lisp_Object set_marker_restricted P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); | 2745 | extern Lisp_Object set_marker_restricted P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); |
| 2746 | extern Lisp_Object set_marker_both P_ ((Lisp_Object, Lisp_Object, int, int)); | 2746 | extern Lisp_Object set_marker_both P_ ((Lisp_Object, Lisp_Object, int, int)); |
| 2747 | extern Lisp_Object set_marker_restricted_both P_ ((Lisp_Object, Lisp_Object, | 2747 | extern Lisp_Object set_marker_restricted_both P_ ((Lisp_Object, Lisp_Object, |