Skip to content

Commit

Permalink
Small changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Dec 8, 2009
1 parent e968d75 commit 6ef3aac
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
12 changes: 9 additions & 3 deletions fringe.el
@@ -1,6 +1,12 @@
;; Bitmap for breakpoint in fringe
;; (define-fringe-bitmap 'breakpoint
;; "\x3c\x7e\xff\xff\xff\xff\x7e\x3c")

(and (display-images-p)
;; Bitmap for breakpoint in fringe
(define-fringe-bitmap 'breakpoint
"\x3c\x7e\xff\xff\xff\xff\x7e\x3c")
;; Bitmap for gud-overlay-arrow in fringe
(define-fringe-bitmap 'hollow-right-triangle
"\xe0\x90\x88\x84\x84\x88\x90\xe0"))

;; Bitmap for hollow overlay-arrow in fringe
;; (define-fringe-bitmap 'hollow-right-triangle
Expand Down Expand Up @@ -67,7 +73,7 @@ position.")
(arrow-face (intern (concat "dbgr-overlay-arrow" (car pair)))))
(make-local-variable arrow-symbol)
(put arrow-symbol 'overlay-arrow-string (cdr pair))
(if (window-system)
(if (display-images-p)
(progn
(define-fringe-bitmap arrow-bitmap "\xc0\xf0\xf8\xfc\xfc\xf8\xf0\xc0")
(put arrow-symbol 'overlay-arrow-bitmap arrow-bitmap)
Expand Down
3 changes: 2 additions & 1 deletion python/pydbgr.el
Expand Up @@ -8,7 +8,8 @@
(defgroup pydbgr nil
"The Python pydbgr debugger"
:group 'processes
:group 'tools)
:group 'tools
:version "23.1")

;; -------------------------------------------------------------------
;; User definable variables
Expand Down
3 changes: 2 additions & 1 deletion ruby/rbdbgr.el
Expand Up @@ -8,7 +8,8 @@
(defgroup rbdbgr nil
"The Ruby 1.9 debugger"
:group 'processes
:group 'tools)
:group 'tools
:version "23.1")

;; -------------------------------------------------------------------
;; User definable variables
Expand Down

0 comments on commit 6ef3aac

Please sign in to comment.