branch: externals/csharp-mode commit 6ccf2cf9031458055cc74b110fea9416a0c0356d Author: Vasilij Schneidermann <v.schneiderm...@gmail.com> Commit: Vasilij Schneidermann <v.schneiderm...@gmail.com>
Apply syntax propertize function silently --- csharp-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/csharp-mode.el b/csharp-mode.el index 1a165c8..adb77ba 100644 --- a/csharp-mode.el +++ b/csharp-mode.el @@ -3013,7 +3013,8 @@ Key bindings: ;; ;; To patch our way around this, we issue a syntax-propertize call ;; manually, font-lock enabled or not. - (csharp-mode-syntax-propertize-function (point-min) (point-max))) + (with-silent-modifications + (csharp-mode-syntax-propertize-function (point-min) (point-max)))) (provide 'csharp-mode)