about summary refs log tree commit diff stats
path: root/src/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/command.c b/src/command.c
index 90a436a9..ddc4fa7d 100644
--- a/src/command.c
+++ b/src/command.c
@@ -753,6 +753,13 @@ _cmd_set_remind(const char * const inp, struct cmd_help_t help)
         gint period = atoi(period_str);
 
         prefs_set_remind(period);
+        if (period == 0) {
+            cons_show("Message reminders disabled.");
+        } else if (period == 1) {
+            cons_show("Message reminder period set to 1 second.");
+        } else {
+            cons_show("Message reminder period set to %d seconds.", period);
+        }
     }
 
     return TRUE;