From: Guido van Rossum Date: Thu, 20 Jun 1996 14:18:34 +0000 (+0000) Subject: Cosmetic change to the dox_8x3 hack. X-Git-Tag: v1.4b1~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e41c8c8485def35d30d56ba8420641472e273e1;p=python Cosmetic change to the dox_8x3 hack. --- diff --git a/Python/import.c b/Python/import.c index a3803a20f9..12a2c308de 100644 --- a/Python/import.c +++ b/Python/import.c @@ -462,13 +462,12 @@ find_module(name, path, buf, buflen, p_fp) else buf[len++] = ch; } - else{ /* Not in dos_8x3, use the full name */ + else /* Not in dos_8x3, use the full name */ +#else + { strcpy(buf+len, name); len += namelen; } -#else - strcpy(buf+len, name); - len += namelen; #endif for (fdp = import_filetab; fdp->suffix != NULL; fdp++) { strcpy(buf+len, fdp->suffix);