From 3c3202f0ceccc6be101c797d7e04f78f58213686 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Fri, 15 Oct 2004 23:38:17 +0000 Subject: [PATCH] (fringe-bitmaps): Only initialize when defined. --- lisp/fringe.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/fringe.el b/lisp/fringe.el index 07c93d39f40..076ab1c176f 100644 --- a/lisp/fringe.el +++ b/lisp/fringe.el @@ -43,7 +43,8 @@ (defvar fringe-bitmaps) -(unless (get 'left-truncation 'fringe) +(unless (or (not (boundp 'fringe-bitmaps)) + (get 'left-truncation 'fringe)) (let ((bitmaps '(left-truncation right-truncation up-arrow down-arrow continued-line continuation-line -- 2.39.5