Overview
| Comment: | No parameter,state or input conversion in txt files |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
82254ec333eb310589c3c376d9f52b7d |
| User & Date: | gawthrop@users.sourceforge.net on 2000-10-17 16:35:03.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-10-20
| ||
| 13:16:29 | Reformated check-in: 1439c26fb1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2000-10-17
| ||
| 16:35:03 | No parameter,state or input conversion in txt files check-in: 82254ec333 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 13:45:18 | split up state and input - different defaults check-in: 701185f425 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_header
from [18c2c46564]
to [d4601e0783].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.6 2000/10/17 08:37:23 peterg ## Included logic rep ## ## Revision 1.5 2000/10/14 09:12:14 peterg ## No dies arguments and output itself ## ## Revision 1.4 2000/10/14 06:49:31 peterg | > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.7 2000/10/17 09:53:20 peterg ## Fixed logic rep ## ## Revision 1.6 2000/10/17 08:37:23 peterg ## Included logic rep ## ## Revision 1.5 2000/10/14 09:12:14 peterg ## No dies arguments and output itself ## ## Revision 1.4 2000/10/14 06:49:31 peterg |
| ︙ | ︙ | |||
71 72 73 74 75 76 77 |
states=yes;
inputs=yes;
parameters=yes;
output=mtty
args=$eqnargs
;;
input)
| | | | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
states=yes;
inputs=yes;
parameters=yes;
output=mtty
args=$eqnargs
;;
input)
states=yes;
inputs=no;
parameters=yes;
output=mttu
args=$inputeqnargs
;;
logic)
states=no;
inputs=no;
parameters=yes;
|
| ︙ | ︙ | |||
159 160 161 162 163 164 165 |
Lc='##';
Rc='';
Lb='(';
Rb=')';
function=""
declaration=""
start=''
| | > > | 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
Lc='##';
Rc='';
Lb='(';
Rb=')';
function=""
declaration=""
start=''
parameters=no
states=no
inputs=no
;;
*)
echo Language $language not supported - sorry; exit 1
esac
# Header information
|
| ︙ | ︙ |