diff options
| author | Kim F. Storm | 2004-11-22 14:26:23 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-11-22 14:26:23 +0000 |
| commit | a208b89cceaf0f27ef00414a94d2be49f0affd77 (patch) | |
| tree | 06815441249bf8e17c798154e996c215c04f62d4 /src/fringe.c | |
| parent | 0960a5828457835451485b5b637ebfddf5f099e9 (diff) | |
| download | emacs-a208b89cceaf0f27ef00414a94d2be49f0affd77.tar.gz emacs-a208b89cceaf0f27ef00414a94d2be49f0affd77.zip | |
(update_window_fringes): Provide sensible fall-back
value for non-nil indicate-buffer-boundaries setting.
Diffstat (limited to 'src/fringe.c')
| -rw-r--r-- | src/fringe.c | 3 |
1 files changed, 2 insertions, 1 deletions
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) | |||
| 809 | arrow_bot = XCDR (pos); | 809 | arrow_bot = XCDR (pos); |
| 810 | } | 810 | } |
| 811 | else | 811 | else |
| 812 | ind = Qnil; | 812 | /* Anything else means boundary on left and no arrows. */ |
| 813 | boundary_top = boundary_bot = Qleft; | ||
| 813 | } | 814 | } |
| 814 | 815 | ||
| 815 | if (!NILP (ind)) | 816 | if (!NILP (ind)) |