diff options
author | Daniel Mendler <mail@daniel-mendler.de> | 2024-01-13T23·57+0100 |
---|---|---|
committer | Daniel Mendler <mail@daniel-mendler.de> | 2024-01-14T00·07+0100 |
commit | c033fc00f34f5b638cf8971a0661de61391786ef (patch) | |
tree | cb7dff74cb83fc1065d03d887ec3afadd0527234 | |
parent | f3c03ebbc3bb57906209e3c396ac50177e8c577c (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.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/exwm-core.el b/exwm-core.el index 6683c771207c..d159592fc510 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) |