aboutsummaryrefslogtreecommitdiffhomepage
path: root/function.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-10-30 07:09:11 +1000
committerGravatar axel <axel@liljencrantz.se>2006-10-30 07:09:11 +1000
commitf83575f08447e91d9c26f3e9ff302b428b2c14a9 (patch)
tree7d65bf8e070d2c3965fe3094838b926fec69d754 /function.c
parenta6c00ca0d289f7305b1fe40ae8d0fbc55ac0a417 (diff)
Make sure signals aren't blocked while autoloading, also add a few consistency checks to see that signals aren't blocked in critical places
darcs-hash:20061029210911-ac50b-50bec85c3d59d0332ba44f3ece1a012cdc3e8c4b.gz
Diffstat (limited to 'function.c')
-rw-r--r--function.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/function.c b/function.c
index 2e138561..54a171ed 100644
--- a/function.c
+++ b/function.c
@@ -353,10 +353,6 @@ const wchar_t *function_get_definition_file( const wchar_t *argv )
CHECK( argv, 0 );
- if( is_autoload )
- return 0;
-
- load( argv );
data = (function_data_t *)hash_get( &function, argv );
if( data == 0 )
return 0;
@@ -371,10 +367,6 @@ int function_get_definition_offset( const wchar_t *argv )
CHECK( argv, -1 );
- if( is_autoload )
- return -1;
-
- load( argv );
data = (function_data_t *)hash_get( &function, argv );
if( data == 0 )
return -1;