about summary refs log tree commit diff stats
path: root/085scenario_console.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-20 17:51:58 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-20 17:51:58 -0700
commitbc98ddb2b699682dffb5590f9c5e5b2bf36cb278 (patch)
treea614f3c0f669d9b3129c9b0e65f0f27ce99be860 /085scenario_console.cc
parent10f415a60a130ceefc4ce0f32155507763e6cee6 (diff)
downloadmu-bc98ddb2b699682dffb5590f9c5e5b2bf36cb278.tar.gz
3229 - fake file systems using 'assume-filesystem'
Built with Stephen Malina.
Diffstat (limited to '085scenario_console.cc')
-rw-r--r--085scenario_console.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/085scenario_console.cc b/085scenario_console.cc
index b6f820f1..c1f75735 100644
--- a/085scenario_console.cc
+++ b/085scenario_console.cc
@@ -35,10 +35,10 @@ scenario keyboard-in-scenario [
 
 :(before "End Scenario Globals")
 const int CONSOLE = Next_predefined_global_for_scenarios++;
+//: give 'console' a fixed location in scenarios
 :(before "End Special Scenario Variable Names(r)")
 Name[r]["console"] = CONSOLE;
-
-//: allow naming just for 'console'
+//: make 'console' always a raw location in scenarios
 :(before "End is_special_name Cases")
 if (s == "console") return true;