Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1289e5d3
Commit
1289e5d3
authored
Mar 09, 2011
by
Glenn Morris
Browse files
Fix previous gdb-mi change.
parent
13522cb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/progmodes/gdb-mi.el
lisp/progmodes/gdb-mi.el
+4
-2
No files found.
lisp/progmodes/gdb-mi.el
View file @
1289e5d3
...
...
@@ -671,8 +671,10 @@ detailed description of this mode.
(file-name-directory file))))
((string-equal (match-string 1) "size")
(setq hsize (match-string 2))))))))
(
if
(
integerp
hsize
)
(
set
(
make-local-variable
'comint-input-ring-size
)
hsize
))
(and (stringp hsize)
(integerp (string-to-number hsize))
(> hsize 0)
(set (make-local-variable 'comint-input-ring-size) hsize))
(if (stringp hfile)
(set (make-local-variable 'comint-input-ring-file-name) hfile))
(comint-read-input-ring t)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment