We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Name of the lexer Pascal
Code sample
function UnicodeToISO_8859_9(Unicode: cardinal): integer; begin case Unicode of 0..255: Result:=Unicode; $011E: Result:= $D0; $0130: Result:= $DD; $015E: Result:= $DE; $011F: Result:= $F0; $0131: Result:= $FD; $015F: Result:= $FE; else Result:=-1; end; end;
Additional context I use Gitlab to see patches for Lazarus project here https://gitlab.com/freepascal.org/lazarus/lazarus/-/commit/f737b23e7c36fefb16b14600c8dc79979213d8e0
The text was updated successfully, but these errors were encountered:
tancnle
Successfully merging a pull request may close this issue.
Name of the lexer
Pascal
Code sample
Additional context
I use Gitlab to see patches for Lazarus project here
https://gitlab.com/freepascal.org/lazarus/lazarus/-/commit/f737b23e7c36fefb16b14600c8dc79979213d8e0
The text was updated successfully, but these errors were encountered: