mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
💄
This commit is contained in:
@@ -656,8 +656,8 @@ class DisplayBuffer extends Model
|
||||
while valueIndex < token.value.length
|
||||
if textUtils.isPairedCharacter(value, valueIndex)
|
||||
char = value.substr(valueIndex, 2)
|
||||
valueIndex += 2
|
||||
charLength = 2
|
||||
valueIndex += 2
|
||||
else
|
||||
char = value[valueIndex]
|
||||
charLength = 1
|
||||
@@ -685,8 +685,8 @@ class DisplayBuffer extends Model
|
||||
while valueIndex < token.value.length
|
||||
if textUtils.isPairedCharacter(value, valueIndex)
|
||||
char = value.substr(valueIndex, 2)
|
||||
valueIndex += 2
|
||||
charLength = 2
|
||||
valueIndex += 2
|
||||
else
|
||||
char = value[valueIndex]
|
||||
charLength = 1
|
||||
|
||||
@@ -316,8 +316,8 @@ LinesComponent = React.createClass
|
||||
while valueIndex < value.length
|
||||
if textUtils.isPairedCharacter(value, valueIndex)
|
||||
char = value.substr(valueIndex, 2)
|
||||
valueIndex += 2
|
||||
charLength = 2
|
||||
valueIndex += 2
|
||||
else
|
||||
char = value[valueIndex]
|
||||
charLength = 1
|
||||
|
||||
Reference in New Issue
Block a user