From 129a36064f7ac7d681d654532722d18f4218ed9b Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 6 Jan 2011 20:24:06 +0900 Subject: [PATCH] Fix a typo that broke procedure declarations. --- tools/qfcc/source/qp-lex.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/qp-lex.l b/tools/qfcc/source/qp-lex.l index 095204813..303401254 100644 --- a/tools/qfcc/source/qp-lex.l +++ b/tools/qfcc/source/qp-lex.l @@ -187,7 +187,7 @@ static keyword_t keywords[] = { {"array", ARRAY, 0}, {"of", OF, 0}, {"function", FUNCTION, 0}, - {"prodedure", PROCEDURE, 0}, + {"procedure", PROCEDURE, 0}, {"begin", PBEGIN, 0}, {"end", END, 0}, {"if", IF, 0},