aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaroly Lorentey2004-11-06 17:57:15 +0000
committerKaroly Lorentey2004-11-06 17:57:15 +0000
commit050ddd28da8d0bb44f06575e93c6bd7feb758829 (patch)
tree54244cb626a1e459d4643e3058a7576757503271
parent65ea79492334e2ef7b5b4e0d23b6f68ba2f4d0bb (diff)
downloademacs-050ddd28da8d0bb44f06575e93c6bd7feb758829.tar.gz
emacs-050ddd28da8d0bb44f06575e93c6bd7feb758829.zip
Fix bootstrap problem with --without-x.
* lisp/progmodes/gdb-ui.el: Protect define-fringe-bitmap with fboundp. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-265
-rw-r--r--lisp/progmodes/gdb-ui.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el
index 90c0a50c7dc..74368661d3e 100644
--- a/lisp/progmodes/gdb-ui.el
+++ b/lisp/progmodes/gdb-ui.el
@@ -1077,8 +1077,9 @@ static char *magick[] = {
1077 "Icon for disabled breakpoint in display margin.") 1077 "Icon for disabled breakpoint in display margin.")
1078 1078
1079;; Bitmap for breakpoint in fringe 1079;; Bitmap for breakpoint in fringe
1080(define-fringe-bitmap 'breakpoint 1080(when (fboundp 'define-fringe-bitmap)
1081 "\x3c\x7e\xff\xff\xff\xff\x7e\x3c") 1081 (define-fringe-bitmap 'breakpoint
1082 "\x3c\x7e\xff\xff\xff\xff\x7e\x3c"))
1082 1083
1083(defface breakpoint-enabled-bitmap-face 1084(defface breakpoint-enabled-bitmap-face
1084 '((t 1085 '((t