1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# Escaped special characters in the program name ("&", ":")
program&co&sons:: ERROR, syntax error.
program:deep:deeper:: ERROR, syntax error.
# Escaped special characters in the filename ("&", ":" , "(", ")")
program: file&co&daughters: ERROR, syntax error.
program: file:deep:deeper: ERROR, syntax error.
program: file(42)(13,37): ERROR, syntax error.
program: file(42)(13,37): ERROR, syntax error.
# However the number symbol ('#') is allowed in the filename and the
# # entity is not unescaped
program: #rare#filename#: ERROR, syntax error.
program: #rare#filename#: ERROR, syntax error.
# Escaped special characters in additional position information (datablock)
# and the message itself ("&", ":")
program: filename data_additional:information&position: ERROR, syntax error: this & that.
# Escaping the first symbol of escape sequences to allow them in the plain text
# of all fields
program&relatives: file&children data_datablock&info: ERROR, syntax error & crash results.
|