diff options
| author | Juanma Barranquero | 2002-11-14 08:56:31 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-11-14 08:56:31 +0000 |
| commit | 2c46c4c84b74c9599b6bd75402c4fe814b0f7d45 (patch) | |
| tree | 25136bb97a0f3c46fd18fd54ea6f4b80bf99b512 | |
| parent | 841e0fe4ae76d004684c6279f5774c401ef8184f (diff) | |
| download | emacs-2c46c4c84b74c9599b6bd75402c4fe814b0f7d45.tar.gz emacs-2c46c4c84b74c9599b6bd75402c4fe814b0f7d45.zip | |
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 | |||
| 1849 | (setq massaged-args | 1849 | (setq massaged-args |
| 1850 | (append massaged-args | 1850 | (append massaged-args |
| 1851 | (list "-classpath") | 1851 | (list "-classpath") |
| 1852 | (list | 1852 | (list |
| 1853 | (setq gud-jdb-classpath-string | 1853 | (setq gud-jdb-classpath-string |
| 1854 | (substring | 1854 | (substring |
| 1855 | (car args) | 1855 | (car args) |
| @@ -1858,7 +1858,7 @@ extension EXTN. Normally EXTN is given as the regular expression | |||
| 1858 | (setq massaged-args | 1858 | (setq massaged-args |
| 1859 | (append massaged-args | 1859 | (append massaged-args |
| 1860 | (list "-sourcepath") | 1860 | (list "-sourcepath") |
| 1861 | (list | 1861 | (list |
| 1862 | (setq gud-jdb-sourcepath | 1862 | (setq gud-jdb-sourcepath |
| 1863 | (substring | 1863 | (substring |
| 1864 | (car args) | 1864 | (car args) |
| @@ -2750,6 +2750,6 @@ pathname standards using file-truename." | |||
| 2750 | (tool-bar-add-item-from-menu 'gud-down "gud-down" gud-minor-mode-map) | 2750 | (tool-bar-add-item-from-menu 'gud-down "gud-down" gud-minor-mode-map) |
| 2751 | tool-bar-map))) | 2751 | tool-bar-map))) |
| 2752 | 2752 | ||
| 2753 | (provide 'mygud) | 2753 | (provide 'gud) |
| 2754 | 2754 | ||
| 2755 | ;;; gud.el ends here | 2755 | ;;; gud.el ends here |