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
5dd9db3b
Commit
5dd9db3b
authored
Sep 28, 1996
by
Richard M. Stallman
Browse files
(perldb): Supply visited file name, or -e 0, as default args.
parent
bcc0d457
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
lisp/gud.el
lisp/gud.el
+5
-1
No files found.
lisp/gud.el
View file @
5dd9db3b
...
...
@@ -1007,7 +1007,11 @@ and source-file directory for your debugger."
(
list
(
read-from-minibuffer
"Run perldb (like this): "
(
if
(
consp
gud-perldb-history
)
(
car
gud-perldb-history
)
(
concat
perldb-command-name
" "
))
(
concat
perldb-command-name
" "
(
or
(
buffer-file-name
)
"-e 0"
))
" "
)
nil
nil
'
(
gud-perldb-history
.
1
))))
...
...
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