Skip to content

Commit

Permalink
Merge pull request #133 from yejianye/master
Browse files Browse the repository at this point in the history
Change string_delimiters option from empty to double quote for emacs_wrapper
  • Loading branch information
eraserhd authored Aug 25, 2023
2 parents 3c76970 + e47c97e commit 0e4d52e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/emacs_wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ fn make_option() -> Result<Options> {
force_balance: false,
return_parens: false,
comment_char: ';',
string_delimiters: Vec::new(),
string_delimiters: vec!["\"".to_string()],
lisp_vline_symbols: false,
lisp_block_comments: false,
guile_block_comments: false,
Expand Down Expand Up @@ -159,7 +159,7 @@ fn new_options(
force_balance: false,
return_parens: false,
comment_char: ';',
string_delimiters: Vec::new(),
string_delimiters: vec!["\"".to_string()],
lisp_vline_symbols: false,
lisp_block_comments: false,
guile_block_comments: false,
Expand Down

0 comments on commit 0e4d52e

Please sign in to comment.