Skip to content

Commit 0e4d52e

Browse files
authored
Merge pull request #133 from yejianye/master
Change string_delimiters option from empty to double quote for emacs_wrapper
2 parents 3c76970 + e47c97e commit 0e4d52e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/emacs_wrapper.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ fn make_option() -> Result<Options> {
123123
force_balance: false,
124124
return_parens: false,
125125
comment_char: ';',
126-
string_delimiters: Vec::new(),
126+
string_delimiters: vec!["\"".to_string()],
127127
lisp_vline_symbols: false,
128128
lisp_block_comments: false,
129129
guile_block_comments: false,
@@ -159,7 +159,7 @@ fn new_options(
159159
force_balance: false,
160160
return_parens: false,
161161
comment_char: ';',
162-
string_delimiters: Vec::new(),
162+
string_delimiters: vec!["\"".to_string()],
163163
lisp_vline_symbols: false,
164164
lisp_block_comments: false,
165165
guile_block_comments: false,

0 commit comments

Comments
 (0)