Mercurial > emacs
changeset 26351:861868d5730a
(gud-perldb-massage-args): Handle the case "perl -e 0"
the default when invoking perldb in a non-Perl buffer) and other
cases involving -e or --.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 04 Nov 1999 20:48:59 +0000 |
parents | 3b7a732fbde2 |
children | a83f38d2e8ed |
files | lisp/gud.el |
diffstat | 1 files changed, 35 insertions(+), 14 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/gud.el Thu Nov 04 20:43:05 1999 +0000 +++ b/lisp/gud.el Thu Nov 04 20:48:59 1999 +0000 @@ -1184,27 +1184,48 @@ ;;; History of argument lists passed to perldb. (defvar gud-perldb-history nil) +;; Convert a command line as would be typed normally to run a script +;; into one that invokes an Emacs-enabled debugging session. +;; "-d" in inserted as the first switch, and "-emacs" is inserted where +;; it will be $ARGV[0] (see perl5db.pl). (defun gud-perldb-massage-args (file args) - (let (new-args) + (let* ((new-args '("-d")) + (seen-e nil) + (shift (lambda () + (setq new-args (cons (car args) new-args)) + (setq args (cdr args))))) + ;; Pass all switches and -e scripts through. (while (and args - (string-match "^-[^-]" (car args))) - (setq new-args (cons (car args) new-args)) - (setq args (cdr args))) + (string-match "^-" (car args)) + (not (equal "-" (car args))) + (not (equal "--" (car args)))) + (when (equal "-e" (car args)) + ;; -e goes with the next arg, so shift one extra. + (or (funcall shift) + ;; -e as the last arg is an error in Perl. + (error "No code specified for -e.")) + (setq seen-e t)) + (funcall shift)) - (if args - (progn - (setq new-args (cons (car args) new-args)) - (setq args (cdr args))) - (setq new-args (cons "--" new-args))) + (when (not seen-e) + (if (or (not args) + (string-match "^-" (car args))) + (error "Can't use stdin as the script to debug.")) + ;; This is the program name. + (funcall shift)) + + ;; If -e specified, make sure there is a -- so -emacs is not taken + ;; as -e macs. + (if (and args (equal "--" (car args))) + (funcall shift) + (and seen-e (setq new-args (cons "--" new-args)))) (setq new-args (cons "-emacs" new-args)) + (while args + (funcall shift)) - (while args - (setq new-args (cons (car args) new-args)) - (setq args (cdr args))) - - (cons "-d" (nreverse new-args)))) + (nreverse new-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