aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 b63f82b7222..69eb29c5eb1 100644
--- a/lisp/progmodes/gdb-mi.el
+++ b/lisp/progmodes/gdb-mi.el
@@ -1849,7 +1849,7 @@ commands to be prefixed by \"-interpreter-exec console\".")
1849 ;; Python and Guile commands that have an argument don't enter the 1849 ;; Python and Guile commands that have an argument don't enter the
1850 ;; recursive reading loop. 1850 ;; recursive reading loop.
1851 (let* ((control-command-p (string-match gdb-control-commands-regexp string)) 1851 (let* ((control-command-p (string-match gdb-control-commands-regexp string))
1852 (command-arg (match-string 3 string)) 1852 (command-arg (and control-command-p (match-string 3 string)))
1853 (python-or-guile-p (string-match gdb-python-guile-commands-regexp 1853 (python-or-guile-p (string-match gdb-python-guile-commands-regexp
1854 string))) 1854 string)))
1855 (if (and control-command-p 1855 (if (and control-command-p