Overview
| Comment: | Put no glbs back |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9d9d8be4427d638a756efbc8f672104d |
| User & Date: | gawthrop@users.sourceforge.net on 2000-05-11 19:35:50.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-05-12
| ||
| 07:31:55 | Declare t local check-in: 20b687a8b5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2000-05-11
| ||
| 19:35:50 | Put no glbs back check-in: 9d9d8be442 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 19:35:16 | Major revisions for new paprameter passing versions check-in: 56f4d4235d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/lang_header
from [fe12473104]
to [63caba35a0].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh # Generates function header for a computer language # PJ Gawthrop May 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.10 2000/04/18 11:14:32 peterg ## - parameters option ## ## Revision 1.9 2000/04/08 10:23:38 peterg ## Added -noglobal option ## ## Revision 1.8 1999/02/16 04:14:53 peterg | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/sh # Generates function header for a computer language # PJ Gawthrop May 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.11 2000/05/11 08:03:02 peterg ## Remove the mtt no global stuff ## ## Revision 1.10 2000/04/18 11:14:32 peterg ## - parameters option ## ## Revision 1.9 2000/04/08 10:23:38 peterg ## Added -noglobal option ## ## Revision 1.8 1999/02/16 04:14:53 peterg |
| ︙ | ︙ | |||
191 192 193 194 195 196 197 |
$extras
EOF
fi
# Globals
if [ -z "$noglobals" ]; then
sympar2global_txt2lang $1 $language
| | | | | | | 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 |
$extras
EOF
fi
# Globals
if [ -z "$noglobals" ]; then
sympar2global_txt2lang $1 $language
else
cat<<EOF
global ...
mtt_no_globals ;
EOF
fi
# Explicit parameters
if [ -n "$parameters" ]; then
sympar2par_txt2m $1
fi
|
| ︙ | ︙ |