(Fbuffer_has_markers_at): Fix termination condition.
This commit is contained in:
parent
67ce527d26
commit
34e4751f89
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue