fix c:c;c:b so it removes {}s
closes PR 13211 original commit: 316bbcb038bc1472c71b4bdd58972e86a3776c30
This commit is contained in:
parent
469e4203dc
commit
3fdd763928
|
@ -1033,8 +1033,9 @@
|
|||
(λ (start-pos)
|
||||
(let* ([pos (skip-whitespace start-pos 'forward #f)]
|
||||
[first-char (get-character pos)]
|
||||
[paren? (or (char=? first-char #\( )
|
||||
(char=? first-char #\[ ))]
|
||||
[paren? (or (char=? first-char #\()
|
||||
(char=? first-char #\[)
|
||||
(char=? first-char #\{))]
|
||||
[closer (and paren?
|
||||
(get-forward-sexp pos))])
|
||||
(if (and paren? closer)
|
||||
|
|
Loading…
Reference in New Issue
Block a user