Skip to content
New issue

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

Pascal hex numbers #1835

Closed
Alexey-T opened this issue Jun 20, 2022 · 0 comments · Fixed by #1840
Closed

Pascal hex numbers #1835

Alexey-T opened this issue Jun 20, 2022 · 0 comments · Fixed by #1840
Assignees
Labels
bugfix-request A request for a bugfix to be developed. pr-open A PR addressing this issue is open.

Comments

@Alexey-T
Copy link

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

@Alexey-T Alexey-T added the bugfix-request A request for a bugfix to be developed. label Jun 20, 2022
@tancnle tancnle self-assigned this Jun 25, 2022
@tancnle tancnle added the pr-open A PR addressing this issue is open. label Jun 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bugfix-request A request for a bugfix to be developed. pr-open A PR addressing this issue is open.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants