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
2e8c13b4
Commit
2e8c13b4
authored
Mar 09, 2005
by
Nick Roberts
Browse files
(gdb-var-create-handler, gdb-get-location):
Use message-box.
parent
a69c6141
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
lisp/progmodes/gdb-ui.el
lisp/progmodes/gdb-ui.el
+3
-8
No files found.
lisp/progmodes/gdb-ui.el
View file @
2e8c13b4
...
...
@@ -351,7 +351,7 @@ detailed description of this mode.
,
(
nth
1
var
)
nil
))))
(
setq
gdb-var-changed
t
)))
(
if
(
re-search-forward
"Undefined command"
nil
t
)
(
message
"Watching expressions requires gdb 6.0 onwards"
)
(
message
-box
"Watching expressions requires gdb 6.0 onwards"
)
(
message
"No symbol %s in current context."
expr
)))))
(
defun
gdb-var-evaluate-expression-handler
(
varnum
changed
)
...
...
@@ -2119,13 +2119,8 @@ Put in buffer and place breakpoint icon."
(
push
(
cons
bptno
(
match-string
0
))
gdb-location-list
))
(
gdb-resync
)
(
push
(
cons
bptno
"File not found"
)
gdb-location-list
)
(
if
(
eq
window-system
'x
)
(
x-popup-dialog
t
'
(
"
Cannot
find
source
file
for
breakpoint
location.\n
\
Add
directory
to
search
path
for
source
files
using
the
GDB
command,
dir.
"
("
Ok
" . nil)))
(message "
Cannot
find
source
file
for
breakpoint
location.\n
\
Add
directory
to
search
path
for
source
files
using
the
GDB
command,
dir.
"))
(
message-box
"
Cannot
find
source
file
for
breakpoint
location.\n
\
Add
directory
to
search
path
for
source
files
using
the
GDB
command,
dir.
")
(throw 'file-not-found nil))
(with-current-buffer
(find-file-noselect (match-string 0))
...
...
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