chore: bump scintilla and lexilla version

This commit is contained in:
2025-10-12 13:51:32 +08:00
parent 9fb3681e3a
commit db20417ce7
1093 changed files with 138943 additions and 128144 deletions

View File

@ -0,0 +1,9 @@
0 400 0 # Issue 124, disambiguating %= which may be a quote or modulo assignment
0 400 0 # %-quoting with '=' as the quote
0 400 0 s = %=3=
0 400 0 puts s
0 400 0 x = 7
0 400 0 # Modulo assignment, equivalent to x = x % 2
0 400 0 x %=2
0 400 0 puts x
0 400 0