mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-30 10:11:47 -07:00
(hanoi-internal): Don't use oddp.
This commit is contained in:
parent
f24fef2f20
commit
cbf48ec9a2
1 changed files with 2 additions and 1 deletions
|
|
@ -268,7 +268,8 @@ BITS must be of length nrings. Start at START-TIME."
|
|||
(make-string (1- radius) (if vert ?\- ?\|))
|
||||
(if vert ">" "v"))
|
||||
for face =
|
||||
(if (oddp n) hanoi-odd-ring-face hanoi-even-ring-face)
|
||||
(if (eq (logand n 1) 1) ; oddp would require cl at runtime
|
||||
hanoi-odd-ring-face hanoi-even-ring-face)
|
||||
do (hanoi-put-face 0 (length str) face str)
|
||||
collect (cons str diameter)))
|
||||
;; Disable display of line and column numbers, for speed.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue