about summary refs log tree commit diff stats
path: root/subx/028translate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/028translate.cc')
-rw-r--r--subx/028translate.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/subx/028translate.cc b/subx/028translate.cc
index 38f8a223..48c11786 100644
--- a/subx/028translate.cc
+++ b/subx/028translate.cc
@@ -20,6 +20,7 @@
 if (is_equal(argv[1], "translate")) {
   START_TRACING_UNTIL_END_OF_SCOPE;
   reset();
+  // Begin subx translate
   program p;
   string output_filename;
   for (int i = /*skip 'subx translate'*/2;  i < argc;  ++i) {
@@ -59,6 +60,7 @@ if (is_equal(argv[1], "translate")) {
     unlink(output_filename.c_str());
     return 1;
   }
+  // End subx translate
   return 0;
 }