This commit is contained in:
9
.gitignore
vendored
9
.gitignore
vendored
@@ -7,3 +7,12 @@ DerivedData/
|
|||||||
.swiftpm/config/registries.json
|
.swiftpm/config/registries.json
|
||||||
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
|
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
|
||||||
.netrc
|
.netrc
|
||||||
|
|
||||||
|
.idea
|
||||||
|
*__gen.go
|
||||||
|
*__ignore.go
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
~i_*
|
||||||
|
ig_*
|
||||||
|
zzzig_*
|
||||||
|
|||||||
@@ -626,7 +626,7 @@ public struct MTMathListBuilder {
|
|||||||
var mutable = ""
|
var mutable = ""
|
||||||
while self.hasCharacters {
|
while self.hasCharacters {
|
||||||
let ch = self.getNextCharacter()
|
let ch = self.getNextCharacter()
|
||||||
if ch == "#" || (ch >= "A" && ch <= "F") || (ch >= "a" && ch <= "f") || (ch >= "0" && ch <= "9") {
|
if ch == "#" || (ch >= "A" && ch <= "Z") || (ch >= "a" && ch <= "z") || (ch >= "0" && ch <= "9") {
|
||||||
mutable.append(ch) // appendString:[NSString stringWithCharacters:&ch length:1]];
|
mutable.append(ch) // appendString:[NSString stringWithCharacters:&ch length:1]];
|
||||||
} else {
|
} else {
|
||||||
// we went too far
|
// we went too far
|
||||||
|
|||||||
Reference in New Issue
Block a user