branch: externals/csharp-mode
commit 44740ebb00546185a73ebbe599ac79f9be7fb758
Author: Ronnie Holm <m...@bugfree.dk>
Commit: Ronnie Holm <m...@bugfree.dk>

    Fix font lock breaks on strings #151
    
    Font lock breaks after an interpolated string or terminating simple string.
    
    Fix provided by phoenixanimations.
---
 csharp-mode.el | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/csharp-mode.el b/csharp-mode.el
index 0fea1d1..7048eb3 100644
--- a/csharp-mode.el
+++ b/csharp-mode.el
@@ -1146,6 +1146,9 @@ to work properly with code that includes attributes."
 (c-lang-defconst c-multiline-string-start-char
   csharp ?@)
 
+(defun c-clear-string-fences ()
+  "Function is made null because it breaks csharp-mode when quoting. See 
https://github.com/josteink/csharp-mode/issues/151";)
+
 (defun csharp-mode-syntax-propertize-function (beg end)
   "Apply syntax table properties to special constructs in region BEG to END.
 Currently handled:

Reply via email to