bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#27306: Regression: Emacs Lisp Indentation


From: Alexander Shukaev
Subject: bug#27306: Regression: Emacs Lisp Indentation
Date: Sat, 10 Jun 2017 14:59:01 +0200

Hey,

In Emacs 25 series, the following snippet is indented as follows

  (user-error "Unexpected initialization file: `%s'
Expected initialization file: `%s'"
              (abbreviate-file-name user-init-file)
              (abbreviate-file-name this-init-file))

In Emacs 26 series, a call to `indent-region' changes the above indentation to

  (user-error "Unexpected initialization file: `%s'
Expected initialization file: `%s'"
   (abbreviate-file-name user-init-file)
   (abbreviate-file-name this-init-file))

which appears wrong to me.  Please, take a look at this.  Thank you.

Kind regards,
Alexander





reply via email to

[Prev in Thread] Current Thread [Next in Thread]