From: Eli Zaretskii Date: Tue, 30 Dec 2003 08:50:29 +0000 (+0000) Subject: (gud-tool-bar-map): Modify names of icon files X-Git-Tag: ttn-vms-21-2-B4~8050 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=74c942dea8d5ad78bbb53d60449f9d8a94fed152;p=emacs.git (gud-tool-bar-map): Modify names of icon files for gud-next, gud-nexti, gud-step and gud-stepi to prevent file-name clashes on 8+3 DOS filesystems. --- diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index 48a007aef27..76e00cc4438 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el @@ -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)