diff options
Diffstat (limited to 'doc/user/char.skb')
-rw-r--r-- | doc/user/char.skb | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/doc/user/char.skb b/doc/user/char.skb index b2f94e2..c56c455 100644 --- a/doc/user/char.skb +++ b/doc/user/char.skb @@ -79,21 +79,20 @@ of the capacity of the targeted format.]) (p [Here is the list of recognized symbols:]) -(center - (apply table - :width *prgm-width* - (tr :class 'api-symbol-prototype (th "Symbol name") (th "Rendering")) - (map (lambda (s) - (tr :bg *prgm-skribe-color* - (td :align 'left s) - (td :align 'left (symbol s)))) - (sort (let ((t (make-hashtable))) - (for-each (lambda (e) - (for-each (lambda (s) - (hashtable-put! t (car s) (car s))) - (engine-symbol-table e))) - *api-engines*) - (hashtable->list t)) - string<?)))))) +(apply ctrtable + :width *prgm-width* + (tr :class 'api-symbol-prototype (th "Symbol name") (th "Rendering")) + (map (lambda (s) + (tr :bg *prgm-skribe-color* + (td :align 'left s) + (td :align 'left (symbol s)))) + (sort (let ((t (make-hashtable))) + (for-each (lambda (e) + (for-each (lambda (s) + (hashtable-put! t (car s) (car s))) + (engine-symbol-table e))) + *api-engines*) + (hashtable->list t)) + string<?))))) |