From 5acf82b217552b24daa250af648c4fd821c91f28 Mon Sep 17 00:00:00 2001 From: shipmints Date: Fri, 26 Jul 2024 09:09:02 -0400 Subject: [PATCH] Corrected typos in docstrings for mode-line indicators --- mode-line-debug.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mode-line-debug.el b/mode-line-debug.el index 0d6dede..3778fb4 100644 --- a/mode-line-debug.el +++ b/mode-line-debug.el @@ -54,7 +54,7 @@ modes. The inserted character can be used to toggle the state of (defcustom mode-line-debug-on-error-indicators '("e" . "e") "Strings indicating the state of `debug-on-error' in the mode-line. -The car is used when `debug-on-error' is off, the cdr when it is +The car is used when `debug-on-error' is on, the cdr when it is off. For the off state a string consisting of one space makes most sense; this avoids cluttering the mode-line but still allows clicking before the list of modes to toggle `debug-on-error'. @@ -68,7 +68,7 @@ to have any effect." (defcustom mode-line-debug-on-quit-indicators '("q" . "q") "Strings indicating the state of `debug-on-quit' in the mode-line. -The car is used when `debug-on-quit' is off, the cdr when it is +The car is used when `debug-on-quit' is on, the cdr when it is off. For the off state a string consisting of one space makes most sense; this avoids cluttering the mode-line but still allows clicking before the list of modes to toggle `debug-on-quit'. @@ -82,7 +82,7 @@ to have any effect." (defcustom mode-line-debug-on-signal-indicators '("s" . "s") "Strings indicating the state of `debug-on-signal' in the mode-line. -The car is used when `debug-on-signal' is off, the cdr when it is +The car is used when `debug-on-signal' is on, the cdr when it is off. For the off state a string consisting of one space makes most sense; this avoids cluttering the mode-line but still allows clicking before the list of modes to toggle `debug-on-signal'.