From 79a457b35800049e1e7fee6133617c34c4f33a97 Mon Sep 17 00:00:00 2001 From: Ian Piumarta Date: Wed, 22 Mar 2023 17:03:15 +0900 Subject: [PATCH] Cosmetic. --- src/ccmeta.leg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ccmeta.leg b/src/ccmeta.leg index 34ab3d1..2a62e60 100644 --- a/src/ccmeta.leg +++ b/src/ccmeta.leg @@ -3,7 +3,7 @@ # Copyright (c) 2016-2021 Ian Piumarta and other contributors (see AUTHORS) # All rights reserved (see LICENSE) # -# Last edited: 2023-03-22 17:00:49 by piumarta on zora-10.local +# Last edited: 2023-03-22 17:03:00 by piumarta on zora-10.local %{ /* compile: leg -o ccmeta.c ccmeta.leg @@ -4643,8 +4643,8 @@ void init(void) map_set(globals, intern("treeCopy" ), makeFunction(prim_treeCopy, intern("treeCopy" ), null, null, globals, null)); map_set(globals, intern("import" ), makeFunction(prim_import, intern("import" ), null, null, globals, null)); map_set(globals, intern("microseconds"), makeFunction(prim_microseconds, intern("microseconds"), null, null, globals, null)); - map_set(globals, intern("string" ), makeFunction(prim_String , intern("string" ), null, null, globals, null)); - map_set(globals, intern("scope"), makeFunction(prim_scope, intern("scope"), null, null, globals, null)); + map_set(globals, intern("string" ), makeFunction(prim_String, intern("string" ), null, null, globals, null)); + map_set(globals, intern("scope" ), makeFunction(prim_scope, intern("scope" ), null, null, globals, null)); #define _DO(NAME) NAME##_symbol=intern(#NAME); DO_SYMBOLS()