@@ -55,6 +55,7 @@ static struct errlist errlist[] =
5555 [E_DPY ] = { "DPY" , "Display mode error" },
5656 [E_DTB ] = { "DTB" , "Delete too big" },
5757 [E_DUP ] = { "DUP" , "Duplicate tag '!%s!'" },
58+ [E_ERR ] = { "ERR" , "%s" },
5859 [E_EXT ] = { "EXT" , "Extended feature not enabled" },
5960 [E_FIL ] = { "FIL" , "Invalid file '%s'" },
6061 [E_FNF ] = { "FNF" , "File not found '%s'" },
@@ -107,7 +108,6 @@ static struct errlist errlist[] =
107108 [E_POP ] = { "POP" , "Attempt to move pointer off page with '%s'" },
108109 [E_SNI ] = { "SNI" , "Semi-colon not in iteration" },
109110 [E_SRH ] = { "SRH" , "Search failure: '%s'" },
110- [E_SYS ] = { "SYS" , "System error: '%s'" },
111111 [E_TAG ] = { "TAG" , "Missing tag: '!%s!'" },
112112 [E_TXT ] = { "TXT" , "Invalid text delimiter '%s'" },
113113 [E_UTC ] = { "UTC" , "Unterminated command string" },
@@ -152,6 +152,8 @@ static const char *errhelp[] =
152152 "the current page." ,
153153 [E_DUP ] = "An O command found a duplicate tag within the "
154154 "command string." ,
155+ [E_ERR ] = "A system call failed. The error message text "
156+ "explains the error." ,
155157 [E_EXT ] = "A command attempted to use an extended feature "
156158 "which is not currently enabled." ,
157159 [E_FIL ] = "An attempt was made to open a directory, FIFO, "
@@ -293,8 +295,6 @@ static const char *errhelp[] =
293295 "buffer is cleared. In the case of an N "
294296 "search it is usually necessary to close "
295297 "the output file and reopen it." ,
296- [E_SYS ] = "A system call failed. The error message "
297- "text explains the error." ,
298298 [E_TAG ] = "The tag specified by an O command cannot "
299299 "be found. This tag must be in the same macro "
300300 "level as the O command referencing it." ,
0 commit comments