1
0
Fork 0
mirror of https://github.com/vbatts/bvi.git synced 2025-08-02 15:40:28 +00:00

git ls-files | xargs sed -i 's/[ \t]*$//'

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2025-03-02 10:29:56 -05:00
parent 5ab3ef5609
commit 92a88a4b4b
18 changed files with 64 additions and 64 deletions

12
set.c
View file

@ -9,13 +9,13 @@
* 1999-07-02 V 1.2.0 beta
* 1999-08-14 V 1.2.0 final
* 2000-07-15 V 1.3.0 final
* 2001-10-10 V 1.3.1
* 2001-10-10 V 1.3.1
* 2003-07-03 V 1.3.2
* 2010-06-02 V 1.2.4
* 2014-09-30 V 1.4.0
* 2019-01-22 V 1.4.1
*
* Copyright 1996-2019 by Gerhard Buergmann
* Copyright 1996-2019 by Gerhard Buergmann
* gerhard@puon.at
*
* This program is free software; you can redistribute it and/or modify it
@ -289,13 +289,13 @@ do_logic(mode, str)
b = a >> 8;
a |= b;
break;
case RROTATE:
case RROTATE:
b = a << 8;
a |= b;
a >>= value;
a >>= value;
/*
b = a << (8 - value);
a >>= value;
a >>= value;
a |= b;
*/
break;
@ -303,7 +303,7 @@ do_logic(mode, str)
break;
case OR: a |= value;
break;
case XOR:
case XOR:
case NOT: a ^= value;
break;
case NEG: a ^= value;