diff options
author | Kim F. Storm <storm@cua.dk> | 2004-10-15 23:38:17 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-10-15 23:38:17 +0000 |
commit | 3c3202f0ceccc6be101c797d7e04f78f58213686 (patch) | |
tree | 825512725c2eca824a8b45a78e1bcde210109899 /lisp/fringe.el | |
parent | d12757b78761972a3d777096e7b3071bc9cfd5e5 (diff) | |
download | emacs-3c3202f0ceccc6be101c797d7e04f78f58213686.tar.gz |
(fringe-bitmaps): Only initialize when defined.
Diffstat (limited to 'lisp/fringe.el')
-rw-r--r-- | lisp/fringe.el | 3 |
1 files changed, 2 insertions, 1 deletions
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 |