diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-11-14 08:56:31 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-11-14 08:56:31 +0000 |
commit | 2c46c4c84b74c9599b6bd75402c4fe814b0f7d45 (patch) | |
tree | 25136bb97a0f3c46fd18fd54ea6f4b80bf99b512 | |
parent | 841e0fe4ae76d004684c6279f5774c401ef8184f (diff) | |
download | emacs-2c46c4c84b74c9599b6bd75402c4fe814b0f7d45.tar.gz |
Fix feature name in `provide'.
-rw-r--r-- | lisp/gud.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gud.el b/lisp/gud.el index fa09bcb5841..dacb69378f4 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -1849,7 +1849,7 @@ extension EXTN. Normally EXTN is given as the regular expression (setq massaged-args (append massaged-args (list "-classpath") - (list + (list (setq gud-jdb-classpath-string (substring (car args) @@ -1858,7 +1858,7 @@ extension EXTN. Normally EXTN is given as the regular expression (setq massaged-args (append massaged-args (list "-sourcepath") - (list + (list (setq gud-jdb-sourcepath (substring (car args) @@ -2750,6 +2750,6 @@ pathname standards using file-truename." (tool-bar-add-item-from-menu 'gud-down "gud-down" gud-minor-mode-map) tool-bar-map))) -(provide 'mygud) +(provide 'gud) ;;; gud.el ends here |