1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

* Fix bug caused by frame size overflowing its field.

This commit is contained in:
Neil Jerram 2002-03-08 13:07:50 +00:00
parent 54737001bb
commit 020c890ccc
3 changed files with 11 additions and 2 deletions

View file

@ -141,7 +141,7 @@ SCM_API scm_t_debug_frame *scm_last_debug_frame;
#define SCM_TRACED_FRAME (1L << 8)
#define SCM_ARGS_READY (1L << 7)
#define SCM_DOVERFLOW (1L << 6)
#define SCM_MAX_FRAME_SIZE 63 /* also used as a mask for the size field */
#define SCM_MAX_FRAME_SIZE 63
#define SCM_FRAMETYPE (3L << 11)