about summary refs log tree commit diff stats
path: root/subx/019functions.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/019functions.cc
parentdc559a00c7592469e716a2baee963987fb34d4a9 (diff)
downloadmu-06d9b1a5417dedf3fe256fcccbae852e4bdd125c.tar.gz
4694
Check for duplicate docstrings.
Diffstat (limited to 'subx/019functions.cc')
-rw-r--r--subx/019functions.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/019functions.cc b/subx/019functions.cc
index a672dcfe..1eef7300 100644
--- a/subx/019functions.cc
+++ b/subx/019functions.cc
@@ -1,7 +1,7 @@
 //:: call
 
 :(before "End Initialize Op Names(name)")
-put(name, "e8", "call disp32 (call)");
+put_new(name, "e8", "call disp32 (call)");
 
 :(scenario call_disp32)
 % Reg[ESP].u = 0x64;
@@ -68,7 +68,7 @@ a0 00 00 00  # 0xa0
 //:: ret
 
 :(before "End Initialize Op Names(name)")
-put(name, "c3", "return from most recent unfinished call (ret)");
+put_new(name, "c3", "return from most recent unfinished call (ret)");
 
 :(scenario ret)
 % Reg[ESP].u = 0x2000;