Support symbols with special characters in configuration group keys
This commit is contained in:
parent
670d4c73ca
commit
d28afb72db
1 changed files with 5 additions and 1 deletions
|
@ -90,7 +90,11 @@
|
|||
"\n}\n")))
|
||||
|
||||
(define (format-rofi-theme theme)
|
||||
(let ((keys (map object->string (butlast theme 1)))
|
||||
(let ((keys (map (lambda (s)
|
||||
(if (symbol? s)
|
||||
(symbol->string s)
|
||||
(object->string s)))
|
||||
(butlast theme 1)))
|
||||
(values (car (list-tail theme (- (length theme) 1)))))
|
||||
(string-append (string-join keys ", ")
|
||||
" {\n "
|
||||
|
|
Loading…
Reference in a new issue