summary refs log tree commit diff stats
path: root/HACKING
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-08 19:56:29 +0200
committerhut <hut@lavabit.com>2010-04-08 19:56:29 +0200
commit4537ca72633b0c60e6fd4700adb6b96c0a823c7b (patch)
tree9b632e2ef4fedea854a1e4199073584385d93647 /HACKING
parent21da5a5ffbe325930ef2c01b016ce68c8cff6eca (diff)
downloadranger-4537ca72633b0c60e6fd4700adb6b96c0a823c7b.tar.gz
tc_direction: fixed
maximum=X means that the maximum value is set to X-1.
Works for lists:
d.move(maximum=len(lst))

is this counter intuitive?
Diffstat (limited to 'HACKING')
0 files changed, 0 insertions, 0 deletions
href='#n5'>5
6
7
8
9
10
11


                           

                    
                                                                                 


         
                                                                               
       
#!/usr/bin/env zsh
# Build a specific example.

if [[ $1 == 'ex'* ]]
then
  CFLAGS=-g subx translate examples/$1.subx -o examples/`echo $1 |sed 's/\..*//'`
  exit $?
fi

CFLAGS=-g subx translate *.subx apps/$1.subx  -o apps/`echo $1 |sed 's/\..*//'`
exit $?