Fix recently-introduced typos in Windows port.
[bpt/emacs.git] / src / marker.c
1 /* Markers: examining, setting and deleting.
2 Copyright (C) 1985, 1997-1998, 2001-2012 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19
20 #include <config.h>
21 #include <setjmp.h>
22 #include "lisp.h"
23 #include "character.h"
24 #include "buffer.h"
25
26 /* Record one cached position found recently by
27 buf_charpos_to_bytepos or buf_bytepos_to_charpos. */
28
29 static ptrdiff_t cached_charpos;
30 static ptrdiff_t cached_bytepos;
31 static struct buffer *cached_buffer;
32 static int cached_modiff;
33
34 /* Juanma Barranquero <lekktu@gmail.com> reported ~3x increased
35 bootstrap time when byte_char_debug_check is enabled; so this
36 is never turned on by --enable-checking configure option. */
37
38 #ifdef MARKER_DEBUG
39
40 extern int count_markers (struct buffer *) EXTERNALLY_VISIBLE;
41 extern ptrdiff_t verify_bytepos (ptrdiff_t charpos) EXTERNALLY_VISIBLE;
42
43 static void
44 byte_char_debug_check (struct buffer *b, ptrdiff_t charpos, ptrdiff_t bytepos)
45 {
46 ptrdiff_t nchars;
47
48 if (NILP (BVAR (b, enable_multibyte_characters)))
49 return;
50
51 if (bytepos > BUF_GPT_BYTE (b))
52 nchars
53 = multibyte_chars_in_text (BUF_BEG_ADDR (b),
54 BUF_GPT_BYTE (b) - BUF_BEG_BYTE (b))
55 + multibyte_chars_in_text (BUF_GAP_END_ADDR (b),
56 bytepos - BUF_GPT_BYTE (b));
57 else
58 nchars = multibyte_chars_in_text (BUF_BEG_ADDR (b),
59 bytepos - BUF_BEG_BYTE (b));
60
61 if (charpos - 1 != nchars)
62 abort ();
63 }
64
65 #else /* not MARKER_DEBUG */
66
67 #define byte_char_debug_check(b,charpos,bytepos) do { } while (0)
68
69 #endif /* MARKER_DEBUG */
70
71 void
72 clear_charpos_cache (struct buffer *b)
73 {
74 if (cached_buffer == b)
75 cached_buffer = 0;
76 }
77 \f
78 /* Converting between character positions and byte positions. */
79
80 /* There are several places in the buffer where we know
81 the correspondence: BEG, BEGV, PT, GPT, ZV and Z,
82 and everywhere there is a marker. So we find the one of these places
83 that is closest to the specified position, and scan from there. */
84
85 /* charpos_to_bytepos returns the byte position corresponding to CHARPOS. */
86
87 /* This macro is a subroutine of charpos_to_bytepos.
88 Note that it is desirable that BYTEPOS is not evaluated
89 except when we really want its value. */
90
91 #define CONSIDER(CHARPOS, BYTEPOS) \
92 { \
93 ptrdiff_t this_charpos = (CHARPOS); \
94 int changed = 0; \
95 \
96 if (this_charpos == charpos) \
97 { \
98 ptrdiff_t value = (BYTEPOS); \
99 \
100 byte_char_debug_check (b, charpos, value); \
101 return value; \
102 } \
103 else if (this_charpos > charpos) \
104 { \
105 if (this_charpos < best_above) \
106 { \
107 best_above = this_charpos; \
108 best_above_byte = (BYTEPOS); \
109 changed = 1; \
110 } \
111 } \
112 else if (this_charpos > best_below) \
113 { \
114 best_below = this_charpos; \
115 best_below_byte = (BYTEPOS); \
116 changed = 1; \
117 } \
118 \
119 if (changed) \
120 { \
121 if (best_above - best_below == best_above_byte - best_below_byte) \
122 { \
123 ptrdiff_t value = best_below_byte + (charpos - best_below); \
124 \
125 byte_char_debug_check (b, charpos, value); \
126 return value; \
127 } \
128 } \
129 }
130
131 ptrdiff_t
132 charpos_to_bytepos (ptrdiff_t charpos)
133 {
134 return buf_charpos_to_bytepos (current_buffer, charpos);
135 }
136
137 ptrdiff_t
138 buf_charpos_to_bytepos (struct buffer *b, ptrdiff_t charpos)
139 {
140 struct Lisp_Marker *tail;
141 ptrdiff_t best_above, best_above_byte;
142 ptrdiff_t best_below, best_below_byte;
143
144 if (charpos < BUF_BEG (b) || charpos > BUF_Z (b))
145 abort ();
146
147 best_above = BUF_Z (b);
148 best_above_byte = BUF_Z_BYTE (b);
149
150 /* If this buffer has as many characters as bytes,
151 each character must be one byte.
152 This takes care of the case where enable-multibyte-characters is nil. */
153 if (best_above == best_above_byte)
154 return charpos;
155
156 best_below = BEG;
157 best_below_byte = BEG_BYTE;
158
159 /* We find in best_above and best_above_byte
160 the closest known point above CHARPOS,
161 and in best_below and best_below_byte
162 the closest known point below CHARPOS,
163
164 If at any point we can tell that the space between those
165 two best approximations is all single-byte,
166 we interpolate the result immediately. */
167
168 CONSIDER (BUF_PT (b), BUF_PT_BYTE (b));
169 CONSIDER (BUF_GPT (b), BUF_GPT_BYTE (b));
170 CONSIDER (BUF_BEGV (b), BUF_BEGV_BYTE (b));
171 CONSIDER (BUF_ZV (b), BUF_ZV_BYTE (b));
172
173 if (b == cached_buffer && BUF_MODIFF (b) == cached_modiff)
174 CONSIDER (cached_charpos, cached_bytepos);
175
176 for (tail = BUF_MARKERS (b); tail; tail = tail->next)
177 {
178 CONSIDER (tail->charpos, tail->bytepos);
179
180 /* If we are down to a range of 50 chars,
181 don't bother checking any other markers;
182 scan the intervening chars directly now. */
183 if (best_above - best_below < 50)
184 break;
185 }
186
187 /* We get here if we did not exactly hit one of the known places.
188 We have one known above and one known below.
189 Scan, counting characters, from whichever one is closer. */
190
191 if (charpos - best_below < best_above - charpos)
192 {
193 int record = charpos - best_below > 5000;
194
195 while (best_below != charpos)
196 {
197 best_below++;
198 BUF_INC_POS (b, best_below_byte);
199 }
200
201 /* If this position is quite far from the nearest known position,
202 cache the correspondence by creating a marker here.
203 It will last until the next GC. */
204 if (record)
205 build_marker (b, best_below, best_below_byte);
206
207 byte_char_debug_check (b, best_below, best_below_byte);
208
209 cached_buffer = b;
210 cached_modiff = BUF_MODIFF (b);
211 cached_charpos = best_below;
212 cached_bytepos = best_below_byte;
213
214 return best_below_byte;
215 }
216 else
217 {
218 int record = best_above - charpos > 5000;
219
220 while (best_above != charpos)
221 {
222 best_above--;
223 BUF_DEC_POS (b, best_above_byte);
224 }
225
226 /* If this position is quite far from the nearest known position,
227 cache the correspondence by creating a marker here.
228 It will last until the next GC. */
229 if (record)
230 build_marker (b, best_above, best_above_byte);
231
232 byte_char_debug_check (b, best_above, best_above_byte);
233
234 cached_buffer = b;
235 cached_modiff = BUF_MODIFF (b);
236 cached_charpos = best_above;
237 cached_bytepos = best_above_byte;
238
239 return best_above_byte;
240 }
241 }
242
243 #undef CONSIDER
244
245 /* buf_bytepos_to_charpos returns the char position corresponding to
246 BYTEPOS. */
247
248 /* This macro is a subroutine of buf_bytepos_to_charpos.
249 It is used when BYTEPOS is actually the byte position. */
250
251 #define CONSIDER(BYTEPOS, CHARPOS) \
252 { \
253 ptrdiff_t this_bytepos = (BYTEPOS); \
254 int changed = 0; \
255 \
256 if (this_bytepos == bytepos) \
257 { \
258 ptrdiff_t value = (CHARPOS); \
259 \
260 byte_char_debug_check (b, value, bytepos); \
261 return value; \
262 } \
263 else if (this_bytepos > bytepos) \
264 { \
265 if (this_bytepos < best_above_byte) \
266 { \
267 best_above = (CHARPOS); \
268 best_above_byte = this_bytepos; \
269 changed = 1; \
270 } \
271 } \
272 else if (this_bytepos > best_below_byte) \
273 { \
274 best_below = (CHARPOS); \
275 best_below_byte = this_bytepos; \
276 changed = 1; \
277 } \
278 \
279 if (changed) \
280 { \
281 if (best_above - best_below == best_above_byte - best_below_byte) \
282 { \
283 ptrdiff_t value = best_below + (bytepos - best_below_byte); \
284 \
285 byte_char_debug_check (b, value, bytepos); \
286 return value; \
287 } \
288 } \
289 }
290
291 ptrdiff_t
292 buf_bytepos_to_charpos (struct buffer *b, ptrdiff_t bytepos)
293 {
294 struct Lisp_Marker *tail;
295 ptrdiff_t best_above, best_above_byte;
296 ptrdiff_t best_below, best_below_byte;
297
298 if (bytepos < BUF_BEG_BYTE (b) || bytepos > BUF_Z_BYTE (b))
299 abort ();
300
301 best_above = BUF_Z (b);
302 best_above_byte = BUF_Z_BYTE (b);
303
304 /* If this buffer has as many characters as bytes,
305 each character must be one byte.
306 This takes care of the case where enable-multibyte-characters is nil. */
307 if (best_above == best_above_byte)
308 return bytepos;
309
310 best_below = BEG;
311 best_below_byte = BEG_BYTE;
312
313 CONSIDER (BUF_PT_BYTE (b), BUF_PT (b));
314 CONSIDER (BUF_GPT_BYTE (b), BUF_GPT (b));
315 CONSIDER (BUF_BEGV_BYTE (b), BUF_BEGV (b));
316 CONSIDER (BUF_ZV_BYTE (b), BUF_ZV (b));
317
318 if (b == cached_buffer && BUF_MODIFF (b) == cached_modiff)
319 CONSIDER (cached_bytepos, cached_charpos);
320
321 for (tail = BUF_MARKERS (b); tail; tail = tail->next)
322 {
323 CONSIDER (tail->bytepos, tail->charpos);
324
325 /* If we are down to a range of 50 chars,
326 don't bother checking any other markers;
327 scan the intervening chars directly now. */
328 if (best_above - best_below < 50)
329 break;
330 }
331
332 /* We get here if we did not exactly hit one of the known places.
333 We have one known above and one known below.
334 Scan, counting characters, from whichever one is closer. */
335
336 if (bytepos - best_below_byte < best_above_byte - bytepos)
337 {
338 int record = bytepos - best_below_byte > 5000;
339
340 while (best_below_byte < bytepos)
341 {
342 best_below++;
343 BUF_INC_POS (b, best_below_byte);
344 }
345
346 /* If this position is quite far from the nearest known position,
347 cache the correspondence by creating a marker here.
348 It will last until the next GC.
349 But don't do it if BUF_MARKERS is nil;
350 that is a signal from Fset_buffer_multibyte. */
351 if (record && BUF_MARKERS (b))
352 build_marker (b, best_below, best_below_byte);
353
354 byte_char_debug_check (b, best_below, best_below_byte);
355
356 cached_buffer = b;
357 cached_modiff = BUF_MODIFF (b);
358 cached_charpos = best_below;
359 cached_bytepos = best_below_byte;
360
361 return best_below;
362 }
363 else
364 {
365 int record = best_above_byte - bytepos > 5000;
366
367 while (best_above_byte > bytepos)
368 {
369 best_above--;
370 BUF_DEC_POS (b, best_above_byte);
371 }
372
373 /* If this position is quite far from the nearest known position,
374 cache the correspondence by creating a marker here.
375 It will last until the next GC.
376 But don't do it if BUF_MARKERS is nil;
377 that is a signal from Fset_buffer_multibyte. */
378 if (record && BUF_MARKERS (b))
379 build_marker (b, best_above, best_above_byte);
380
381 byte_char_debug_check (b, best_above, best_above_byte);
382
383 cached_buffer = b;
384 cached_modiff = BUF_MODIFF (b);
385 cached_charpos = best_above;
386 cached_bytepos = best_above_byte;
387
388 return best_above;
389 }
390 }
391
392 #undef CONSIDER
393 \f
394 /* Operations on markers. */
395
396 DEFUN ("marker-buffer", Fmarker_buffer, Smarker_buffer, 1, 1, 0,
397 doc: /* Return the buffer that MARKER points into, or nil if none.
398 Returns nil if MARKER points into a dead buffer. */)
399 (register Lisp_Object marker)
400 {
401 register Lisp_Object buf;
402 CHECK_MARKER (marker);
403 if (XMARKER (marker)->buffer)
404 {
405 XSETBUFFER (buf, XMARKER (marker)->buffer);
406 /* If the buffer is dead, we're in trouble: the buffer pointer here
407 does not preserve the buffer from being GC'd (it's weak), so
408 markers have to be unlinked from their buffer as soon as the buffer
409 is killed. */
410 eassert (!NILP (BVAR (XBUFFER (buf), name)));
411 return buf;
412 }
413 return Qnil;
414 }
415
416 DEFUN ("marker-position", Fmarker_position, Smarker_position, 1, 1, 0,
417 doc: /* Return the position MARKER points at, as a character number.
418 Returns nil if MARKER points nowhere. */)
419 (Lisp_Object marker)
420 {
421 CHECK_MARKER (marker);
422 if (XMARKER (marker)->buffer)
423 return make_number (XMARKER (marker)->charpos);
424
425 return Qnil;
426 }
427
428 /* Initialize just allocated Lisp_Marker. */
429
430 void
431 init_marker (struct Lisp_Marker *m, struct buffer *b,
432 ptrdiff_t charpos, ptrdiff_t bytepos, int type)
433 {
434 m->buffer = b;
435 m->charpos = charpos;
436 m->bytepos = bytepos;
437 m->insertion_type = type;
438 if (b)
439 {
440 m->next = BUF_MARKERS (b);
441 BUF_MARKERS (b) = m;
442 }
443 else
444 m->next = NULL;
445 }
446
447 /* Change M so it points to B at CHARPOS and BYTEPOS. */
448
449 void
450 attach_marker (struct Lisp_Marker *m, struct buffer *b,
451 ptrdiff_t charpos, ptrdiff_t bytepos)
452 {
453 /* In a single-byte buffer, two positions must be equal.
454 Otherwise, every character is at least one byte. */
455 if (BUF_Z (b) == BUF_Z_BYTE (b))
456 eassert (charpos == bytepos);
457 else
458 eassert (charpos <= bytepos);
459
460 m->charpos = charpos;
461 m->bytepos = bytepos;
462
463 if (m->buffer != b)
464 {
465 unchain_marker (m);
466 m->buffer = b;
467 m->next = BUF_MARKERS (b);
468 BUF_MARKERS (b) = m;
469 }
470 }
471
472 /* If BUFFER is nil, return current buffer pointer. Next, check
473 whether BUFFER is a buffer object and return buffer pointer
474 corresponding to BUFFER if BUFFER is live, or NULL otherwise. */
475
476 static inline struct buffer *
477 live_buffer (Lisp_Object buffer)
478 {
479 struct buffer *b;
480
481 if (NILP (buffer))
482 {
483 b = current_buffer;
484 eassert (!NILP (BVAR (b, name)));
485 }
486 else
487 {
488 CHECK_BUFFER (buffer);
489 b = XBUFFER (buffer);
490 if (NILP (BVAR (b, name)))
491 b = NULL;
492 }
493 return b;
494 }
495
496 /* Internal function to set MARKER in BUFFER at POSITION. Non-zero
497 RESTRICTED means limit the POSITION by the visible part of BUFFER. */
498
499 static inline Lisp_Object
500 set_marker_internal (Lisp_Object marker, Lisp_Object position,
501 Lisp_Object buffer, int restricted)
502 {
503 register struct Lisp_Marker *m;
504 register struct buffer *b = live_buffer (buffer);
505
506 CHECK_MARKER (marker);
507 m = XMARKER (marker);
508
509 /* Set MARKER to point nowhere if BUFFER is dead, or
510 POSITION is nil or a marker points to nowhere. */
511 if (NILP (position)
512 || (MARKERP (position) && !XMARKER (position)->buffer)
513 || !b)
514 unchain_marker (m);
515
516 /* Optimize the special case where we are copying the position of
517 an existing marker, and MARKER is already in the same buffer. */
518 else if (MARKERP (position) && b == XMARKER (position)->buffer
519 && b == m->buffer)
520 {
521 m->bytepos = XMARKER (position)->bytepos;
522 m->charpos = XMARKER (position)->charpos;
523 }
524
525 else
526 {
527 register ptrdiff_t charpos, bytepos;
528
529 CHECK_NUMBER_COERCE_MARKER (position);
530 charpos = clip_to_bounds (restricted ? BUF_BEGV (b) : BUF_BEG (b),
531 XINT (position),
532 restricted ? BUF_ZV (b) : BUF_Z (b));
533 bytepos = buf_charpos_to_bytepos (b, charpos);
534 attach_marker (m, b, charpos, bytepos);
535 }
536 return marker;
537 }
538
539 DEFUN ("set-marker", Fset_marker, Sset_marker, 2, 3, 0,
540 doc: /* Position MARKER before character number POSITION in BUFFER,
541 which defaults to the current buffer. If POSITION is nil,
542 makes marker point nowhere so it no longer slows down
543 editing in any buffer. Returns MARKER. */)
544 (Lisp_Object marker, Lisp_Object position, Lisp_Object buffer)
545 {
546 return set_marker_internal (marker, position, buffer, 0);
547 }
548
549 /* Like the above, but won't let the position be outside the visible part. */
550
551 Lisp_Object
552 set_marker_restricted (Lisp_Object marker, Lisp_Object position,
553 Lisp_Object buffer)
554 {
555 return set_marker_internal (marker, position, buffer, 1);
556 }
557
558 /* Set the position of MARKER, specifying both the
559 character position and the corresponding byte position. */
560
561 Lisp_Object
562 set_marker_both (Lisp_Object marker, Lisp_Object buffer,
563 ptrdiff_t charpos, ptrdiff_t bytepos)
564 {
565 register struct Lisp_Marker *m;
566 register struct buffer *b = live_buffer (buffer);
567
568 CHECK_MARKER (marker);
569 m = XMARKER (marker);
570
571 if (b)
572 attach_marker (m, b, charpos, bytepos);
573 else
574 unchain_marker (m);
575 return marker;
576 }
577
578 /* Like the above, but won't let the position be outside the visible part. */
579
580 Lisp_Object
581 set_marker_restricted_both (Lisp_Object marker, Lisp_Object buffer,
582 ptrdiff_t charpos, ptrdiff_t bytepos)
583 {
584 register struct Lisp_Marker *m;
585 register struct buffer *b = live_buffer (buffer);
586
587 CHECK_MARKER (marker);
588 m = XMARKER (marker);
589
590 if (b)
591 {
592 attach_marker
593 (m, b,
594 clip_to_bounds (BUF_BEGV (b), charpos, BUF_ZV (b)),
595 clip_to_bounds (BUF_BEGV_BYTE (b), bytepos, BUF_ZV_BYTE (b)));
596 }
597 else
598 unchain_marker (m);
599 return marker;
600 }
601
602 /* Remove MARKER from the chain of whatever buffer it is in,
603 leaving it points to nowhere. This is called during garbage
604 collection, so we must be careful to ignore and preserve
605 mark bits, including those in chain fields of markers. */
606
607 void
608 unchain_marker (register struct Lisp_Marker *marker)
609 {
610 register struct buffer *b = marker->buffer;
611
612 if (b)
613 {
614 register struct Lisp_Marker *tail, **prev;
615
616 /* No dead buffers here. */
617 eassert (!NILP (BVAR (b, name)));
618
619 marker->buffer = NULL;
620 prev = &BUF_MARKERS (b);
621
622 for (tail = BUF_MARKERS (b); tail; prev = &tail->next, tail = *prev)
623 if (marker == tail)
624 {
625 if (*prev == BUF_MARKERS (b))
626 {
627 /* Deleting first marker from the buffer's chain. Crash
628 if new first marker in chain does not say it belongs
629 to the same buffer, or at least that they have the same
630 base buffer. */
631 if (tail->next && b->text != tail->next->buffer->text)
632 abort ();
633 }
634 *prev = tail->next;
635 /* We have removed the marker from the chain;
636 no need to scan the rest of the chain. */
637 break;
638 }
639
640 /* Error if marker was not in it's chain. */
641 eassert (tail != NULL);
642 }
643 }
644
645 /* Return the char position of marker MARKER, as a C integer. */
646
647 ptrdiff_t
648 marker_position (Lisp_Object marker)
649 {
650 register struct Lisp_Marker *m = XMARKER (marker);
651 register struct buffer *buf = m->buffer;
652
653 if (!buf)
654 error ("Marker does not point anywhere");
655
656 eassert (BUF_BEG (buf) <= m->charpos && m->charpos <= BUF_Z (buf));
657
658 return m->charpos;
659 }
660
661 /* Return the byte position of marker MARKER, as a C integer. */
662
663 ptrdiff_t
664 marker_byte_position (Lisp_Object marker)
665 {
666 register struct Lisp_Marker *m = XMARKER (marker);
667 register struct buffer *buf = m->buffer;
668
669 if (!buf)
670 error ("Marker does not point anywhere");
671
672 eassert (BUF_BEG_BYTE (buf) <= m->bytepos && m->bytepos <= BUF_Z_BYTE (buf));
673
674 return m->bytepos;
675 }
676 \f
677 DEFUN ("copy-marker", Fcopy_marker, Scopy_marker, 0, 2, 0,
678 doc: /* Return a new marker pointing at the same place as MARKER.
679 If argument is a number, makes a new marker pointing
680 at that position in the current buffer.
681 If MARKER is not specified, the new marker does not point anywhere.
682 The optional argument TYPE specifies the insertion type of the new marker;
683 see `marker-insertion-type'. */)
684 (register Lisp_Object marker, Lisp_Object type)
685 {
686 register Lisp_Object new;
687
688 if (!NILP (marker))
689 CHECK_TYPE (INTEGERP (marker) || MARKERP (marker), Qinteger_or_marker_p, marker);
690
691 new = Fmake_marker ();
692 Fset_marker (new, marker,
693 (MARKERP (marker) ? Fmarker_buffer (marker) : Qnil));
694 XMARKER (new)->insertion_type = !NILP (type);
695 return new;
696 }
697
698 DEFUN ("marker-insertion-type", Fmarker_insertion_type,
699 Smarker_insertion_type, 1, 1, 0,
700 doc: /* Return insertion type of MARKER: t if it stays after inserted text.
701 The value nil means the marker stays before text inserted there. */)
702 (register Lisp_Object marker)
703 {
704 CHECK_MARKER (marker);
705 return XMARKER (marker)->insertion_type ? Qt : Qnil;
706 }
707
708 DEFUN ("set-marker-insertion-type", Fset_marker_insertion_type,
709 Sset_marker_insertion_type, 2, 2, 0,
710 doc: /* Set the insertion-type of MARKER to TYPE.
711 If TYPE is t, it means the marker advances when you insert text at it.
712 If TYPE is nil, it means the marker stays behind when you insert text at it. */)
713 (Lisp_Object marker, Lisp_Object type)
714 {
715 CHECK_MARKER (marker);
716
717 XMARKER (marker)->insertion_type = ! NILP (type);
718 return type;
719 }
720
721 DEFUN ("buffer-has-markers-at", Fbuffer_has_markers_at, Sbuffer_has_markers_at,
722 1, 1, 0,
723 doc: /* Return t if there are markers pointing at POSITION in the current buffer. */)
724 (Lisp_Object position)
725 {
726 register struct Lisp_Marker *tail;
727 register ptrdiff_t charpos;
728
729 charpos = clip_to_bounds (BEG, XINT (position), Z);
730
731 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next)
732 if (tail->charpos == charpos)
733 return Qt;
734
735 return Qnil;
736 }
737
738 #ifdef MARKER_DEBUG
739
740 /* For debugging -- count the markers in buffer BUF. */
741
742 int
743 count_markers (struct buffer *buf)
744 {
745 int total = 0;
746 struct Lisp_Marker *tail;
747
748 for (tail = BUF_MARKERS (buf); tail; tail = tail->next)
749 total++;
750
751 return total;
752 }
753
754 /* For debugging -- recompute the bytepos corresponding
755 to CHARPOS in the simplest, most reliable way. */
756
757 ptrdiff_t
758 verify_bytepos (ptrdiff_t charpos)
759 {
760 ptrdiff_t below = 1;
761 ptrdiff_t below_byte = 1;
762
763 while (below != charpos)
764 {
765 below++;
766 BUF_INC_POS (current_buffer, below_byte);
767 }
768
769 return below_byte;
770 }
771
772 #endif /* MARKER_DEBUG */
773 \f
774 void
775 syms_of_marker (void)
776 {
777 defsubr (&Smarker_position);
778 defsubr (&Smarker_buffer);
779 defsubr (&Sset_marker);
780 defsubr (&Scopy_marker);
781 defsubr (&Smarker_insertion_type);
782 defsubr (&Sset_marker_insertion_type);
783 defsubr (&Sbuffer_has_markers_at);
784 }