From: Glenn Morris Date: Wed, 9 Mar 2011 08:57:40 +0000 (-0800) Subject: Fix previous gdb-mi fix... X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~631 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=791cd3860e38e633cf301aced257a1eac89f2b1f;p=emacs.git Fix previous gdb-mi fix... --- diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el index 1a7f1841fb3..ab315f9eefd 100644 --- a/lisp/progmodes/gdb-mi.el +++ b/lisp/progmodes/gdb-mi.el @@ -672,7 +672,7 @@ detailed description of this mode. ((string-equal (match-string 1) "size") (setq hsize (match-string 2)))))))) (and (stringp hsize) - (integerp (string-to-number hsize)) + (integerp (setq hsize (string-to-number hsize))) (> hsize 0) (set (make-local-variable 'comint-input-ring-size) hsize)) (if (stringp hfile)