From: Richard M. Stallman Date: Thu, 2 Mar 1995 08:34:04 +0000 (+0000) Subject: (gud-massage-args): Variable and function deleted. X-Git-Tag: emacs-19.34~4981 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a96e9ed73e093b1f6b6b55050b15ddf7601462ae;p=emacs.git (gud-massage-args): Variable and function deleted. (gud-common-init): Don't set the variable. --- diff --git a/lisp/gud.el b/lisp/gud.el index 3dff754f966..45518dd57f6 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -49,16 +49,11 @@ (global-set-key (concat gud-key-prefix "\C-l") 'gud-refresh) (define-key ctl-x-map " " 'gud-break) ;; backward compatibility hack -(defvar gud-massage-args nil) -(put 'gud-massage-args 'permanent-local t) (defvar gud-marker-filter nil) (put 'gud-marker-filter 'permanent-local t) (defvar gud-find-file nil) (put 'gud-find-file 'permanent-local t) -(defun gud-massage-args (&rest args) - (apply gud-massage-args args)) - (defun gud-marker-filter (&rest args) (apply gud-marker-filter args)) @@ -1159,8 +1154,6 @@ comint mode, which see." (if file-word (funcall massage-args file args) args))) ;; Since comint clobbered the mode, we don't set it until now. (gud-mode) - (make-local-variable 'gud-massage-args) - (setq gud-massage-args massage-args) (make-local-variable 'gud-marker-filter) (setq gud-marker-filter marker-filter) (make-local-variable 'gud-find-file)