summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-10-28 22:36:59 +0000
committerPaul Buetow <paul@buetow.org>2008-10-28 22:36:59 +0000
commitd8bff74a889e0be1781666e8c249a6b991c2ad6b (patch)
tree44f4f4c8a4e8af9100d4928ef902bd01de6588ad
parent1c2c79c47719ca828ce0eb4365ea0327fe89f2d8 (diff)
symbol_ref_up added.
-rw-r--r--docs/help.txt2
-rw-r--r--docs/stats.txt2
-rw-r--r--docs/version.txt2
-rwxr-xr-xfypebin454318 -> 457142 bytes
-rw-r--r--src/build.h2
-rw-r--r--src/core/reference.c1
6 files changed, 5 insertions, 4 deletions
diff --git a/docs/help.txt b/docs/help.txt
index 6ae4db7..3f9c73c 100644
--- a/docs/help.txt
+++ b/docs/help.txt
@@ -1,4 +1,4 @@
-Fype v0.1-devel Build 9309
+Fype v0.1-devel Build 9317
(c) Paul C. Buetow (2005 - 2008) <fype@dev.buetow.org>
-e Executes given code string (see synopses)
-h Prints this help
diff --git a/docs/stats.txt b/docs/stats.txt
index de8b984..3eccd1b 100644
--- a/docs/stats.txt
+++ b/docs/stats.txt
@@ -1,4 +1,4 @@
===> Num of C source files : 44
-===> Num of C source lines : 7828
+===> Num of C source lines : 7829
===> Num of Fype source examples : 14
===> Num of Fype source lines : 362
diff --git a/docs/version.txt b/docs/version.txt
index 7b886bc..48c9680 100644
--- a/docs/version.txt
+++ b/docs/version.txt
@@ -1 +1 @@
-Fype v0.1-devel Build 9309
+Fype v0.1-devel Build 9317
diff --git a/fype b/fype
index 7744de6..c175877 100755
--- a/fype
+++ b/fype
Binary files differ
diff --git a/src/build.h b/src/build.h
index fe825ba..4fc243d 100644
--- a/src/build.h
+++ b/src/build.h
@@ -35,7 +35,7 @@
#ifndef BUILD_H
#define BUILD_H
-#define BUILDNR 9314
+#define BUILDNR 9317
#define OS_FREEBSD
#endif
diff --git a/src/core/reference.c b/src/core/reference.c
index 2c97c6a..211ef23 100644
--- a/src/core/reference.c
+++ b/src/core/reference.c
@@ -38,6 +38,7 @@ Reference*
reference_new(Symbol *p_symbol) {
Reference *p_reference = malloc(sizeof(Reference));
+ symbol_ref_up(p_symbol);
p_reference->p_symbol = p_symbol;
return (p_reference);