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


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to