From 2673dda4ca5211a88e228b13d0b95ddae987c218 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Mon, 20 Jun 2005 14:58:23 +0200
Subject: [PATCH] Fixed typo.

Rev: src/interpret_functions.h:1.186
---
 src/interpret_functions.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/interpret_functions.h b/src/interpret_functions.h
index eb35afb54a..26d14d44d4 100644
--- a/src/interpret_functions.h
+++ b/src/interpret_functions.h
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: interpret_functions.h,v 1.185 2005/06/20 12:52:01 grubba Exp $
+|| $Id: interpret_functions.h,v 1.186 2005/06/20 12:58:23 grubba Exp $
 */
 
 /*
@@ -849,7 +849,7 @@ OPCODE0(F_ADD_TO_AND_POP, "+= and pop", I_UPDATE_SP, {
 
 OPCODE1(F_GLOBAL_LVALUE, "& global", I_UPDATE_SP, {
   ref_push_object(Pike_fp->current_object);
-  push_obj_index(rg1 + Pike_fp->context.identifier_level);
+  push_obj_index(arg1 + Pike_fp->context.identifier_level);
 });
 
 OPCODE0(F_INC, "++x", I_UPDATE_SP, {
-- 
GitLab