aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h4
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 *));
2741extern int charpos_to_bytepos P_ ((int)); 2741extern int charpos_to_bytepos P_ ((int));
2742extern int buf_charpos_to_bytepos P_ ((struct buffer *, int)); 2742extern int buf_charpos_to_bytepos P_ ((struct buffer *, int));
2743extern int buf_bytepos_to_charpos P_ ((struct buffer *, int)); 2743extern int buf_bytepos_to_charpos P_ ((struct buffer *, int));
2744extern void unchain_marker P_ ((Lisp_Object)); 2744extern void unchain_marker P_ ((struct Lisp_Marker *marker));
2745extern Lisp_Object set_marker_restricted P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); 2745extern Lisp_Object set_marker_restricted P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
2746extern Lisp_Object set_marker_both P_ ((Lisp_Object, Lisp_Object, int, int)); 2746extern Lisp_Object set_marker_both P_ ((Lisp_Object, Lisp_Object, int, int));
2747extern Lisp_Object set_marker_restricted_both P_ ((Lisp_Object, Lisp_Object, 2747extern Lisp_Object set_marker_restricted_both P_ ((Lisp_Object, Lisp_Object,