From d0f2da2a4fd17316b1bc15e3c8210cc96001d8d0 Mon Sep 17 00:00:00 2001 From: Angel Ortega Date: Sat, 29 Sep 2007 17:13:30 +0200 Subject: [PATCH] Renamed find_local_symbol() to find_local_symbol_table(). --- mpsl_c.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mpsl_c.c b/mpsl_c.c index 8d71eb0..dea6511 100644 --- a/mpsl_c.c +++ b/mpsl_c.c @@ -94,8 +94,8 @@ mpdm_t mpsl_boolean(int b) } -static mpdm_t find_local_symbol(mpdm_t s, mpdm_t l) -/* finds a symbol in the local symbol table */ +static mpdm_t find_local_symbol_table(mpdm_t s, mpdm_t l) +/* finds the local symbol table hash that holds l */ { int n; mpdm_t v = NULL; @@ -149,14 +149,14 @@ static void set_local_symbols(mpdm_t s, mpdm_t v, mpdm_t l) static mpdm_t get_symbol(mpdm_t s, mpdm_t l) /* gets a symbol from a local symbol table, or the global */ { - return(mpdm_sget(find_local_symbol(s, l), s)); + return(mpdm_sget(find_local_symbol_table(s, l), s)); } static mpdm_t set_symbol(mpdm_t s, mpdm_t v, mpdm_t l) /* sets a symbol in a local symbol table, or the global */ { - mpdm_sset(find_local_symbol(s, l), s, v); + mpdm_sset(find_local_symbol_table(s, l), s, v); return(v); } -- 2.11.4.GIT