# HG changeset patch # User Kim F. Storm # Date 1101133583 0 # Node ID 99a14d81043f23eaeb88d8f4c8c30adb1e8c30f4 # Parent ad1aa033805318778a439514e6e0f914d94cf216 (update_window_fringes): Provide sensible fall-back value for non-nil indicate-buffer-boundaries setting. diff -r ad1aa0338053 -r 99a14d81043f src/fringe.c --- a/src/fringe.c Mon Nov 22 14:20:25 2004 +0000 +++ b/src/fringe.c Mon Nov 22 14:26:23 2004 +0000 @@ -809,7 +809,8 @@ arrow_bot = XCDR (pos); } else - ind = Qnil; + /* Anything else means boundary on left and no arrows. */ + boundary_top = boundary_bot = Qleft; } if (!NILP (ind))