From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Marius Vollmer Newsgroups: gmane.lisp.guile.devel Subject: Names for the C frame stuff Date: Wed, 07 Jan 2004 16:55:35 +0100 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1073491138 29442 80.91.224.253 (7 Jan 2004 15:58:58 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 7 Jan 2004 15:58:58 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Wed Jan 07 16:58:55 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AeG59-0004fJ-00 for ; Wed, 07 Jan 2004 16:58:55 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AeH09-00080C-CZ for guile-devel@m.gmane.org; Wed, 07 Jan 2004 11:57:49 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AeH00-0007zm-55 for guile-devel@gnu.org; Wed, 07 Jan 2004 11:57:40 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AeGzT-0007qL-56 for guile-devel@gnu.org; Wed, 07 Jan 2004 11:57:39 -0500 Original-Received: from [129.217.163.1] (helo=mail.dt.e-technik.uni-dortmund.de) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AeGzS-0007pz-QD for guile-devel@gnu.org; Wed, 07 Jan 2004 11:57:06 -0500 Original-Received: from troy.dt.e-technik.uni-dortmund.de (troy.dt.e-technik.uni-dortmund.de [129.217.163.17]) by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id C95E419644 for ; Wed, 7 Jan 2004 16:55:35 +0100 (CET) Original-Received: by troy.dt.e-technik.uni-dortmund.de (Postfix, from userid 520) id 563E7B9A6; Wed, 7 Jan 2004 16:55:35 +0100 (CET) Original-To: guile-devel@gnu.org User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:3165 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:3165 Hi, so I'm pondering over how to name the functions that are associated with the new 'frame' concept. I'm now mostly convinced to use these ones: scm_frame_begin - Begin a frame scm_frame_end - End it scm_frame_unwind - Register a unwind handler scm_frame_rewind - a rewind handler scm_frame_block_asyncs - Block the asyncs scm_frame_unblock_asyncs - Unblock them scm_frame_current_input_port scm_frame_current_output_port scm_frame_current_error_port - Set the indicated port temporarily scm_frame_fluid - Set a fluid temporarily etc. This scheme makes it clear that frames are involved with scm_frame_block_asyncs (for example) and also gives us enough room for situations where the nice names are already taken (like scm_with_fluids). Comments? _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel