diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-04-09 19:40:19 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-04-09 19:40:19 +0000 |
commit | 34e4751f89aaa88a682924a755656ba40c017c20 (patch) | |
tree | 359abaabe4041495c89b2ca36cf986987933cd67 /src/marker.c | |
parent | 67ce527d26eb9b2eab370a495b37867ce40ef50a (diff) | |
download | emacs-34e4751f89aaa88a682924a755656ba40c017c20.tar.gz |
(Fbuffer_has_markers_at): Fix termination condition.
Diffstat (limited to 'src/marker.c')
-rw-r--r-- | src/marker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/marker.c b/src/marker.c index dd53628462e..c1b4e0418a6 100644 --- a/src/marker.c +++ b/src/marker.c @@ -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; |