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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
2e78e6a7
Commit
2e78e6a7
authored
May 14, 2013
by
Jean-Philippe Gravel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* progmodes/gdb-mi.el (gdb-running, gdb-starting): Remove
signals for which replies are never received.
parent
53267cca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/progmodes/gdb-mi.el
lisp/progmodes/gdb-mi.el
+2
-7
No files found.
lisp/ChangeLog
View file @
2e78e6a7
2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
* progmodes/gdb-mi.el (gdb-running, gdb-starting): Remove
signals for which replies are never received.
2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
* progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
...
...
lisp/progmodes/gdb-mi.el
View file @
2e78e6a7
...
...
@@ -2376,8 +2376,7 @@ Sets `gdb-thread-number' to new id."
(
propertize
gdb-inferior-status
'face
font-lock-type-face
))
(
when
(
not
gdb-non-stop
)
(
setq
gud-running
t
))
(
setq
gdb-active-process
t
)
(
gdb-emit-signal
gdb-buf-publisher
'update-threads
))
(
setq
gdb-active-process
t
))
(
defun
gdb-starting
(
_output-field
_result
)
;; CLI commands don't emit ^running at the moment so use gdb-running too.
...
...
@@ -2385,11 +2384,7 @@ Sets `gdb-thread-number' to new id."
(
gdb-force-mode-line-update
(
propertize
gdb-inferior-status
'face
font-lock-type-face
))
(
setq
gdb-active-process
t
)
(
setq
gud-running
t
)
;; GDB doesn't seem to respond to -thread-info before first stop or
;; thread exit (even in non-stop mode), so this is useless.
;; Behavior may change in the future.
(
gdb-emit-signal
gdb-buf-publisher
'update-threads
))
(
setq
gud-running
t
))
;; -break-insert -t didn't give a reason before gdb 6.9
...
...
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