# HG changeset patch # User Eli Zaretskii # Date 1072774229 0 # Node ID 03788e9f1efbe109c6aa4d651727786b59add620 # Parent 01eff098e53565d9454f5a12408ac38caa98a3e8 (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 -r 01eff098e535 -r 03788e9f1efb lisp/progmodes/gud.el --- a/lisp/progmodes/gud.el Tue Dec 30 08:49:27 2003 +0000 +++ b/lisp/progmodes/gud.el Tue Dec 30 08:50:29 2003 +0000 @@ -162,11 +162,14 @@ (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)