]> code.delx.au - gnu-emacs/commitdiff
(gud-tool-bar-map): Modify names of icon files
authorEli Zaretskii <eliz@is.elta.co.il>
Tue, 30 Dec 2003 08:50:29 +0000 (08:50 +0000)
committerEli Zaretskii <eliz@is.elta.co.il>
Tue, 30 Dec 2003 08:50:29 +0000 (08:50 +0000)
for gud-next, gud-nexti, gud-step and gud-stepi to prevent
file-name clashes on 8+3 DOS filesystems.

lisp/progmodes/gud.el

index 48a007aef2787fd142c6c4dc2d02fe78200105b5..76e00cc4438f32569183cb71683e04ad4038a10b 100644 (file)
@@ -162,11 +162,14 @@ Used to grey out relevant toolbar icons.")
                     (gud-run . "gud-run")
                     (gud-until . "gud-until")
                     (gud-cont . "gud-cont")
-                    (gud-step . "gud-step")
-                    (gud-next . "gud-next")
+                    ;; gud-s, gud-si etc. instead of gud-step,
+                    ;; gud-stepi, to avoid file-name clashes on DOS
+                    ;; 8+3 filesystems.
+                    (gud-step . "gud-s")
+                    (gud-next . "gud-n")
                     (gud-finish . "gud-finish")
-                    (gud-stepi . "gud-stepi")
-                    (gud-nexti . "gud-nexti")
+                    (gud-stepi . "gud-si")
+                    (gud-nexti . "gud-ni")
                     (gud-up . "gud-up")
                     (gud-down . "gud-down"))
                   map)