emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/gdb-ui.el


From: Nick Roberts
Subject: [Emacs-diffs] Changes to emacs/lisp/gdb-ui.el
Date: Sat, 03 May 2003 18:20:58 -0400

Index: emacs/lisp/gdb-ui.el
diff -c emacs/lisp/gdb-ui.el:1.26 emacs/lisp/gdb-ui.el:1.27
*** emacs/lisp/gdb-ui.el:1.26   Mon Mar 31 16:23:45 2003
--- emacs/lisp/gdb-ui.el        Sat May  3 18:20:57 2003
***************
*** 1262,1269 ****
    gdb-info-breakpoints-custom)
  
  (defvar gdb-cdir nil "Compilation directory.")
! (defvar breakpoint-enabled-icon)
! (defvar breakpoint-disabled-icon)
  
  ;;-put breakpoint icons in relevant margins (even those set in the GUD buffer)
  (defun gdb-info-breakpoints-custom ()
--- 1262,1333 ----
    gdb-info-breakpoints-custom)
  
  (defvar gdb-cdir nil "Compilation directory.")
! 
! (defconst breakpoint-xpm-data "/* XPM */
! static char *magick[] = {
! /* columns rows colors chars-per-pixel */
! \"12 12 2 1\",
! \"  c red\",
! \"+ c None\",
! /* pixels */
! \"++++++++++++\",
! \"+++      +++\",
! \"++        ++\",
! \"+          +\",
! \"+          +\",
! \"+          +\",
! \"+          +\",
! \"+          +\",
! \"+          +\",
! \"++        ++\",
! \"+++      +++\",
! \"++++++++++++\"
! };"
!   "XPM data used for breakpoint icon.")
! 
! (defconst breakpoint-enabled-pbm-data
! "P1
! 12 12\",
! 0 0 0 0 0 0 0 0 0 0 0 0
! 0 0 0 1 1 1 1 1 1 0 0 0
! 0 0 1 1 1 1 1 1 1 1 0 0
! 0 1 1 1 1 1 1 1 1 1 1 0
! 0 1 1 1 1 1 1 1 1 1 1 0
! 0 1 1 1 1 1 1 1 1 1 1 0
! 0 1 1 1 1 1 1 1 1 1 1 0
! 0 1 1 1 1 1 1 1 1 1 1 0
! 0 1 1 1 1 1 1 1 1 1 1 0
! 0 0 1 1 1 1 1 1 1 1 0 0
! 0 0 0 1 1 1 1 1 1 0 0 0
! 0 0 0 0 0 0 0 0 0 0 0 0"
!   "PBM data used for enabled breakpoint icon.")
! 
! (defconst breakpoint-disabled-pbm-data
! "P1
! 12 12\",
! 0 0 0 0 0 0 0 0 0 0 0 0
! 0 0 0 1 0 1 0 1 0 0 0 0
! 0 0 1 0 1 0 1 0 1 0 0 0
! 0 1 0 1 0 1 0 1 0 1 0 0
! 0 0 1 0 1 0 1 0 1 0 1 0
! 0 1 0 1 0 1 0 1 0 1 0 0
! 0 0 1 0 1 0 1 0 1 0 1 0
! 0 1 0 1 0 1 0 1 0 1 0 0
! 0 0 1 0 1 0 1 0 1 0 1 0
! 0 0 0 1 0 1 0 1 0 1 0 0
! 0 0 0 0 1 0 1 0 1 0 0 0
! 0 0 0 0 0 0 0 0 0 0 0 0"
!   "PBM data used for disabled breakpoint icon.")
! 
! (defvar breakpoint-enabled-icon
!   (find-image `((:type xpm :data ,breakpoint-xpm-data)
!               (:type pbm :data ,breakpoint-enabled-pbm-data)))
!   "Icon for enabled breakpoint in display margin")
! 
! (defvar breakpoint-disabled-icon
!   (find-image `((:type xpm :data ,breakpoint-xpm-data :conversion disabled)
!               (:type pbm :data ,breakpoint-disabled-pbm-data)))
!   "Icon for disabled breakpoint in display margin")
  
  ;;-put breakpoint icons in relevant margins (even those set in the GUD buffer)
  (defun gdb-info-breakpoints-custom ()
***************
*** 1909,1944 ****
         (gud-find-file (car gud-last-last-frame))
         (gud-find-file gdb-main-file)))
      (other-window 1)))
- 
- (defconst breakpoint-xpm-data "/* XPM */
- static char *magick[] = {
- /* columns rows colors chars-per-pixel */
- \"12 12 2 1\",
- \"  c red\",
- \"+ c None\",
- /* pixels */
- \"+++++  +++++\",
- \"+++      +++\",
- \"++        ++\",
- \"+          +\",
- \"+          +\",
- \"            \",
- \"            \",
- \"+          +\",
- \"+          +\",
- \"++        ++\",
- \"+++      +++\",
- \"+++++  +++++\"
- };"
-   "XPM file used for breakpoint icon.")
- 
- (defvar breakpoint-enabled-icon
-   (find-image `((:type xpm :data ,breakpoint-xpm-data)))
-   "Icon for enabled breakpoint in display margin")
- (defvar breakpoint-disabled-icon
-   (find-image `((:type xpm :data ,breakpoint-xpm-data
-                      :conversion laplace)))
-   "Icon for disabled breakpoint in display margin")
  
  (defun gdb-reset ()
    "Exit a debugging session cleanly by killing the gdb buffers and resetting
--- 1973,1978 ----




reply via email to

[Prev in Thread] Current Thread [Next in Thread]