mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-23 12:00:21 +02:00
Merge until e0bcda4ad9
from stable-2.2
This commit is contained in:
commit
f85d3c0bd8
21 changed files with 507 additions and 312 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; Traps: stepping, breakpoints, and such.
|
||||
|
||||
;; Copyright (C) 2010, 2012, 2013, 2014 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2010, 2012, 2013, 2014, 2017 Free Software Foundation, Inc.
|
||||
|
||||
;;; This library is free software; you can redistribute it and/or
|
||||
;;; modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -124,7 +124,8 @@
|
|||
(end (program-last-ip proc)))
|
||||
(lambda (frame)
|
||||
(let ((ip (frame-instruction-pointer frame)))
|
||||
(and (<= start ip) (< ip end))))))
|
||||
(and (<= start ip)
|
||||
end (< ip end))))))
|
||||
((struct? proc)
|
||||
(frame-matcher (procedure proc)))
|
||||
(else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue