From 57fd31a49bd77b48dd60f7b6eb9163d0a86fe39f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Mon, 14 Apr 2008 15:20:20 +0200
Subject: [PATCH] Now uses the CE_REPORT_FUN_NUM macro.

Rev: src/language.yacc:1.413
---
 src/language.yacc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/language.yacc b/src/language.yacc
index b61cc6af98..03a3cad38b 100644
--- a/src/language.yacc
+++ b/src/language.yacc
@@ -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: language.yacc,v 1.412 2008/04/14 13:19:24 grubba Exp $
+|| $Id: language.yacc,v 1.413 2008/04/14 13:20:20 grubba Exp $
 */
 
 %pure_parser
@@ -4339,7 +4339,7 @@ void low_yyerror(struct pike_string *str)
   push_int(c->lex.current_line);
   push_constant_text("parse");
   ref_push_string(str);
-  safe_apply_current(0, 5);	/* report(). */
+  safe_apply_current(CE_REPORT_FUN_NUM, 5);
   pop_stack();
   STACK_LEVEL_DONE(0);
 }
-- 
GitLab