Release calc version 2.11.2t1

This commit is contained in:
Landon Curt Noll
2000-12-15 07:34:07 -08:00
parent 5e098d2adf
commit 296aa50ac7
52 changed files with 1670 additions and 4777 deletions

12
input.c
View File

@@ -1,5 +1,5 @@
/*
* input - nested input source file reader
* input - nsted input source file reader
*
* Copyright (C) 1999 David I. Bell
*
@@ -17,8 +17,8 @@
* received a copy with calc; if not, write to Free Software Foundation, Inc.
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*
* @(#) $Revision: 29.3 $
* @(#) $Id: input.c,v 29.3 2000/07/17 15:35:49 chongo Exp $
* @(#) $Revision: 29.2 $
* @(#) $Id: input.c,v 29.2 2000/06/07 14:02:13 chongo Exp $
* @(#) $Source: /usr/local/src/cmd/calc/RCS/input.c,v $
*
* Under source code control: 1990/02/15 01:48:16
@@ -140,7 +140,7 @@ opensearchfile(char *name, char *pathlist, char *extension, int rd_once)
* /
* name
* .
* extension
* extenstion
* \0
* guard byte
*/
@@ -261,7 +261,7 @@ homeexpand(char *name)
char *home2; /* fullpath of the home directory */
char *fullpath; /* the malloced expanded path */
char *after; /* after the ~user or ~ */
char *username; /* extracted username */
char *username; /* extratced username */
/* firewall */
if (name[0] != HOMECHAR)
@@ -873,7 +873,7 @@ findfreeread(void)
}
maxreadset += READSET_ALLOC;
/* return the first newly allocated free entry */
/* return the furst newly allocated free entry */
return maxreadset-READSET_ALLOC;
}