about summary refs log tree commit diff stats
path: root/041jump_target.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-28 21:53:51 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-28 21:53:51 -0800
commita1b06887864811a3fa95a0caf4c95dd07321b52d (patch)
treeff10a3ea9a9edc46a7eaaa6f1e3eea584a6902ab /041jump_target.cc
parentdfdfc7e94af9cc304c94e2acff3238befe463f39 (diff)
downloadmu-a1b06887864811a3fa95a0caf4c95dd07321b52d.tar.gz
2493 - eliminate a couple of dependencies
In general you only want to specify one transform in terms of
(before/after) another if the other direction wouldn't work. Otherwise
try to make it work by just pushing transforms at the start/end of the
list.
Diffstat (limited to '041jump_target.cc')
-rw-r--r--041jump_target.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/041jump_target.cc b/041jump_target.cc
index 00e9fc39..947ab6ba 100644
--- a/041jump_target.cc
+++ b/041jump_target.cc
@@ -18,7 +18,7 @@ recipe main [
 :(before "End Mu Types Initialization")
 put(Type_ordinal, "label", 0);
 
-:(before "Transform.push_back(transform_braces)")
+:(after "Begin Transforms")
 Transform.push_back(transform_labels);  // idempotent
 
 :(code)