mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-24 19:03:29 +00:00
(Fbuffer_has_markers_at): Fix termination condition.
This commit is contained in:
parent
67ce527d26
commit
34e4751f89
@ -877,7 +877,7 @@ DEFUN ("buffer-has-markers-at", Fbuffer_has_markers_at, Sbuffer_has_markers_at,
|
||||
charno = Z;
|
||||
|
||||
for (tail = BUF_MARKERS (current_buffer);
|
||||
XSYMBOL (tail) != XSYMBOL (Qnil);
|
||||
!NILP (tail);
|
||||
tail = XMARKER (tail)->chain)
|
||||
if (XMARKER (tail)->charpos == charno)
|
||||
return Qt;
|
||||
|
Loading…
Reference in New Issue
Block a user