From 791cd3860e38e633cf301aced257a1eac89f2b1f Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 9 Mar 2011 00:57:40 -0800 Subject: [PATCH] Fix previous gdb-mi fix... --- lisp/progmodes/gdb-mi.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5