about summary refs log tree commit diff
path: root/src/libexpr/parser.y
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-30T09·27+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-30T09·28+0200
commit3d221a7bb13a864a50c549f66032ead2bf5aaec0 (patch)
tree7c5d5afbd55c67a7855f5fc938132e5cab959ce6 /src/libexpr/parser.y
parent2ea2703fe987d57ff189d7a924c64f03f65170c1 (diff)
Rename nixPath to __nixPath
The name ‘nixPath’ breaks existing code.
Diffstat (limited to 'src/libexpr/parser.y')
-rw-r--r--src/libexpr/parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/parser.y b/src/libexpr/parser.y
index a27c53043c..a19269b33c 100644
--- a/src/libexpr/parser.y
+++ b/src/libexpr/parser.y
@@ -388,7 +388,7 @@ expr_simple
       string path($1 + 1, strlen($1) - 2);
       $$ = new ExprApp(CUR_POS,
           new ExprApp(new ExprVar(data->symbols.create("__findFile")),
-              new ExprVar(data->symbols.create("nixPath"))),
+              new ExprVar(data->symbols.create("__nixPath"))),
           new ExprString(data->symbols.create(path)));
   }
   | URI { $$ = new ExprString(data->symbols.create($1)); }