diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-02 08:41:30 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-02 08:41:30 +0200 |
commit | f143260d04614ab45fe3fe505f1f2b7af2326294 (patch) | |
tree | 789d6bfcbe517ec5754a6c34ea9f8d6ccdcb7f01 /lisp/progmodes/sh-script.el | |
parent | f3c5355c6b0576521693ed8da30a5dcd7a22a04c (diff) | |
download | emacs-f143260d04614ab45fe3fe505f1f2b7af2326294.tar.gz emacs-f143260d04614ab45fe3fe505f1f2b7af2326294.tar.bz2 emacs-f143260d04614ab45fe3fe505f1f2b7af2326294.zip |
Revert "Tweak sh-script-mode indentation further"
This reverts commit 6392bc37ab3b7eb83465d9b2248d21173373ae73.
The changes led to errors throughout (bug#50320).
Diffstat (limited to 'lisp/progmodes/sh-script.el')
-rw-r--r-- | lisp/progmodes/sh-script.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 7507579d16d..201d1fd1647 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -1775,7 +1775,7 @@ Does not preserve point." (goto-char p) nil)))) (while - (progn (skip-syntax-backward ".w_'()") + (progn (skip-syntax-backward ".w_'") (or (not (zerop (skip-syntax-backward "\\"))) (when (eq ?\\ (char-before (1- (point)))) (let ((p (point))) |