about summary refs log tree commit diff stats
path: root/subx/011run.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-13 23:55:07 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-13 23:55:07 -0700
commit06d9b1a5417dedf3fe256fcccbae852e4bdd125c (patch)
tree623794b234a23f04f6ec2040635a5135c88f83bc /subx/011run.cc
parentdc559a00c7592469e716a2baee963987fb34d4a9 (diff)
downloadmu-06d9b1a5417dedf3fe256fcccbae852e4bdd125c.tar.gz
4694
Check for duplicate docstrings.
Diffstat (limited to 'subx/011run.cc')
-rw-r--r--subx/011run.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/011run.cc b/subx/011run.cc
index 6dc1a09b..38c43681 100644
--- a/subx/011run.cc
+++ b/subx/011run.cc
@@ -4,7 +4,7 @@
 //: the VM. That comes later.)
 
 :(before "End Help Texts")
-put(Help, "syntax",
+put_new(Help, "syntax",
   "SubX programs consist of segments, each segment in turn consisting of lines.\n"
   "Line-endings are significant; each line should contain a single\n"
   "instruction, macro or directive.\n"
@@ -327,7 +327,7 @@ void parse_and_load(const string& text_bytes) {
 //:: run
 
 :(before "End Initialize Op Names(name)")
-put(name, "05", "add imm32 to EAX (add)");
+put_new(name, "05", "add imm32 to EAX (add)");
 
 //: our first opcode
 :(before "End Single-Byte Opcodes")