On Tue, Jan 11 2022 at 05:14:37 +0000, Werner LEMBERG <[email protected]>
wrote:
AFAIK, the problematic error message is the following:
.../Documentation/out-www/it/it/usage/updating.texi:14: This command
can appear only outside of any environment, not in environment
@raggedright.
This means that somewhere before line 14 of `updating.texi` – most
certainly in another file – the `raggedright` environment wasn't
properly closed.
We don't use the `raggedright` environment directly. Instead, we use
the `@raggedRight` and `@endRaggedRight` macros.
Note that `@endRaggedRight` isn't normally used directly either;
instead, they are part of the `@endmorerefs` and `@endpredefined`
macros.
My conclusion: In a file included before `updating.texi`, you are
missing either `@endmorerefs` or `@endpredefined`.
You guessed it right.
I thought texinfo would have pointed me to the right file.
Here's the fix:
$ git diff
diff --git a/Documentation/it/usage/running.itely
b/Documentation/it/usage/running.itely
index 1c6e1f6e62..518e62a1c7 100644
--- a/Documentation/it/usage/running.itely
+++ b/Documentation/it/usage/running.itely
@@ -1608,3 +1608,4 @@ naturale (quando le note di @code{\voiceThree}
sono più alte di quelle di
@rlearning{Esempio musicale},
@ruser{Polifonia su un solo rigo},
@ruser{Risoluzione delle collisioni}.
+@endmorerefs
Thanks
Federico