Overview
Comment: | Remove the mtt no global stuff |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
639320e35937a1886793dd8eafd15c2b |
User & Date: | gawthrop@users.sourceforge.net on 2000-05-11 08:03:02 |
Other Links: | branch diff | manifest | tags |
Context
2000-05-11
| ||
08:03:28 | Fixed -noglobals bug. check-in: 770a60cb33 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:03:02 | Remove the mtt no global stuff check-in: 639320e359 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-05-10
| ||
18:33:25 | Use smxa and smxax in place of smx check-in: 4afd334064 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/lang_header from [fa491f89c7] to [fe12473104].
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.9 2000/04/08 10:23:38 peterg ## Added -noglobal option ## ## Revision 1.8 1999/02/16 04:14:53 peterg ## Small change to modeline generation ## ## Revision 1.7 1999/01/20 22:19:21 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.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 ## Small change to modeline generation ## ## Revision 1.7 1999/01/20 22:19:21 peterg |
︙ | ︙ | |||
36 37 38 39 40 41 42 | ## Initial revision ## ############################################################### # Args while [ -n "`echo $1 | grep '^-'`" ]; do case $1 in | | | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | ## Initial revision ## ############################################################### # Args while [ -n "`echo $1 | grep '^-'`" ]; do case $1 in -noglobals) noglobals=noglobals; ;; -parameters) parameters=parameters; ;; *) echo $1 is an unknown option exit;; |
︙ | ︙ | |||
186 187 188 189 190 191 192 | cat <<EOF $Lc Extra bits here $Rc $extras EOF fi # Globals | | | | | | < | | 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | cat <<EOF $Lc Extra bits here $Rc $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 |
︙ | ︙ |