diff options
-rw-r--r-- | lisp/gud.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el index 90810c6c6ac..adfc14fdbb4 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -881,7 +881,7 @@ directories if your program contains sources from more than one directory." (defvar gud-perldb-history nil) (defun gud-perldb-massage-args (file args) - (cons "-d" (cons "-emacs" args))) + (cons "-d" (cons (car args) (cons "-emacs" (cdr args))))) ;; There's no guarantee that Emacs will hand the filter the entire ;; marker at once; it could be broken up across several strings. We |