; * eat.el (eat-term-color-.*): Fix docstring

This commit is contained in:
Akib Azmain Turja 2022-12-08 17:36:54 +06:00
parent 980265ac05
commit 2207109d24
No known key found for this signature in database
GPG key ID: 5535FCF54D88616B

8
eat.el
View file

@ -483,9 +483,11 @@ If your process is choking on big inputs, try lowering the value."
`((t :foreground ,color :background ,color))
(format "Face used to render text with %i%s color of 256 color\
palette."
face-counter (or (nth (% face-counter 10)
'(nil "st" "nd" "rd"))
"th"))
face-counter
(or (and (not (<= 11 (% face-counter 100) 13))
(nth (% face-counter 10)
'(nil "st" "nd" "rd")))
"th"))
:group 'eat-term))
(cl-incf face-counter)))