mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-10 10:49:22 +02:00
* fixed dupplicate message numbers (from Pierre's fix in the fixes
branch)
This commit is contained in:
parent
a30886fbf6
commit
45d4e0202a
@ -1506,13 +1506,13 @@ exec_e_unit_not_shared_or_static_linkable=09027_E_unit $1 can't be shared or sta
|
||||
#
|
||||
# Executable information
|
||||
#
|
||||
execinfo_f_cant_process_executable=09023_F_Can't post process executable $1
|
||||
execinfo_f_cant_open_executable=09024_F_Can't open executable $1
|
||||
execinfo_x_codesize=09025_X_Size of Code: $1 bytes
|
||||
execinfo_x_initdatasize=09026_X_Size of initialized data: $1 bytes
|
||||
execinfo_x_uninitdatasize=09027_X_Size of uninitialized data: $1 bytes
|
||||
execinfo_x_stackreserve=09028_X_Stack space reserved: $1 bytes
|
||||
execinfo_x_stackcommit=09029_X_Stack space commited: $1 bytes
|
||||
execinfo_f_cant_process_executable=09028_F_Can't post process executable $1
|
||||
execinfo_f_cant_open_executable=09029_F_Can't open executable $1
|
||||
execinfo_x_codesize=09030_X_Size of Code: $1 bytes
|
||||
execinfo_x_initdatasize=09031_X_Size of initialized data: $1 bytes
|
||||
execinfo_x_uninitdatasize=09032_X_Size of uninitialized data: $1 bytes
|
||||
execinfo_x_stackreserve=09033_X_Stack space reserved: $1 bytes
|
||||
execinfo_x_stackcommit=09034_X_Stack space commited: $1 bytes
|
||||
|
||||
#
|
||||
# Unit loading
|
||||
|
@ -481,13 +481,13 @@ const
|
||||
exec_t_unit_not_shared_linkable_switch_to_static=09025;
|
||||
exec_e_unit_not_smart_or_static_linkable=09026;
|
||||
exec_e_unit_not_shared_or_static_linkable=09027;
|
||||
execinfo_f_cant_process_executable=09023;
|
||||
execinfo_f_cant_open_executable=09024;
|
||||
execinfo_x_codesize=09025;
|
||||
execinfo_x_initdatasize=09026;
|
||||
execinfo_x_uninitdatasize=09027;
|
||||
execinfo_x_stackreserve=09028;
|
||||
execinfo_x_stackcommit=09029;
|
||||
execinfo_f_cant_process_executable=09028;
|
||||
execinfo_f_cant_open_executable=09029;
|
||||
execinfo_x_codesize=09030;
|
||||
execinfo_x_initdatasize=09031;
|
||||
execinfo_x_uninitdatasize=09032;
|
||||
execinfo_x_stackreserve=09033;
|
||||
execinfo_x_stackcommit=09034;
|
||||
unit_t_unitsearch=10000;
|
||||
unit_t_ppu_loading=10001;
|
||||
unit_u_ppu_name=10002;
|
||||
@ -558,6 +558,6 @@ const
|
||||
MsgTxtSize = 31005;
|
||||
|
||||
MsgIdxMax : array[1..20] of longint=(
|
||||
17,58,165,34,41,41,84,14,30,40,
|
||||
17,58,165,34,41,41,84,14,35,40,
|
||||
26,1,1,1,1,1,1,1,1,1
|
||||
);
|
||||
|
@ -521,13 +521,13 @@ const msgtxt : array[0..000129,1..240] of char=(
|
||||
'g'#000+
|
||||
'09026','_E_unit $1 can'#039't be smart or static linked'#000+
|
||||
'09027_E_unit $1 can'#039't be shared or static linked'#000+
|
||||
'09023_F_Can'#039't post process executable $1'#000+
|
||||
'09024_F_Can'#039't open executable $1'#000+
|
||||
'09025_X_Size of Code: $1 bytes'#000+
|
||||
'09026_X_Size of initialized data: $1 bytes'#000,
|
||||
'09027_X_Size of uninitialized data: $1 bytes'#000+
|
||||
'09028_X_Stack space reserved: $1 bytes'#000+
|
||||
'09029_X_Stack space commited: $1 bytes'#000+
|
||||
'09028_F_Can'#039't post process executable $1'#000+
|
||||
'09029_F_Can'#039't open executable $1'#000+
|
||||
'09030_X_Size of Code: $1 bytes'#000+
|
||||
'09031_X_Size of initialized data: $1 bytes'#000,
|
||||
'09032_X_Size of uninitialized data: $1 bytes'#000+
|
||||
'09033_X_Stack space reserved: $1 bytes'#000+
|
||||
'09034_X_Stack space commited: $1 bytes'#000+
|
||||
'10000_T_Unitsearch: $1'#000+
|
||||
'10001_T_PPU Loading $1'#000+
|
||||
'10002_U_PPU Name: $1'#000+
|
||||
|
Loading…
Reference in New Issue
Block a user