comparison lisp/gud.el @ 12003:58854589c7f7

(gud-perldb-massage-args): Pass `-emacs' after the file name.
author Karl Heuer <kwzh@gnu.org>
date Mon, 29 May 1995 20:13:06 +0000
parents 9d22f732d7d8
children b28537b10443
comparison
equal deleted inserted replaced
12002:9d22f732d7d8 12003:58854589c7f7
879 879
880 ;;; History of argument lists passed to perldb. 880 ;;; History of argument lists passed to perldb.
881 (defvar gud-perldb-history nil) 881 (defvar gud-perldb-history nil)
882 882
883 (defun gud-perldb-massage-args (file args) 883 (defun gud-perldb-massage-args (file args)
884 (cons "-d" (cons "-emacs" args))) 884 (cons "-d" (cons (car args) (cons "-emacs" (cdr args)))))
885 885
886 ;; There's no guarantee that Emacs will hand the filter the entire 886 ;; There's no guarantee that Emacs will hand the filter the entire
887 ;; marker at once; it could be broken up across several strings. We 887 ;; marker at once; it could be broken up across several strings. We
888 ;; might even receive a big chunk with several markers in it. If we 888 ;; might even receive a big chunk with several markers in it. If we
889 ;; receive a chunk of text which looks like it might contain the 889 ;; receive a chunk of text which looks like it might contain the