diff --git a/CHANGES.rst b/CHANGES.rst
index e8a99c4bc..e7b23fa00 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -6,6 +6,7 @@ CHANGES
New Builtins
++++++++++++
+* ``CheckAbort``
* ``SetEnvironment``
Compatibility
@@ -22,9 +23,9 @@ Operator precedence has been gone over and is picked up in tables from the Mathi
Performance
-----------
-* `Blank*` patterns without arguments are now singletons.
+* ``Blank*`` patterns without arguments are now singletons.
+
-
7.0.0
-----
diff --git a/mathics/builtin/procedural.py b/mathics/builtin/procedural.py
index 9d1eef551..d033ad90d 100644
--- a/mathics/builtin/procedural.py
+++ b/mathics/builtin/procedural.py
@@ -152,6 +152,36 @@ def eval_with_form_and_fn(self, expr, form, f, evaluation):
return ret
+class CheckAbort(Builtin):
+ """
+