[git version around 2026-Mar-09]
Consider this file `foo.texi`.
```
some long text for testing
@image{foo.texi,,,replacement text}
some long text for testing
@image{foo.texi,,,replacement text}
some long text for testing
```
The info file created with `makeinfo foo.texi` contains the following.
```
some long text for testing [replacement text] some long text for testing
[replacement text] some long text
for testing
```
Note how the first line is far too long; it seems that the length of
the replacement text in `@image` is not taken into account while
computing the line length.
Werner