branch: externals/csharp-mode commit aa4e5db5f8470f703f7063cd19fc2a7005611693 Author: Vasilij Schneidermann <v.schneiderm...@gmail.com> Commit: Vasilij Schneidermann <v.schneiderm...@gmail.com>
Escape both quoting and quoted double quote --- csharp-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp-mode.el b/csharp-mode.el index ffa1a8e..ea175b1 100644 --- a/csharp-mode.el +++ b/csharp-mode.el @@ -1157,7 +1157,7 @@ Currently handled: (forward-char 1) (if (= (following-char) ?\") (progn - (put-text-property (1- (point)) (point) + (put-text-property (1- (point)) (1+ (point)) 'syntax-table (string-to-syntax "/")) (forward-char 1)) (setq done t)))))))))