unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
@ 2024-03-05 21:09 Carlos
  2024-03-09  8:38 ` Eli Zaretskii
  2024-03-30 12:15 ` Mattias Engdegård
  0 siblings, 2 replies; 13+ messages in thread
From: Carlos @ 2024-03-05 21:09 UTC (permalink / raw)
  To: 69571

Any block starting on the line immediately below a line having the
string "new" will have its closing brace aligned with the opening one.

See the following code:

public class Foo {
    void Bar () {
	var x = new X(); // [1]
	for (;;) {
	    x();
		 }  // [2]
    }
}

Line [1] says "new". The closing brace in line [2] is aligned to the
opening brace.

If you comment out the "new" (or the whole line) the problem persists.

If you remove the "new" the problem goes away and [2] is correctly
aligned.

If you insert a line between line [1] and the one having the opening
brace the problem goes away.


In GNU Emacs 29.2 (build 2, x86_64-w64-mingw32) of 2024-02-29 built on
 fv-az586-734
Windowing system distributor 'Microsoft Corp.', version 10.0.19045
System Description: Microsoft Windows 10 Pro (v10.0.2009.19045.4046)

Configured using:
 'configure --prefix=/mingw64 --host=x86_64-w64-mingw32
 --build=x86_64-w64-mingw32 --with-modules --without-dbus
 --without-compress-install --with-tree-sitter
 --with-native-compilation=aot 'CFLAGS=-march=nocona -msahf
 -mtune=generic -O2 -pipe -fstack-protector-strong
 -fno-optimize-sibling-calls' CPPFLAGS=-D__USE_MINGW_ANSI_STDIO=1
 'LDFLAGS=-pipe -lpthread''

Configured features:
ACL GIF GMP GNUTLS HARFBUZZ JPEG JSON LIBXML2 MODULES NATIVE_COMP NOTIFY
W32NOTIFY PDUMPER PNG RSVG SOUND SQLITE3 THREADS TIFF
TOOLKIT_SCROLL_BARS TREE_SITTER WEBP XPM ZLIB

Important settings:
  value of $LANG: ENU
  locale-coding-system: cp1252

Major mode: C#//l

Minor modes in effect:
  tooltip-mode: t
  global-eldoc-mode: t
  show-paren-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  line-number-mode: t
  indent-tabs-mode: t
  transient-mark-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug message mailcap yank-media puny dired
dired-loaddefs rfc822 mml mml-sec password-cache epa derived epg rfc6068
epg-config gnus-util mm-decode mm-bodies mm-encode mail-parse rfc2231
mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums
mm-util mail-prsvr mail-utils mule-util info time-date comp comp-cstr
warnings icons subr-x rx cl-macs gv cl-extra help-mode bytecomp
byte-compile csharp-mode c-ts-common treesit cl-seq cc-langs cc-mode
cc-fonts cc-guess cc-menus cc-cmds cc-styles cc-align cc-engine cc-vars
cc-defs cl-loaddefs cl-lib compile text-property-search comint ansi-osc
ansi-color ring rmc iso-transl tooltip cconv eldoc paren electric
uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel dos-w32
ls-lisp disp-table term/w32-win w32-win w32-vars term/common-win
tool-bar dnd fontset image regexp-opt fringe tabulated-list replace
newcomment text-mode lisp-mode prog-mode register page tab-bar menu-bar
rfn-eshadow isearch easymenu timer select scroll-bar mouse jit-lock
font-lock syntax font-core term/tty-colors frame minibuffer nadvice seq
simple cl-generic indonesian philippine cham georgian utf-8-lang
misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms
cp51932 hebrew greek romanian slovak czech european ethiopic indian
cyrillic chinese composite emoji-zwj charscript charprop case-table
epa-hook jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button
loaddefs theme-loaddefs faces cus-face macroexp files window
text-properties overlay sha1 md5 base64 format env code-pages mule
custom widget keymap hashtable-print-readable backquote threads
w32notify w32 multi-tty make-network-process native-compile emacs)

Memory information:
((conses 16 151774 16013)
 (symbols 48 10722 0)
 (strings 32 38006 1798)
 (string-bytes 1 1194803)
 (vectors 16 23175)
 (vector-slots 8 439354 17596)
 (floats 8 37 72)
 (intervals 56 1626 0)
 (buffers 984 15))





^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-05 21:09 bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new" Carlos
@ 2024-03-09  8:38 ` Eli Zaretskii
  2024-03-09  9:13   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-03-10 19:21   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-03-30 12:15 ` Mattias Engdegård
  1 sibling, 2 replies; 13+ messages in thread
From: Eli Zaretskii @ 2024-03-09  8:38 UTC (permalink / raw)
  To: Carlos, Theodor Thornhill, Yuan Fu; +Cc: 69571

> Date: Tue, 5 Mar 2024 22:09:51 +0100
> From: Carlos <carlos@cvkm.cz>
> 
> Any block starting on the line immediately below a line having the
> string "new" will have its closing brace aligned with the opening one.
> 
> See the following code:
> 
> public class Foo {
>     void Bar () {
> 	var x = new X(); // [1]
> 	for (;;) {
> 	    x();
> 		 }  // [2]
>     }
> }
> 
> Line [1] says "new". The closing brace in line [2] is aligned to the
> opening brace.
> 
> If you comment out the "new" (or the whole line) the problem persists.
> 
> If you remove the "new" the problem goes away and [2] is correctly
> aligned.
> 
> If you insert a line between line [1] and the one having the opening
> brace the problem goes away.

Theo and Yuan, could you please look into this?





^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-09  8:38 ` Eli Zaretskii
@ 2024-03-09  9:13   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-03-10 19:21   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 0 replies; 13+ messages in thread
From: Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-03-09  9:13 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Carlos, Yuan Fu, 69571

[-- Attachment #1: Type: text/html, Size: 1441 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-09  8:38 ` Eli Zaretskii
  2024-03-09  9:13   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2024-03-10 19:21   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-03-16 11:19     ` Eli Zaretskii
  2024-03-16 19:45     ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 2 replies; 13+ messages in thread
From: Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-03-10 19:21 UTC (permalink / raw)
  To: Eli Zaretskii, Carlos, Yuan Fu; +Cc: 69571

Eli Zaretskii <eliz@gnu.org> writes:

>> Date: Tue, 5 Mar 2024 22:09:51 +0100
>> From: Carlos <carlos@cvkm.cz>
>> 
>> Any block starting on the line immediately below a line having the
>> string "new" will have its closing brace aligned with the opening one.
>> 
>> See the following code:
>> 
>> public class Foo {
>>     void Bar () {
>> 	var x = new X(); // [1]
>> 	for (;;) {
>> 	    x();
>> 		 }  // [2]
>>     }
>> }
>> 
>> Line [1] says "new". The closing brace in line [2] is aligned to the
>> opening brace.
>> 
>> If you comment out the "new" (or the whole line) the problem persists.
>> 
>> If you remove the "new" the problem goes away and [2] is correctly
>> aligned.
>> 
>> If you insert a line between line [1] and the one having the opening
>> brace the problem goes away.
>
> Theo and Yuan, could you please look into this?

I have a working patch for this, but I'd like to expand it to cover an
edge case for which I'm unable to find a good solution.  Can you suggest
a way around this edge case?

Consider the provided code:
```
public class Foo {
    void Bar () {
        var x = new X(); // [1]
        for (;;) {
            x();
        }  // [2]
    }
}
```

Like this, the below patch doesn't work. If you remove the first
comment, the patch works.

```
public class Foo {
    void Bar () {
        var x = new X();
        for (;;) {
            x();
        }  // [2]
    }
}
```

The reason is simple, of course. What I'm struggling with here is how to
best handle the case where there is a comment ending the line, possibly
containing a ';' itself. I've tried some variations with save-excursion
along with syntax-ppss to detect whether or not we're in a comment, but
it gets verbose and ugly. Is there some simple way to do this check in
Emacs, or should I just resort to making some best effort judgement call
here?

Thanks,
Theo

diff --git a/lisp/progmodes/csharp-mode.el b/lisp/progmodes/csharp-mode.el
index 7bf57bcbe21..00278e18e51 100644
--- a/lisp/progmodes/csharp-mode.el
+++ b/lisp/progmodes/csharp-mode.el
@@ -495,9 +495,10 @@ csharp-guess-basic-syntax
        (unless (eq (char-after) ?{)
          (ignore-errors (backward-up-list 1 t t)))
        (save-excursion
-         ;; 'new' should be part of the line
+         ;; 'new' should be part of the line, but should not trigger if
+         ;; statement has already ended, like for 'var x = new X();'.
          (goto-char (c-point 'iopl))
-         (looking-at ".*new.*")))
+         (looking-at ".*new.*[^;]$")))
      ;; Line should not already be terminated
      (save-excursion
        (goto-char (c-point 'eopl))





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-10 19:21   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2024-03-16 11:19     ` Eli Zaretskii
  2024-03-16 17:01       ` Dmitry Gutov
  2024-03-16 19:45     ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 1 reply; 13+ messages in thread
From: Eli Zaretskii @ 2024-03-16 11:19 UTC (permalink / raw)
  To: Theodor Thornhill; +Cc: carlos, casouri, 69571

Ping!  Yuan, could help Theo figure out what's best here?

> From: Theodor Thornhill <theo@thornhill.no>
> Cc: 69571@debbugs.gnu.org
> Date: Sun, 10 Mar 2024 20:21:32 +0100
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> >> Date: Tue, 5 Mar 2024 22:09:51 +0100
> >> From: Carlos <carlos@cvkm.cz>
> >> 
> >> Any block starting on the line immediately below a line having the
> >> string "new" will have its closing brace aligned with the opening one.
> >> 
> >> See the following code:
> >> 
> >> public class Foo {
> >>     void Bar () {
> >> 	var x = new X(); // [1]
> >> 	for (;;) {
> >> 	    x();
> >> 		 }  // [2]
> >>     }
> >> }
> >> 
> >> Line [1] says "new". The closing brace in line [2] is aligned to the
> >> opening brace.
> >> 
> >> If you comment out the "new" (or the whole line) the problem persists.
> >> 
> >> If you remove the "new" the problem goes away and [2] is correctly
> >> aligned.
> >> 
> >> If you insert a line between line [1] and the one having the opening
> >> brace the problem goes away.
> >
> > Theo and Yuan, could you please look into this?
> 
> I have a working patch for this, but I'd like to expand it to cover an
> edge case for which I'm unable to find a good solution.  Can you suggest
> a way around this edge case?
> 
> Consider the provided code:
> ```
> public class Foo {
>     void Bar () {
>         var x = new X(); // [1]
>         for (;;) {
>             x();
>         }  // [2]
>     }
> }
> ```
> 
> Like this, the below patch doesn't work. If you remove the first
> comment, the patch works.
> 
> ```
> public class Foo {
>     void Bar () {
>         var x = new X();
>         for (;;) {
>             x();
>         }  // [2]
>     }
> }
> ```
> 
> The reason is simple, of course. What I'm struggling with here is how to
> best handle the case where there is a comment ending the line, possibly
> containing a ';' itself. I've tried some variations with save-excursion
> along with syntax-ppss to detect whether or not we're in a comment, but
> it gets verbose and ugly. Is there some simple way to do this check in
> Emacs, or should I just resort to making some best effort judgement call
> here?
> 
> Thanks,
> Theo
> 
> diff --git a/lisp/progmodes/csharp-mode.el b/lisp/progmodes/csharp-mode.el
> index 7bf57bcbe21..00278e18e51 100644
> --- a/lisp/progmodes/csharp-mode.el
> +++ b/lisp/progmodes/csharp-mode.el
> @@ -495,9 +495,10 @@ csharp-guess-basic-syntax
>         (unless (eq (char-after) ?{)
>           (ignore-errors (backward-up-list 1 t t)))
>         (save-excursion
> -         ;; 'new' should be part of the line
> +         ;; 'new' should be part of the line, but should not trigger if
> +         ;; statement has already ended, like for 'var x = new X();'.
>           (goto-char (c-point 'iopl))
> -         (looking-at ".*new.*")))
> +         (looking-at ".*new.*[^;]$")))
>       ;; Line should not already be terminated
>       (save-excursion
>         (goto-char (c-point 'eopl))
> 





^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-16 11:19     ` Eli Zaretskii
@ 2024-03-16 17:01       ` Dmitry Gutov
  2024-03-16 17:25         ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 13+ messages in thread
From: Dmitry Gutov @ 2024-03-16 17:01 UTC (permalink / raw)
  To: Eli Zaretskii, Theodor Thornhill, Alan Mackenzie; +Cc: carlos, casouri, 69571

On 16/03/2024 13:19, Eli Zaretskii wrote:
> Ping!  Yuan, could help Theo figure out what's best here?

csharp-mode is based on CC Mode, not tree-sitter.

So maybe Alan will want to comment.

(csharp-ts-mode doesn't have this problem.)

>> From: Theodor Thornhill <theo@thornhill.no>
>> Cc: 69571@debbugs.gnu.org
>> Date: Sun, 10 Mar 2024 20:21:32 +0100
>>
>> Eli Zaretskii <eliz@gnu.org> writes:
>>
>>>> Date: Tue, 5 Mar 2024 22:09:51 +0100
>>>> From: Carlos <carlos@cvkm.cz>
>>>>
>>>> Any block starting on the line immediately below a line having the
>>>> string "new" will have its closing brace aligned with the opening one.
>>>>
>>>> See the following code:
>>>>
>>>> public class Foo {
>>>>      void Bar () {
>>>> 	var x = new X(); // [1]
>>>> 	for (;;) {
>>>> 	    x();
>>>> 		 }  // [2]
>>>>      }
>>>> }
>>>>
>>>> Line [1] says "new". The closing brace in line [2] is aligned to the
>>>> opening brace.
>>>>
>>>> If you comment out the "new" (or the whole line) the problem persists.
>>>>
>>>> If you remove the "new" the problem goes away and [2] is correctly
>>>> aligned.
>>>>
>>>> If you insert a line between line [1] and the one having the opening
>>>> brace the problem goes away.
>>>
>>> Theo and Yuan, could you please look into this?
>>
>> I have a working patch for this, but I'd like to expand it to cover an
>> edge case for which I'm unable to find a good solution.  Can you suggest
>> a way around this edge case?
>>
>> Consider the provided code:
>> ```
>> public class Foo {
>>      void Bar () {
>>          var x = new X(); // [1]
>>          for (;;) {
>>              x();
>>          }  // [2]
>>      }
>> }
>> ```
>>
>> Like this, the below patch doesn't work. If you remove the first
>> comment, the patch works.
>>
>> ```
>> public class Foo {
>>      void Bar () {
>>          var x = new X();
>>          for (;;) {
>>              x();
>>          }  // [2]
>>      }
>> }
>> ```
>>
>> The reason is simple, of course. What I'm struggling with here is how to
>> best handle the case where there is a comment ending the line, possibly
>> containing a ';' itself. I've tried some variations with save-excursion
>> along with syntax-ppss to detect whether or not we're in a comment, but
>> it gets verbose and ugly. Is there some simple way to do this check in
>> Emacs, or should I just resort to making some best effort judgement call
>> here?
>>
>> Thanks,
>> Theo
>>
>> diff --git a/lisp/progmodes/csharp-mode.el b/lisp/progmodes/csharp-mode.el
>> index 7bf57bcbe21..00278e18e51 100644
>> --- a/lisp/progmodes/csharp-mode.el
>> +++ b/lisp/progmodes/csharp-mode.el
>> @@ -495,9 +495,10 @@ csharp-guess-basic-syntax
>>          (unless (eq (char-after) ?{)
>>            (ignore-errors (backward-up-list 1 t t)))
>>          (save-excursion
>> -         ;; 'new' should be part of the line
>> +         ;; 'new' should be part of the line, but should not trigger if
>> +         ;; statement has already ended, like for 'var x = new X();'.
>>            (goto-char (c-point 'iopl))
>> -         (looking-at ".*new.*")))
>> +         (looking-at ".*new.*[^;]$")))
>>        ;; Line should not already be terminated
>>        (save-excursion
>>          (goto-char (c-point 'eopl))
>>
> 
> 
> 






^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-16 17:01       ` Dmitry Gutov
@ 2024-03-16 17:25         ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 0 replies; 13+ messages in thread
From: Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-03-16 17:25 UTC (permalink / raw)
  To: Dmitry Gutov; +Cc: Alan Mackenzie, Eli Zaretskii, casouri, carlos, 69571

[-- Attachment #1: Type: text/html, Size: 6661 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-10 19:21   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-03-16 11:19     ` Eli Zaretskii
@ 2024-03-16 19:45     ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-03-16 20:11       ` Eli Zaretskii
  1 sibling, 1 reply; 13+ messages in thread
From: Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-03-16 19:45 UTC (permalink / raw)
  To: Eli Zaretskii, Carlos, Yuan Fu; +Cc: 69571


>>> Date: Tue, 5 Mar 2024 22:09:51 +0100
>>> From: Carlos <carlos@cvkm.cz>

>>> 
>>> If you insert a line between line [1] and the one having the opening
>>> brace the problem goes away.
>>
>> Theo and Yuan, could you please look into this?



Fixed in c890622e1a9ae6f2ab5d083ca8b668c9228c52fa on emacs-29.

Theo





^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-16 19:45     ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2024-03-16 20:11       ` Eli Zaretskii
  0 siblings, 0 replies; 13+ messages in thread
From: Eli Zaretskii @ 2024-03-16 20:11 UTC (permalink / raw)
  To: Theodor Thornhill; +Cc: 69571-done, carlos, casouri

> From: Theodor Thornhill <theo@thornhill.no>
> Cc: 69571@debbugs.gnu.org
> Date: Sat, 16 Mar 2024 20:45:36 +0100
> 
> 
> >>> Date: Tue, 5 Mar 2024 22:09:51 +0100
> >>> From: Carlos <carlos@cvkm.cz>
> 
> >>> 
> >>> If you insert a line between line [1] and the one having the opening
> >>> brace the problem goes away.
> >>
> >> Theo and Yuan, could you please look into this?
> 
> 
> 
> Fixed in c890622e1a9ae6f2ab5d083ca8b668c9228c52fa on emacs-29.

Thanks!





^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-05 21:09 bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new" Carlos
  2024-03-09  8:38 ` Eli Zaretskii
@ 2024-03-30 12:15 ` Mattias Engdegård
  2024-03-30 12:30   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-03-31  8:57   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 2 replies; 13+ messages in thread
From: Mattias Engdegård @ 2024-03-30 12:15 UTC (permalink / raw)
  To: Theodor Thornhill; +Cc: Eli Zaretskii, Carlos, 69571

> -         (looking-at ".*new.*")))
> +         (looking-at "^[^//]*new[^//]*;$")))


That regexp doesn't look right: [^//] doesn't mean "no occurrence of double-slash" but is just the same as [^/].






^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-30 12:15 ` Mattias Engdegård
@ 2024-03-30 12:30   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-03-31  8:57   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 0 replies; 13+ messages in thread
From: Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-03-30 12:30 UTC (permalink / raw)
  To: Mattias Engdegård; +Cc: Eli Zaretskii, Carlos, 69571

[-- Attachment #1: Type: text/html, Size: 733 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-30 12:15 ` Mattias Engdegård
  2024-03-30 12:30   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2024-03-31  8:57   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-03-31  9:42     ` Mattias Engdegård
  1 sibling, 1 reply; 13+ messages in thread
From: Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-03-31  8:57 UTC (permalink / raw)
  To: Mattias Engdegård; +Cc: Eli Zaretskii, Carlos, 69571

Mattias Engdegård <mattias.engdegard@gmail.com> writes:

>> -         (looking-at ".*new.*")))
>> +         (looking-at "^[^//]*new[^//]*;$")))
>
>
> That regexp doesn't look right: [^//] doesn't mean "no occurrence of double-slash" but is just the same as [^/].

Pushed a new commit doing more shenanigans here, along with more tests.

Thanks
theo





^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new"
  2024-03-31  8:57   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2024-03-31  9:42     ` Mattias Engdegård
  0 siblings, 0 replies; 13+ messages in thread
From: Mattias Engdegård @ 2024-03-31  9:42 UTC (permalink / raw)
  To: Theodor Thornhill; +Cc: Eli Zaretskii, Carlos, 69571

31 mars 2024 kl. 10.57 skrev Theodor Thornhill <theo@thornhill.no>:

> Pushed a new commit doing more shenanigans here, along with more tests.

Thanks, no more regexp complaints at least!






^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2024-03-31  9:42 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-05 21:09 bug#69571: 29.2; csharp-mode indentation: Misaligned closing brace in blocks starting below "new" Carlos
2024-03-09  8:38 ` Eli Zaretskii
2024-03-09  9:13   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-03-10 19:21   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-03-16 11:19     ` Eli Zaretskii
2024-03-16 17:01       ` Dmitry Gutov
2024-03-16 17:25         ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-03-16 19:45     ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-03-16 20:11       ` Eli Zaretskii
2024-03-30 12:15 ` Mattias Engdegård
2024-03-30 12:30   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-03-31  8:57   ` Theodor Thornhill via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-03-31  9:42     ` Mattias Engdegård

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).