aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-03-09 00:57:40 -0800
committerGlenn Morris2011-03-09 00:57:40 -0800
commit791cd3860e38e633cf301aced257a1eac89f2b1f (patch)
tree49d39e8551f13f5f2defa4e2c43a155eab233d48
parent1289e5d3f56a5c5e2fe5500adf8671fd45b6a27f (diff)
downloademacs-791cd3860e38e633cf301aced257a1eac89f2b1f.tar.gz
emacs-791cd3860e38e633cf301aced257a1eac89f2b1f.zip
Fix previous gdb-mi fix...
-rw-r--r--lisp/progmodes/gdb-mi.el2
1 files changed, 1 insertions, 1 deletions
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.
672 ((string-equal (match-string 1) "size") 672 ((string-equal (match-string 1) "size")
673 (setq hsize (match-string 2)))))))) 673 (setq hsize (match-string 2))))))))
674 (and (stringp hsize) 674 (and (stringp hsize)
675 (integerp (string-to-number hsize)) 675 (integerp (setq hsize (string-to-number hsize)))
676 (> hsize 0) 676 (> hsize 0)
677 (set (make-local-variable 'comint-input-ring-size) hsize)) 677 (set (make-local-variable 'comint-input-ring-size) hsize))
678 (if (stringp hfile) 678 (if (stringp hfile)