Powered by Apache

CVS log for OpenXM_contrib2/asir2000/parse/pvar.c

[BACK] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.24 / (download) - annotate - [select for diffs], Thu Mar 29 01:32:54 2018 UTC (6 years, 1 month ago) by noro
Branch: MAIN
CVS Tags: HEAD
Changes since 1.23: +243 -243 lines
Diff to previous 1.23 (unified)

Changed a tab to two space charaters.

Revision 1.23 / (download) - annotate - [select for diffs], Tue Feb 7 08:30:31 2017 UTC (7 years, 2 months ago) by noro
Branch: MAIN
Changes since 1.22: +3 -3 lines
Diff to previous 1.22 (unified)

Renamed reallocarray(). (reallocarray() -> asir_reallocarray())

Revision 1.22 / (download) - annotate - [select for diffs], Fri Aug 14 13:51:56 2015 UTC (8 years, 8 months ago) by fujimoto
Branch: MAIN
Changes since 1.21: +3 -9 lines
Diff to previous 1.21 (unified)

Removed unneeded 'defined(__MINGW64__)'.

Revision 1.21 / (download) - annotate - [select for diffs], Sat Aug 8 14:19:42 2015 UTC (8 years, 8 months ago) by fujimoto
Branch: MAIN
Changes since 1.20: +7 -1 lines
Diff to previous 1.20 (unified)

Added fflush(stderr) after fprintf(stderr,  ) for mingw32/mingw64.

Revision 1.20 / (download) - annotate - [select for diffs], Thu Aug 6 10:01:53 2015 UTC (8 years, 9 months ago) by fujimoto
Branch: MAIN
Changes since 1.19: +3 -3 lines
Diff to previous 1.19 (unified)

Added defined(__MINGW32__) and defined(__MINGW64__) for mingw32/mingw64.

Revision 1.19 / (download) - annotate - [select for diffs], Sat Aug 9 06:08:11 2014 UTC (9 years, 8 months ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_3_1_13b
Changes since 1.18: +2 -1 lines
Diff to previous 1.18 (unified)

*** empty log message ***

Revision 1.18 / (download) - annotate - [select for diffs], Wed Jun 21 09:46:06 2006 UTC (17 years, 10 months ago) by noro
Branch: MAIN
CVS Tags: R_1_3_1-2, RELEASE_1_2_3_12, DEB_REL_1_2_3-9
Changes since 1.17: +1 -2 lines
Diff to previous 1.17 (unified)

Removed unnecessary resetpvs() in closecurrentinput().

Revision 1.17 / (download) - annotate - [select for diffs], Sat Mar 11 23:14:53 2006 UTC (18 years, 1 month ago) by noro
Branch: MAIN
Changes since 1.16: +12 -11 lines
Diff to previous 1.16 (unified)

Corrected the linenumber in the error packet for 'undeclared functions'
error.

Revision 1.16 / (download) - annotate - [select for diffs], Wed Feb 8 02:11:19 2006 UTC (18 years, 3 months ago) by noro
Branch: MAIN
CVS Tags: KNOPPIX_2006
Changes since 1.15: +4 -3 lines
Diff to previous 1.15 (unified)

Corrected the behavior of load operation.
(CAUTION: may contain critical bugs.)

Revision 1.15 / (download) - annotate - [select for diffs], Wed Oct 26 07:33:03 2005 UTC (18 years, 6 months ago) by noro
Branch: MAIN
Changes since 1.14: +11 -5 lines
Diff to previous 1.14 (unified)

Added a new category of programming variables for representing patterns:
_X, _Y etc.

Revision 1.14 / (download) - annotate - [select for diffs], Wed Nov 12 07:01:38 2003 UTC (20 years, 5 months ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX
Changes since 1.13: +17 -6 lines
Diff to previous 1.13 (unified)

For backward compatibility, changed the treatment of argument
which is already declared as external.
Such an argument is bound to the external variable.

Revision 1.13 / (download) - annotate - [select for diffs], Tue May 20 06:26:29 2003 UTC (20 years, 11 months ago) by noro
Branch: MAIN
Changes since 1.12: +14 -11 lines
Diff to previous 1.12 (unified)

Cosmetic changes.

Revision 1.12 / (download) - annotate - [select for diffs], Tue May 20 06:15:01 2003 UTC (20 years, 11 months ago) by noro
Branch: MAIN
Changes since 1.11: +38 -5 lines
Diff to previous 1.11 (unified)

In a module,

1. The compilation will be stopped if a function is defined without declaration.
2. A function is regarded as global if it is not declared.
3. If a variable is declared to be local, the other local variables should
   also be decalared.

Revision 1.11 / (download) - annotate - [select for diffs], Fri May 16 09:34:50 2003 UTC (20 years, 11 months ago) by noro
Branch: MAIN
Changes since 1.10: +9 -2 lines
Diff to previous 1.10 (unified)

Removed 'globalf'.
Added 'localf'.

By default, a function is assumed to be defined outside the module.
If it is declared as localf, or already declared in the module, the
function is assumed to be local in the module.

A swith 'show_corssref' is added to ctrl() keys. If it is set to
a nonzero value, cross references are shown during loading the file.

Revision 1.10 / (download) - annotate - [select for diffs], Fri May 16 07:56:16 2003 UTC (20 years, 11 months ago) by noro
Branch: MAIN
Changes since 1.9: +24 -3 lines
Diff to previous 1.9 (unified)

Added a declaration of global user-defined function in a module.

module xxx;
...
globalf a,b,c;
...
endmodule;

In the above, a, b, c are searched in the list of user-defined functions,
which are defined outside modules.

Revision 1.9 / (download) - annotate - [select for diffs], Wed May 14 09:18:38 2003 UTC (20 years, 11 months ago) by noro
Branch: MAIN
Changes since 1.8: +18 -2 lines
Diff to previous 1.8 (unified)

Changed the sytax of module definition:

module name;
...
...
endmodule;

In a module, a variable appearing outside functions must be declared
as an extern or a static variable.

Revision 1.8 / (download) - annotate - [select for diffs], Wed May 14 07:08:48 2003 UTC (20 years, 11 months ago) by noro
Branch: MAIN
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (unified)

Module support in debug mode, some bug fixes.

Revision 1.7 / (download) - annotate - [select for diffs], Wed May 14 06:20:12 2003 UTC (20 years, 11 months ago) by noro
Branch: MAIN
Changes since 1.6: +68 -57 lines
Diff to previous 1.6 (unified)

'module' has been added experimentally.

Revision 1.6 / (download) - annotate - [select for diffs], Tue Oct 9 01:36:25 2001 UTC (22 years, 7 months ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_2_2, RELEASE_1_2_1
Changes since 1.5: +8 -18 lines
Diff to previous 1.5 (unified)

Conversion to ANSI style (not completed yet).

Revision 1.5 / (download) - annotate - [select for diffs], Tue Dec 5 01:24:57 2000 UTC (23 years, 5 months ago) by noro
Branch: MAIN
Changes since 1.4: +2 -11 lines
Diff to previous 1.4 (unified)

Removed ugly '#if defined(THINK_C)'.

Revision 1.4 / (download) - annotate - [select for diffs], Thu Sep 21 09:19:27 2000 UTC (23 years, 7 months ago) by noro
Branch: MAIN
CVS Tags: maekawa-ipv6, STABLE_1_1_3, RELEASE_1_1_3
Changes since 1.3: +1 -28 lines
Diff to previous 1.3 (unified)

One can use C-like structure. Details will be found in Asir users manual.

Revision 1.3 / (download) - annotate - [select for diffs], Tue Aug 22 05:04:28 2000 UTC (23 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (unified)

Sorry, the email address in the license agreement was incorrect.

Revision 1.2 / (download) - annotate - [select for diffs], Mon Aug 21 08:31:47 2000 UTC (23 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.1: +49 -1 lines
Diff to previous 1.1 (unified)

Added copyright notice and license agreement. It is mandatory to distribute
Risa/Asir source codes freely.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Dec 3 07:39:12 1999 UTC (24 years, 5 months ago) by noro
Branch: NORO
CVS Tags: RELEASE_20000124, RELEASE_1_1_2, ASIR2000
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (unified)

Imported asir2000 as OpenXM_contrib2/asir2000.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Dec 3 07:39:12 1999 UTC (24 years, 5 months ago) by noro
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>