Use non-breaking spaces for calendar.
This commit is contained in:
parent
874750e483
commit
a038a97223
2 changed files with 7 additions and 7 deletions
|
@ -104,14 +104,14 @@
|
|||
(if e
|
||||
(if (member 'existing (cadr e))
|
||||
(if (member 'suspended (cadr e))
|
||||
(ansi-string #:bgdarkgrey "__\x1b[0m") ; Suspended
|
||||
(ansi-string #:bgdarkgrey "\xc2\xa0\xc2\xa0\x1b[0m") ; Suspended
|
||||
(if (member 'destroyed (cadr e))
|
||||
(ansi-string #:bgblack "~~\x1b[0m") ; Destroyed
|
||||
(ansi-string #:bgblack "\xc2\xa0\xc2\xa0\x1b[0m") ; Destroyed
|
||||
(if (member 'student (cadr e))
|
||||
(ansi-string #:bgyellow "__\x1b[0m") ; Student
|
||||
(ansi-string #:bggreen "__\x1b[0m")))) ; Normal
|
||||
"__") ; Nonexistent - should not happen
|
||||
"__")) ; Nonexistent
|
||||
(ansi-string #:bgyellow "\xc2\xa0\xc2\xa0\x1b[0m") ; Student
|
||||
(ansi-string #:bggreen "\xc2\xa0\xc2\xa0\x1b[0m")))) ; Normal
|
||||
"\xc2\xa0\xc2\xa0") ; Nonexistent - should not happen
|
||||
"\xc2\xa0\xc2\xa0")) ; Nonexistent
|
||||
|
||||
;; Converts the entry into the fee
|
||||
(define (member-calendar-entry->fee e)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue