diff options
Diffstat (limited to 'src')
| -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, | |||
| 877 | charno = Z; | 877 | charno = Z; |
| 878 | 878 | ||
| 879 | for (tail = BUF_MARKERS (current_buffer); | 879 | for (tail = BUF_MARKERS (current_buffer); |
| 880 | XSYMBOL (tail) != XSYMBOL (Qnil); | 880 | !NILP (tail); |
| 881 | tail = XMARKER (tail)->chain) | 881 | tail = XMARKER (tail)->chain) |
| 882 | if (XMARKER (tail)->charpos == charno) | 882 | if (XMARKER (tail)->charpos == charno) |
| 883 | return Qt; | 883 | return Qt; |