From: Theodor Thornhill Date: Fri, 28 Apr 2023 12:00:35 +0000 (+0200) Subject: Skip over whitespace in annotation-top-cont check (bug#63141) X-Git-Tag: emacs-29.0.91~80 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f2214dabd0;p=emacs.git Skip over whitespace in annotation-top-cont check (bug#63141) * lisp/progmodes/csharp-mode.el (csharp-guess-basic-syntax): Make sure we skip over whitespace when looking for the next '['. --- diff --git a/lisp/progmodes/csharp-mode.el b/lisp/progmodes/csharp-mode.el index 47cd13e7fdb..4f7cbc3d51d 100644 --- a/lisp/progmodes/csharp-mode.el +++ b/lisp/progmodes/csharp-mode.el @@ -468,7 +468,10 @@ compilation and evaluation time conflicts." (save-excursion (goto-char (c-point 'iopl)) (and - (eq (char-after) ?\[) + (eq (save-excursion + (skip-chars-forward " \t\n") + (char-after)) + ?\[) (save-excursion (c-go-list-forward) (and (eq (char-before) ?\])