diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-09-12 20:58:57 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-09-12 20:58:57 +0000 |
commit | d6efd584a04e74f6ee032d1d9ddf31a99caf3cba (patch) | |
tree | 77f5ba9fd4a795003e657ce893266e710398f3db /lisp/gud.el | |
parent | c7387861c71fbc20254440b6594cf37c14b60b2c (diff) | |
download | emacs-d6efd584a04e74f6ee032d1d9ddf31a99caf3cba.tar.gz |
(perldb): Fix paren error in call to read-from-minibuffer.
Diffstat (limited to 'lisp/gud.el')
-rw-r--r-- | lisp/gud.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gud.el b/lisp/gud.el index 12a96cfee1c..0509ae60ff2 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -1070,8 +1070,8 @@ and source-file directory for your debugger." (concat perldb-command-name " " (or (buffer-file-name) - "-e 0")) - " ") + "-e 0") + " ")) nil nil '(gud-perldb-history . 1)))) |