about summary refs log tree commit diff stats
path: root/tools/update_html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-06-11 21:36:12 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-06-11 21:36:12 -0700
commit0dc4f9c62bf26b373284e7d27aa41c500c8bd16a (patch)
tree4119cdfd28b77cb2b15e6b3173a5c899db8801c2 /tools/update_html
parent31918612428c82652934be7b2e3ffc347e19ff2c (diff)
downloadmu-0dc4f9c62bf26b373284e7d27aa41c500c8bd16a.tar.gz
hacky bugfix: support floats in nth
Needed because we don't yet have a primitive in the shell to truncate/round
non-integers to integers.

Before:
  (nth (/ 31 10)    # we don't have float literals yet
       '(1 2 3 4))
  => NULL

..with an unpleasant abort likely later on.

Really the correct thing to do is ensure none of my primitives ever returns
NULL. Start with car/cdr.
Diffstat (limited to 'tools/update_html')
0 files changed, 0 insertions, 0 deletions
title='Blame the previous revision' href='/akspecs/ranger/blame/.travis.yml?h=v1.9.3&id=bedfed3db77ecaafdb86e9e4847c7bb6ddc2563d'>^
db686679 ^
a9465fe0 ^
db686679 ^
db686679 ^
a9465fe0 ^
1
2
3
4
5
6
7
8
9
10
11
12
13