mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 22:40:51 -08:00
of here-doc that immediately follows a comment. * .bzrignore: Ignore globals.h and related stamp. * test/indent/shell.sh: * test/indent/shell.rc: New files.
30 lines
353 B
Bash
Executable file
30 lines
353 B
Bash
Executable file
#!/bin/rc
|
|
|
|
if (foo) {
|
|
echo 1
|
|
}
|
|
if not {
|
|
echo 2
|
|
}
|
|
|
|
if (foo)
|
|
echo 3 # KNOWN INDENT BUG
|
|
if not
|
|
echo 4 # KNOWN INDENT BUG
|
|
|
|
switch ($a) {
|
|
case 3
|
|
echo 4
|
|
case 5
|
|
echo 7
|
|
for (i in a b c) {
|
|
echo $i
|
|
}
|
|
for (i in a b c)
|
|
echo "$i" # KNOWN INDENT BUG
|
|
echo titi
|
|
|
|
case *
|
|
echo other
|
|
}
|
|
|