Skip to content

Commit d3f6ead

Browse files
committed
Change the default value for --max-iterations to 4
1 parent 0ac604f commit d3f6ead

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
Version 0.7.0 (2024-XX-XX)
1+
Version 0.7.0 (2025-XX-XX)
22
-----
33

44
The main part of ClutTeX is now written in Standard ML, and compiled to Lua by LunarML.
55

66
Changes:
77

88
* Some behavior of ClutTeX can now be customized with a configuration file: `temporary-directory` and `color` keys are available.
9+
* The default value for `--max-iterations` is now 4 (previous: 3).
910

1011
Version 0.6 (2023-11-18)
1112
-----

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Command-line Options
5858
Cannot be used with `--output-directory`.
5959
* `--max-iterations=N`
6060
Maximum number of running TeX to resolve cross-references.
61-
\[default: 3\]
61+
\[default: 4\]
6262
* `--[no-]change-directory`
6363
Change the current working directory to the output directory when running TeX.
6464
* `--watch[=ENGINE]`

doc/cluttex-ja.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ \section{コマンドライン}
8989
\texttt{--output-directory}との併用はできない。
9090
\item[\texttt{--max-iterations=\metavar{N}}]
9191
相互参照の解決等のために最大何回処理を行うかを指定する。
92-
デフォルト:3
92+
デフォルト:4
9393
\item[\texttt{--watch[=\metavar{ENGINE}]}]
9494
入力ファイルを監視する。
9595
別途、\texttt{fswatch}プログラムまたは\texttt{inotifywait}プログラムが必要となる場合がある。

doc/cluttex.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Clean intermediate files before running TeX.
4141
Cannot be used with --output-directory.
4242
.It Fl \-max-iterations Ns = Ns Ar N
4343
Maximum number of running TeX to resolve cross-references.
44-
[default: 3]
44+
[default: 4]
4545
.It Fl \-start-with-draft
4646
Start with draft mode.
4747
.It Fl \-change-directory , Fl \-no-change-directory

doc/cluttex.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ \section{Command-line usage}
6666
Cannot be used in conjunction with \texttt{--output-directory}.
6767
\item[\texttt{--max-iterations=\metavar{N}}]
6868
Set maximum number of run, for resolving cross-references and etc.
69-
Default: 3
69+
Default: 4
7070
\item[\texttt{--watch[=\metavar{ENGINE}]}]
7171
Watch input files for change.
7272
May need an external program to be available.

src/main.sml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ fun main () = let val (options, rest) = HandleOptions.parse (AppOptions.init, Co
895895
, engine_executable = #engine_executable options
896896
, output = output
897897
, fresh = #fresh options
898-
, max_iterations = Option.getOpt (#max_iterations options, 3)
898+
, max_iterations = Option.getOpt (#max_iterations options, 4)
899899
, start_with_draft = #start_with_draft options
900900
, watch = #watch options
901901
, change_directory = Option.getOpt (#change_directory options, false)

0 commit comments

Comments
 (0)