[commit 2a15ed35d]
Consider this example file `foo.texi`
```
@node Top
@image{test,,,foo,}
bar
baz
@bye
```
If processed with
makeinfo `foo.texi`
and viewed with `info ./foo.info` I get the following output:
```
Up: (dir)
[foo]
bar
baz
```
I see two problems.
(1) The empty line after the image is missing.
(2) There is no indentation of `bar`. This is most likely a consequence
of (1).
For me, this looks like a bug.
Werner
