Changeset 1247 for trunk/dll/command.c
- Timestamp:
- Oct 15, 2008, 3:44:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/command.c
r1221 r1247 27 27 19 Jul 08 GKY Replace save_dir2(dir) with pFM2SaveDirectory and use BldFullPathName 28 28 24 Aug 08 GKY Warn full drive on save of .DAT file; prevent loss of existing file 29 15 Oct 08 GKY Prevent asking to add %a on NormalizeCmdLine abort 29 30 30 31 ***********************************************************************/ … … 670 671 memcpy(temp.pszCmdLine, pszWorkBuf, strlen(pszWorkBuf) + 1); 671 672 free(pszWorkBuf); 672 if (!strchr(temp.pszCmdLine, '%') ){673 if (!strchr(temp.pszCmdLine, '%') && !fCancelAction){ 673 674 ret = saymsg(MB_YESNO, 674 675 HWND_DESKTOP, … … 775 776 memcpy(temp.pszCmdLine, pszWorkBuf, strlen(pszWorkBuf) + 1); 776 777 free(pszWorkBuf); 777 if (!strchr(temp.pszCmdLine, '%') ){778 if (!strchr(temp.pszCmdLine, '%') && !fCancelAction){ 778 779 ret = saymsg(MB_YESNO, 779 780 HWND_DESKTOP, … … 893 894 break; 894 895 } 895 if (!strchr(temp.pszCmdLine, '%') ){896 if (!strchr(temp.pszCmdLine, '%') && !fCancelAction){ 896 897 ret = saymsg(MB_YESNO, 897 898 HWND_DESKTOP,
Note:
See TracChangeset
for help on using the changeset viewer.