Style fixes. - sam - An updated version of the sam text editor.
(HTM) git clone git://vernunftzentrum.de/sam.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit 47566bf19ef592eff4ec8c945781618e67471d51
(DIR) parent 814cd7aa9b81632eba0013516923997fc6e994b4
(HTM) Author: Rob King <jking@deadpixi.com>
Date: Fri, 9 Sep 2016 09:49:49 -0500
Style fixes.
Diffstat:
samterm/main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) 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{