From 6abb465362a1f27fe7a9a95729bde8bfe55a9e54 Mon Sep 17 00:00:00 2001 From: Kevin Atkinson Date: Sun, 28 Feb 2021 03:28:18 -0500 Subject: [PATCH] Checkpoint. --- manual/aspell.texi | 7 +++++++ prog/aspell.cpp | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/manual/aspell.texi b/manual/aspell.texi index 0802c5e..20f344e 100644 --- a/manual/aspell.texi +++ b/manual/aspell.texi @@ -3576,6 +3576,13 @@ increase. @node ChangeLog @appendix ChangeLog +@heading Changes from 0.60.7 to 0.68.9 +@itemize @bullet +@item +Exit with a status code of 63 when an interactive spell check +session is aborted. +@end itemize + @heading Changes from 0.60.7 to 0.68.8 (October 12, 2019) @itemize @bullet @item diff --git a/prog/aspell.cpp b/prog/aspell.cpp index 850c946..9953d31 100644 --- a/prog/aspell.cpp +++ b/prog/aspell.cpp @@ -1209,7 +1209,7 @@ void check() remove_file(new_name); - return; + exit(63); } }