summaryrefslogtreecommitdiff
path: root/lisp/gud.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-03-02 08:34:04 +0000
committerRichard M. Stallman <rms@gnu.org>1995-03-02 08:34:04 +0000
commitb2ae9758cfb5be653c0f8bc41286cb747d1f3f2d (patch)
tree19a4fb089d0cfba542ad98197d07796547a52cf6 /lisp/gud.el
parent1c8ecee773ca3ce62199b257c987b068a1593739 (diff)
downloademacs-b2ae9758cfb5be653c0f8bc41286cb747d1f3f2d.tar.gz
(gud-massage-args): Variable and function deleted.
(gud-common-init): Don't set the variable.
Diffstat (limited to 'lisp/gud.el')
-rw-r--r--lisp/gud.el7
1 files changed, 0 insertions, 7 deletions
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)