diff options
author | Karoly Lorentey <lorentey@elte.hu> | 2005-03-23 12:53:42 +0000 |
---|---|---|
committer | Karoly Lorentey <lorentey@elte.hu> | 2005-03-23 12:53:42 +0000 |
commit | dc2be2faa93c237c5645d83e7dbba9578232ab01 (patch) | |
tree | 67dd8ba5e1ca2c482e732ab705e9998de0a08867 /lisp/progmodes/gdb-ui.el | |
parent | 76acbdc50490034f233bc78d14a7cd5717d9432e (diff) | |
download | emacs-dc2be2faa93c237c5645d83e7dbba9578232ab01.tar.gz emacs-dc2be2faa93c237c5645d83e7dbba9578232ab01.tar.bz2 emacs-dc2be2faa93c237c5645d83e7dbba9578232ab01.zip |
Fix some superflous deviations from CVS, plus apply some cosmetics.
* etc/TODO: Fix deviation from CVS.
* lisp/emulation/viper-util.el: Ditto.
* lisp/international/mule-cmds.el: Ditto.
* lisp/progmodes/gdb-ui.el: Ditto.
* src/termchar.h: Ditto.
* src/xfns.c (Fx_create_frame): Ditto.
* lisp/term/rxvt.el: Don't embed `(require 'server)' in eval-when-compile.
* lisp/term/xterm.el: Ditto.
* src/xterm.c (x_delete_display): Cosmetic change.
* src/xterm.c (x_create_frame_display): Cosmetic change.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-317
Diffstat (limited to 'lisp/progmodes/gdb-ui.el')
-rw-r--r-- | lisp/progmodes/gdb-ui.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index c71f067ca2c..2a714e84b9a 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el @@ -1156,9 +1156,9 @@ static char *magick[] = { "Icon for disabled breakpoint in display margin.") ;; Bitmap for breakpoint in fringe -(when (fboundp 'define-fringe-bitmap) - (define-fringe-bitmap 'breakpoint - "\x3c\x7e\xff\xff\xff\xff\x7e\x3c")) +(and (display-images-p) + (define-fringe-bitmap 'breakpoint + "\x3c\x7e\xff\xff\xff\xff\x7e\x3c")) (defface breakpoint-enabled '((((type tty)) |