mirror of
https://github.com/emacs-exwm/exwm.git
synced 2024-11-27 06:48:00 +01:00
New customization group exwm-debug
The group was already used, but the docstring was missing. * exwm-core.el (exwm-debug): New customization group.
This commit is contained in:
parent
f3c03ebbc3
commit
c033fc00f3
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue