From 89ea69b61bc75945b5b33fc56982a9e46fa8e3cf Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Mon, 31 Oct 2011 18:55:41 -0700 Subject: [PATCH] vm: fix comments mangled by find & replace --- vm/entry_points.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vm/entry_points.cpp b/vm/entry_points.cpp index 724874ea0e..fc144a37e2 100755 --- a/vm/entry_points.cpp +++ b/vm/entry_points.cpp @@ -23,8 +23,8 @@ void factor_vm::c_to_factor(cell quot) template Func factor_vm::get_entry_point(cell n) { /* We return word->code->entry_point() and not word->entry_point, - because if counting_profiler is enabled, we don't want to go through the - entry point's counting_profiler stub. This clobbers registers, since entry + because if the counting profiler is enabled, we don't want to go through the + entry point's counting profiler stub. This clobbers registers, since entry points use the C ABI and not the Factor ABI. */ tagged entry_point_word(special_objects[n]); return (Func)entry_point_word->code->entry_point();