From 78999117cd9ce7db469ccab4d36003c1263885ba Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 7 Sep 2001 11:19:02 +0000 Subject: [PATCH] (init_from_display_pos): Don't compare the result of calling index with NULL. --- lisp/ChangeLog | 2 +- src/xdisp.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3a82065ceb5..9546438a434 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1296,7 +1296,7 @@ (which-function-mode): Remove references to which-func-mode-global. * calendar/cal-islam.el (calendar-goto-islamic-date): - Add autoload cookie. + Add autoload cookie. * play/fortune.el: Add types to defcustoms. diff --git a/src/xdisp.c b/src/xdisp.c index a683d8b0968..4f906483c93 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -1840,7 +1840,7 @@ init_from_display_pos (it, w, pos) init_iterator (it, w, charpos, bytepos, NULL, DEFAULT_FACE_ID); for (i = 0; i < it->n_overlay_strings; ++i) - if (index (XSTRING (it->overlay_strings[i])->data, '\n') != NULL) + if (index (XSTRING (it->overlay_strings[i])->data, '\n')) { overlay_strings_with_newlines = 1; break; -- 2.39.5