mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fmt: keep char literal, '
(#11060)
This commit is contained in:
@ -113,7 +113,7 @@ pub fn v_sprintf(str string, pt ...voidptr) string {
|
||||
}
|
||||
i++
|
||||
continue
|
||||
} else if ch == `\'` {
|
||||
} else if ch == `'` {
|
||||
i++
|
||||
continue
|
||||
} else if ch == `.` && fc_ch1 >= `1` && fc_ch1 <= `9` {
|
||||
|
Reference in New Issue
Block a user