about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2024-01-13T23·57+0100
committerDaniel Mendler <mail@daniel-mendler.de>2024-01-14T00·07+0100
commitc033fc00f34f5b638cf8971a0661de61391786ef (patch)
treecb7dff74cb83fc1065d03d887ec3afadd0527234
parentf3c03ebbc3bb57906209e3c396ac50177e8c577c (diff)
New customization group exwm-debug
The group was already used, but the docstring was missing.

* exwm-core.el (exwm-debug): New customization group.
-rw-r--r--exwm-core.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/exwm-core.el b/exwm-core.el
index 6683c77120..d159592fc5 100644
--- a/exwm-core.el
+++ b/exwm-core.el
@@ -33,6 +33,10 @@
 (require 'xcb-ewmh)
 (require 'xcb-debug)
 
+(defgroup exwm-debug nil
+  "Debugging."
+  :group 'exwm)
+
 (defcustom exwm-debug-log-time-function #'exwm-debug-log-uptime
   "Function used for generating timestamps in `exwm-debug' logs.
 
@@ -40,7 +44,6 @@ Here are some predefined candidates:
 `exwm-debug-log-uptime': Display the uptime of this Emacs instance.
 `exwm-debug-log-time': Display time of day.
 `nil': Disable timestamp."
-  :group 'exwm-debug
   :type `(choice (const :tag "Emacs uptime" ,#'exwm-debug-log-uptime)
                  (const :tag "Time of day" ,#'exwm-debug-log-time)
                  (const :tag "Off" nil)