From a208b89cceaf0f27ef00414a94d2be49f0affd77 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Mon, 22 Nov 2004 14:26:23 +0000 Subject: [PATCH] (update_window_fringes): Provide sensible fall-back value for non-nil indicate-buffer-boundaries setting. --- src/fringe.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fringe.c b/src/fringe.c index 6ebbb334bbb..48974805c3c 100644 --- a/src/fringe.c +++ b/src/fringe.c @@ -809,7 +809,8 @@ update_window_fringes (w, force_p) arrow_bot = XCDR (pos); } else - ind = Qnil; + /* Anything else means boundary on left and no arrows. */ + boundary_top = boundary_bot = Qleft; } if (!NILP (ind)) -- 2.39.2