emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Nick Roberts
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/gdb-ui.el
Date: Thu, 23 Jun 2005 21:32:25 -0400

Index: emacs/lisp/progmodes/gdb-ui.el
diff -c emacs/lisp/progmodes/gdb-ui.el:1.80 emacs/lisp/progmodes/gdb-ui.el:1.81
*** emacs/lisp/progmodes/gdb-ui.el:1.80 Wed Jun 22 08:45:01 2005
--- emacs/lisp/progmodes/gdb-ui.el      Fri Jun 24 01:32:24 2005
***************
*** 432,438 ****
            (setq gdb-var-changed t)))
        (if (re-search-forward "Undefined command" nil t)
          (message-box "Watching expressions requires gdb 6.0 onwards")
!       (message "No symbol %s in current context." expr)))))
  
  (defun gdb-var-evaluate-expression-handler (varnum changed)
    (with-current-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer)
--- 432,438 ----
            (setq gdb-var-changed t)))
        (if (re-search-forward "Undefined command" nil t)
          (message-box "Watching expressions requires gdb 6.0 onwards")
!       (message "No symbol \"%s\" in current context." expr)))))
  
  (defun gdb-var-evaluate-expression-handler (varnum changed)
    (with-current-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer)
***************
*** 776,781 ****
--- 776,783 ----
  (defun gdb-send (proc string)
    "A comint send filter for gdb.
  This filter may simply queue input for a later time."
+   (with-current-buffer gud-comint-buffer
+     (remove-text-properties (point-min) (point-max) '(face)))
    (let ((item (concat string "\n")))
      (if gud-running
        (progn




reply via email to

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