diff options
Diffstat (limited to 'src/apoint.c')
-rw-r--r-- | src/apoint.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/apoint.c b/src/apoint.c index f99b94d..9700c1b 100644 --- a/src/apoint.c +++ b/src/apoint.c @@ -103,15 +103,15 @@ apoint_hilt_set (int highlighted) } void -apoint_hilt_decrease (void) +apoint_hilt_decrease (int n) { - hilt--; + hilt -= n; } void -apoint_hilt_increase (void) +apoint_hilt_increase (int n) { - hilt++; + hilt += n; } /* Return which appointment is highlighted. */ |