diff --git a/Resources/Germany/Messages b/Resources/Germany/Messages index dc79dee9b41d8ed5063137a35cf9cd7d247c4179..dc9ef878706001dcd9b916f5f80fbbf778ac398f 100644 Binary files a/Resources/Germany/Messages and b/Resources/Germany/Messages differ diff --git a/Resources/UK/Messages b/Resources/UK/Messages index c097145c68110e811c8f5ccbbbd66fc1d6691ff2..e06a6338f73b5f1a43f28a4b7dcd7175fe08afd1 100644 Binary files a/Resources/UK/Messages and b/Resources/UK/Messages differ diff --git a/VersionASM b/VersionASM index 2fa1e74efdd907069835f918b6c0f21380246abd..75e9f602c28f62a0fccb318a3ef3974d39f89b34 100644 --- a/VersionASM +++ b/VersionASM @@ -11,13 +11,13 @@ GBLS Module_HelpVersion GBLS Module_ComponentName GBLS Module_ComponentPath -Module_MajorVersion SETS "1.92" -Module_Version SETA 192 +Module_MajorVersion SETS "1.93" +Module_Version SETA 193 Module_MinorVersion SETS "" -Module_Date SETS "05 Apr 2016" -Module_ApplicationDate SETS "05-Apr-16" +Module_Date SETS "06 Apr 2016" +Module_ApplicationDate SETS "06-Apr-16" Module_ComponentName SETS "Debugger" Module_ComponentPath SETS "castle/RiscOS/Sources/Programmer/Debugger" -Module_FullVersion SETS "1.92" -Module_HelpVersion SETS "1.92 (05 Apr 2016)" +Module_FullVersion SETS "1.93" +Module_HelpVersion SETS "1.93 (06 Apr 2016)" END diff --git a/VersionNum b/VersionNum index 8534079a2ca757a6f9af3d611f95a8ee0e45c703..9e4ec1a39f2222496e2b77d95df8ddf3d70e158e 100644 --- a/VersionNum +++ b/VersionNum @@ -1,23 +1,23 @@ -/* (1.92) +/* (1.93) * * This file is automatically maintained by srccommit, do not edit manually. * Last processed by srccommit version: 1.1. * */ -#define Module_MajorVersion_CMHG 1.92 +#define Module_MajorVersion_CMHG 1.93 #define Module_MinorVersion_CMHG -#define Module_Date_CMHG 05 Apr 2016 +#define Module_Date_CMHG 06 Apr 2016 -#define Module_MajorVersion "1.92" -#define Module_Version 192 +#define Module_MajorVersion "1.93" +#define Module_Version 193 #define Module_MinorVersion "" -#define Module_Date "05 Apr 2016" +#define Module_Date "06 Apr 2016" -#define Module_ApplicationDate "05-Apr-16" +#define Module_ApplicationDate "06-Apr-16" #define Module_ComponentName "Debugger" #define Module_ComponentPath "castle/RiscOS/Sources/Programmer/Debugger" -#define Module_FullVersion "1.92" -#define Module_HelpVersion "1.92 (05 Apr 2016)" -#define Module_LibraryVersionInfo "1:92" +#define Module_FullVersion "1.93" +#define Module_HelpVersion "1.93 (06 Apr 2016)" +#define Module_LibraryVersionInfo "1:93" diff --git a/c/exc b/c/exc index a4cd114ad985d045d3123142528f732f9d350d83..a1c868c9509dc8a882d91e14aecad87b08356b90 100644 --- a/c/exc +++ b/c/exc @@ -939,8 +939,10 @@ static bool DescribeBlocks(exc_context_t *ctx) } break; case ExcDump_Chunk_Error: - snprintf(temp,sizeof(temp),ExcGetMsg(ctx,EXC_MSG_BLOCK_ERROR), pos[2], (char*)&pos[3]); + snprintf(temp,sizeof(temp),ExcGetMsg(ctx,EXC_MSG_BLOCK_ERROR), pos[2]); ctx->print(ctx->print_param,temp); + ctx->print(ctx->print_param,(char *) &pos[3]); + ctx->print(ctx->print_param,"\n"); break; case ExcDump_Chunk_OSMem16: for(int i=0;i<((blocklen-12)/4);i+=3) @@ -956,6 +958,7 @@ static bool DescribeBlocks(exc_context_t *ctx) pos += blocklen/4; len -= blocklen; } + ctx->print(ctx->print_param,"\n"); return true; }