From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 124087 invoked by alias); 9 Apr 2015 15:57:05 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 124074 invoked by uid 89); 9 Apr 2015 15:57:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL autolearn=ham version=3.3.2 X-HELO: sasl.smtp.pobox.com Received: from pb-sasl1.int.icgroup.com (HELO sasl.smtp.pobox.com) (208.72.237.25) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 09 Apr 2015 15:57:03 +0000 Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by pb-sasl1.pobox.com (Postfix) with ESMTP id 610E9450B3; Thu, 9 Apr 2015 11:57:02 -0400 (EDT) Received: from pb-sasl1.int.icgroup.com (unknown [127.0.0.1]) by pb-sasl1.pobox.com (Postfix) with ESMTP id 5B182450B2; Thu, 9 Apr 2015 11:57:02 -0400 (EDT) Received: from rusty (unknown [88.160.190.192]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pb-sasl1.pobox.com (Postfix) with ESMTPSA id 94FAC450B1; Thu, 9 Apr 2015 11:57:01 -0400 (EDT) From: Andy Wingo To: gdb-patches@sourceware.org Cc: dje@google.com Subject: [PATCH v5] Add Guile frame filter interface Date: Thu, 09 Apr 2015 15:57:00 -0000 Message-ID: <87zj6hfg6t.fsf@igalia.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: 0F7DEEFC-DED1-11E4-8841-99D0625725FD-02397024!pb-sasl1.pobox.com X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg00343.txt.bz2 Changes from v4 are mostly related to feedback on the unwinder interface (which is a different patch). * Remove enable-frame-filter! / disable-frame-filter!, and just have set-frame-filter-enabled!, which always takes a filter object and never a string. * Rename #:scope to #:locus. Names must be unique only within a locus, not among all filters. Add #:replace? to register-frame-filter!. * Limit priorities to the signed int32 range. * Rename unregister-frame-filter! to remove-frame-filter!. * Update docs. * Compile most .scm files with -Wunbound-variable, and not -Wunbound-toplevel. WDYT? Andy