GNU bug report logs -
#1320
sh-mode indentation of "case $foo in (bar)"
Previous Next
Reported by: Karl Chen <quarl <at> cs.berkeley.edu>
Date: Sun, 9 Nov 2008 21:30:02 UTC
Severity: normal
Done: Chong Yidong <cyd <at> stupidchicken.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[ resent from
http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00906.html ]
emacs -Q /tmp/case.sh
#
case x in
y)
y2
;;
(z)
z2
;;
esac
M-: (indent-region (point-min) (point-max))
Result:
#
case x in
y)
y2
;;
(z)
z2
;;
esac
Expected:
#
case x in
y)
y2
;;
(z)
z2
;;
esac
Running (sh-get-indent-info) on the y2 line includes
sh-indent-for-case-alt in the result (as expected); running
(sh-get-indent-info) on the z2 line doesn't yield
sh-indent-for-case-alt.
The "(altpattern)" syntax with leading opening parenthesis is
supported by various shells (bash, ksh, zsh).
Also, a second indentation bug: if the first line in the buffer is
the case statement, sh-mode gets even more confused and
double-indents the y2 line. This is rare though since usually the
first line is "#!"; I only noticed it while constructing this bug
report.
Tested on emacs 22.2 and emacs 2008-10-31.
This bug report was last modified 15 years and 211 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.