convert ASCII TABs to ASCII SPACEs

Converted all ASCII tabs to ASCII spaces using a 8 character
tab stop, for all files, except for all Makefiles (plus rpm.mk).
The `git diff -w` reports no changes.
This commit is contained in:
Landon Curt Noll
2024-07-11 22:03:52 -07:00
parent fe9cefe6ef
commit db77e29a23
631 changed files with 90607 additions and 90600 deletions

View File

@@ -6,14 +6,14 @@ SYNOPSIS
a = {e_1, e_2, ...[ { ... } ] }
TYPES
a lvalue, current value a structure in { } case
a lvalue, current value a structure in { } case
b expression
b expression
e_0, e_1, ... expressions, blanks, or initializer lists
e_0, e_1, ... expressions, blanks, or initializer lists
return lvalue (a)
return lvalue (a)
DESCRIPTION
Here an lvalue is either a simple variable specified by an identifier,
@@ -22,7 +22,7 @@ DESCRIPTION
An initializer list is a comma-separated list enclosed in braces as in
{e_0, e_1, ... }
{e_0, e_1, ... }
where each e_i is an expression, blank or initializer list.
@@ -44,7 +44,7 @@ DESCRIPTION
In simple assignments, = associates from right to left so that, for
example,
a = b = c
a = b = c
has the effect of a = (b = c) and results in assigning the value of c
to both a and b. The expression (a = b) = c is acceptable, but has the
@@ -54,7 +54,7 @@ DESCRIPTION
In initializations, = { ...} associates from left to right so that,
for example,
a = {e_0, ... } = {v_0, ...}
a = {e_0, ... } = {v_0, ...}
first assigns e_0, ... to the elements of a, and then assigns v_0, ...
to the result.
@@ -66,10 +66,10 @@ DESCRIPTION
that of A[0] = A[1].
If, in execution of a = b, a is changed by the evaluation of b, the
value of b may be stored in an unintended or inaccessible location. For
value of b may be stored in an unintended or inaccessible location. For
example,
mat A[2]= {1,2};
A[0] = (A = 3);
mat A[2]= {1,2};
A[0] = (A = 3);
results in the value 3 being stored not only as the new value for A
but also at the now unnamed location earlier used for A[0].
@@ -87,8 +87,8 @@ EXAMPLE
; print A[1]
list (2 elements, 2 nonzero):
[[0]] = 6
[[1]] = 3
[[0]] = 6
[[1]] = 3
; print A[2]
obj point {7, 5}
@@ -104,8 +104,8 @@ EXAMPLE
print A[1]
list (2 elements, 2 nonzero):
[[0]] = 2
[[1]] = 3
[[0]] = 2
[[1]] = 3
LIMITS
none
@@ -124,7 +124,7 @@ SEE ALSO
##
## Calc is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
## Public License for more details.
##
## A copy of version 2.1 of the GNU Lesser General Public License is
@@ -132,8 +132,8 @@ SEE ALSO
## received a copy with calc; if not, write to Free Software Foundation, Inc.
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
##
## Under source code control: 1995/05/11 21:03:23
## File existed as early as: 1995
## Under source code control: 1995/05/11 21:03:23
## File existed as early as: 1995
##
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/