iris

small scheme interpreter
git clone git://git.2f30.org/iris
Log | Files | Refs | LICENSE

commit 8aff541d02b4a49c60f54ba17de819fcc18cd0ea
parent 6f2de90fbf55c527f3ffbd434db838ff888f6f78
Author: sin <sin@2f30.org>
Date:   Tue, 13 May 2014 16:25:18 +0100

Be consistent with naming

Diffstat:
Mparser.h | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/parser.h b/parser.h @@ -1,10 +1,10 @@ /* See LICENSE file for copyright and license details. */ enum objtype { - Oidentifier, - Obool, - Onumber, - Ocharacter, - Ostring, + OIdentifier, + OBool, + ONumber, + OCharacter, + OString, }; struct object {