File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -288,12 +288,16 @@ impl Executor {
288
288
if parentheses == 0 && brackets == 0 && !hash {
289
289
if escape {
290
290
<<<<<<< HEAD
291
+ <<<<<<< HEAD
292
+ =======
293
+ >>>>>>> 416 f9ec ( Update main. rs)
291
294
match c {
292
295
'n' => buffer. push_str( "\\ n" ) ,
293
296
't' => buffer. push_str( "\\ t" ) ,
294
297
'r' => buffer. push_str( "\\ r" ) ,
295
298
_ => buffer. push ( c ) ,
296
299
}
300
+ <<<<<<< HEAD
297
301
=======
298
302
buffer. push( match c {
299
303
'n' => '\n' ,
@@ -302,6 +306,8 @@ impl Executor {
302
306
_ => c,
303
307
} )
304
308
>>>>>>> e0ee7bf ( Add string escape)
309
+ =======
310
+ >>>>>>> 416 f9ec ( Update main. rs)
305
311
} else {
306
312
buffer. push( c) ;
307
313
}
@@ -384,12 +390,16 @@ impl Executor {
384
390
if parentheses == 0 && brackets == 0 && !hash {
385
391
if escape {
386
392
<<<<<<< HEAD
393
+ <<<<<<< HEAD
394
+ =======
395
+ >>>>>>> 416 f9ec ( Update main. rs)
387
396
match c {
388
397
'n' => buffer. push_str( "\\ n" ) ,
389
398
't' => buffer. push_str( "\\ t" ) ,
390
399
'r' => buffer. push_str( "\\ r" ) ,
391
400
_ => buffer. push ( c ) ,
392
401
}
402
+ <<<<<<< HEAD
393
403
=======
394
404
buffer. push( match c {
395
405
'n' => '\n' ,
@@ -398,6 +408,8 @@ impl Executor {
398
408
_ => c,
399
409
} )
400
410
>>>>>>> e0ee7bf ( Add string escape)
411
+ =======
412
+ >>>>>>> 416 f9ec ( Update main. rs)
401
413
} else {
402
414
buffer. push( c) ;
403
415
}
You can’t perform that action at this time.
0 commit comments