diff --git a/A-gent.cabal b/A-gent.cabal
--- a/A-gent.cabal
+++ b/A-gent.cabal
@@ -9,7 +9,7 @@
 build-type: Simple
                                               
 name: A-gent
-version: 0.11.0.4
+version: 0.11.0.5
 
 synopsis: Polite & well educated LLM agent with excellent manners that always behaves well
 description: Polite and well educated LLM agent with excellent manners that always behaves well
diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for Λ-gent
 
+## 0.11.0.5  -- 2026-03-08
+
+* `ENTER` only triggers if something is typed.
+
 ## 0.11.0.4  -- 2026-03-08
 
 * Fixed the `BUG` when trying to print emojii's ('🍎', '🍏', …):
diff --git a/src/Agent/IO/Restricted.hs b/src/Agent/IO/Restricted.hs
--- a/src/Agent/IO/Restricted.hs
+++ b/src/Agent/IO/Restricted.hs
@@ -132,8 +132,12 @@
                   sp = [ ' ' ]
                   la = [ '\ESC', '[', 'D' ]
           '\010':[] ->
-            -- NOTE: Enter
-            pure $ (++ acs) $ reverse $ bcs
+            -- NOTE: Enter (only if something is typed)
+            case (bcs, acs) of
+              ([], []) ->
+                aux bcs acs
+              ________ ->
+                pure $ (++ acs) $ reverse $ bcs
           '\ESC':'[':'C':[] ->
             -- NOTE: Allowed escaped sequences: Arrow "->"
             case (bcs, acs) of
