Bug 407611

Summary: Julia syntax file contains casing errors
Product: [Applications] kate Reporter: pat_h
Component: syntaxAssignee: KWrite Developers <kwrite-bugs-null>
Status: RESOLVED FIXED    
Severity: minor CC: christoph
Priority: NOR    
Version First Reported In: unspecified   
Target Milestone: ---   
Platform: Other   
OS: Linux   
Latest Commit: Version Fixed/Implemented In: 5.59
Sentry Crash Report:

Description pat_h 2019-05-16 18:31:00 UTC
SUMMARY
In julia.xml (https://kate-editor.org/syntax/data/julia.xml) the unsigned integers are defined like Uint, Uint8, Uint16, Uint32 and Uint64 (with lower case "i"). However, as can be seen in Julia's documentation (https://docs.julialang.org/en/v1.1/base/numbers/#Core.UInt8), the types are actually defined with an upper case "I", i.e. all five lines should be changed accordingly.
Comment 1 Christoph Cullmann 2019-05-18 18:10:40 UTC
Git commit 2d8ad85ffc26df6bb02c71333702c048a2fbd4dd by Christoph Cullmann.
Committed on 18/05/2019 at 18:09.
Pushed by cullmann into branch 'master'.

fix casing of UInt* types in Julia hl

M  +6    -6    data/syntax/julia.xml

https://commits.kde.org/syntax-highlighting/2d8ad85ffc26df6bb02c71333702c048a2fbd4dd
Comment 2 Christoph Cullmann 2019-05-18 18:11:02 UTC
Thanks for the report, should be fixed now!
Comment 3 pat_h 2019-05-19 16:04:53 UTC
Thanks for the fix and the fast response!