summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <ssp@redhat.com>2012-06-17 14:26:30 -0400
committerSøren Sandmann Pedersen <ssp@redhat.com>2012-06-17 14:26:30 -0400
commit2c3f6b43fbc38fcef63bda6f413a442dacdf2090 (patch)
tree4395896e8f1d9af17d273a8cdd61edf8429aca65
parentb122568e46bc50378d0d1e626e57da56201946f3 (diff)
Rename to Oort
-rw-r--r--TODO2
-rw-r--r--ast.c2
-rw-r--r--ast.h2
-rw-r--r--gc.c2
-rw-r--r--graph.c2
-rw-r--r--init-check.c2
-rw-r--r--internal-tests.c2
-rw-r--r--interpret.c2
-rw-r--r--levels.c2
-rw-r--r--main.c2
-rw-r--r--mark-constant.c2
-rw-r--r--node.c2
-rw-r--r--offsets.c2
-rw-r--r--optimize.c2
-rw-r--r--parser.c2
-rw-r--r--prepare.c2
-rw-r--r--return-check.c2
-rw-r--r--scanner.c2
-rw-r--r--switch.c2
-rw-r--r--symbol.c2
-rw-r--r--type-check.c2
-rw-r--r--util.c2
22 files changed, 22 insertions, 22 deletions
diff --git a/TODO b/TODO
index 88f1e11..706888e 100644
--- a/TODO
+++ b/TODO
@@ -743,7 +743,7 @@ These will need similar code, so some of it may be sharable.
- Precedence:
- At the moment ninja inherits the broken precedence from C where ==
+ At the moment Oort inherits the broken precedence from C where ==
and >= have higher precedence than &, | and ^.
This means that
diff --git a/ast.c b/ast.c
index 454b72e..4bbf215 100644
--- a/ast.c
+++ b/ast.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/ast.h b/ast.h
index 73d7b41..a082771 100644
--- a/ast.h
+++ b/ast.h
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/gc.c b/gc.c
index 7bb5cc0..ba4f777 100644
--- a/gc.c
+++ b/gc.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/graph.c b/graph.c
index 610f29b..c907c4d 100644
--- a/graph.c
+++ b/graph.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, 2008, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/init-check.c b/init-check.c
index 45d855e..2b8cb8f 100644
--- a/init-check.c
+++ b/init-check.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/internal-tests.c b/internal-tests.c
index b027fef..75a596d 100644
--- a/internal-tests.c
+++ b/internal-tests.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/interpret.c b/interpret.c
index defb194..db9ac28 100644
--- a/interpret.c
+++ b/interpret.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/levels.c b/levels.c
index 693e6dd..c7d38e2 100644
--- a/levels.c
+++ b/levels.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/main.c b/main.c
index 61bf10a..9d826ad 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/mark-constant.c b/mark-constant.c
index 7a68151..e1f621a 100644
--- a/mark-constant.c
+++ b/mark-constant.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/node.c b/node.c
index 3e2af7f..7775841 100644
--- a/node.c
+++ b/node.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, 2008, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/offsets.c b/offsets.c
index 0504d7f..ccdaa78 100644
--- a/offsets.c
+++ b/offsets.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/optimize.c b/optimize.c
index d90a559..7117fb7 100644
--- a/optimize.c
+++ b/optimize.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/parser.c b/parser.c
index d40558f..0d4f890 100644
--- a/parser.c
+++ b/parser.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/prepare.c b/prepare.c
index 9a244c4..174a179 100644
--- a/prepare.c
+++ b/prepare.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/return-check.c b/return-check.c
index 0667e90..7de0137 100644
--- a/return-check.c
+++ b/return-check.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/scanner.c b/scanner.c
index 7995cd7..f728acb 100644
--- a/scanner.c
+++ b/scanner.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/switch.c b/switch.c
index 5802198..c9437ed 100644
--- a/switch.c
+++ b/switch.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/symbol.c b/symbol.c
index b0b29f0..e869ab9 100644
--- a/symbol.c
+++ b/symbol.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/type-check.c b/type-check.c
index 9470237..991bde7 100644
--- a/type-check.c
+++ b/type-check.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify
diff --git a/util.c b/util.c
index 38ed9b7..dfe01ad 100644
--- a/util.c
+++ b/util.c
@@ -1,4 +1,4 @@
-/* Ninja
+/* Oort
* Copyright 2007, Soren Sandmann Pedersen
*
* This program is free software; you can redistribute it and/or modify