Style fixes. - sam - An updated version of the sam text editor. | |
git clone git://vernunftzentrum.de/sam.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 47566bf19ef592eff4ec8c945781618e67471d51 | |
parent 814cd7aa9b81632eba0013516923997fc6e994b4 | |
Author: Rob King <[email protected]> | |
Date: Fri, 9 Sep 2016 09:49:49 -0500 | |
Style fixes. | |
Diffstat: | |
samterm/main.c | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/samterm/main.c b/samterm/main.c | |
@@ -722,9 +722,9 @@ cmddel(Flayer *l, long a, Text *t) | |
l->p1 = a; | |
if (l->p1 != l->p0){ | |
- if(typestart<=l->p0 && l->p1<=typeend){ | |
+ if(typestart <= l->p0 && l->p1 <= typeend){ | |
t->lock++; /* to call hcut */ | |
- hcut(t->tag, l->p0, l->p1-l->p0); | |
+ hcut(t->tag, l->p0, l->p1 - l->p0); | |
/* hcheck is local because we know rasp is contiguous */ | |
hcheck(t->tag); | |
}else{ |