Skip to content

Commit aa4e5db

Browse files
committed
Escape both quoting and quoted double quote
1 parent fe3ca7e commit aa4e5db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ Currently handled:
11571157
(forward-char 1)
11581158
(if (= (following-char) ?\")
11591159
(progn
1160-
(put-text-property (1- (point)) (point)
1160+
(put-text-property (1- (point)) (1+ (point))
11611161
'syntax-table (string-to-syntax "/"))
11621162
(forward-char 1))
11631163
(setq done t)))))))))

0 commit comments

Comments
 (0)