1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* debug.c: Only include `debug-hang' if GUILE_DEBUG is defined.

This commit is contained in:
Mikael Djurfeldt 1997-03-08 14:43:29 +00:00
parent 280e515a28
commit fe57f6521f

View file

@ -385,6 +385,8 @@ scm_make_debugobj (frame)
/* Undocumented debugging procedure */
#ifdef GUILE_DEBUG
SCM_PROC (s_debug_hang, "debug-hang", 0, 1, 0, scm_debug_hang);
SCM
@ -395,6 +397,7 @@ scm_debug_hang (obj)
while (!go) ;
return SCM_UNSPECIFIED;
}
#endif