From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ben Key Newsgroups: gmane.emacs.devel Subject: Re: Modifying Emacs to use the Mac OS X Keychain Services Date: Sun, 12 Jun 2011 22:14:37 -0500 Message-ID: References: <83vcwb9f67.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1307934925 22473 80.91.229.12 (13 Jun 2011 03:15:25 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 13 Jun 2011 03:15:25 +0000 (UTC) Cc: tzz@lifelogs.com, Emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 13 05:15:19 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QVxcS-0003RL-7m for ged-emacs-devel@m.gmane.org; Mon, 13 Jun 2011 05:15:16 +0200 Original-Received: from localhost ([::1]:44738 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QVxcR-0001Ik-0v for ged-emacs-devel@m.gmane.org; Sun, 12 Jun 2011 23:15:15 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:45269) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QVxcD-0001IY-GA for Emacs-devel@gnu.org; Sun, 12 Jun 2011 23:15:02 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QVxcC-0000nY-Ma for Emacs-devel@gnu.org; Sun, 12 Jun 2011 23:15:01 -0400 Original-Received: from mail-bw0-f41.google.com ([209.85.214.41]:42718) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QVxcB-0000n7-4c; Sun, 12 Jun 2011 23:14:59 -0400 Original-Received: by bwz17 with SMTP id 17so4329471bwz.0 for ; Sun, 12 Jun 2011 20:14:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type:content-transfer-encoding; bh=YJ51oJLmcOhxyMJ0orLB6/gBkg7ZUc9ajlCZw5lJVZQ=; b=HA2Tq0PT4B37+933iO74jsBQexpf4RhZBo6ODkt6p8eLVJ5NbXfhCABVDg8G0eRuG4 W2dqUUO8vqUqP+vxdIrL1RlLYWt5+awf3YFtFo+XOY9aJYmC6QfI2Hr8zvymBKKkVikC y0J7a3Ol32unuKzQ4y6PBdZM12+Jo+tzZMHi8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=eNGp7+Ghx5Ujl9xz/O/RS4R7lX+LkWPghP7EQOrILHVSDr4ckMlVwR3mweUra2UhqV x07asFta0FSaGS1nxyPX/QTNHIwslEe5rh464UC6ZKhxAznu2oUJb3USoaLpE7xN0cG0 zQz36baRtb8ioeLYMZP/+EhazlrvsLAOI+MuM= Original-Received: by 10.204.19.3 with SMTP id y3mr4086246bka.180.1307934897255; Sun, 12 Jun 2011 20:14:57 -0700 (PDT) Original-Received: by 10.204.59.212 with HTTP; Sun, 12 Jun 2011 20:14:37 -0700 (PDT) In-Reply-To: <83vcwb9f67.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.214.41 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:140407 Archived-At: Eli Zaretskii wrote: > It's tempting, but I don't think it's TRT. =A0I think we generally use > pseudovectors for this. =A0The advantage is that you can then use > standard macros to access it, and developers can use commands in > .gdbinit to debug the code that involves these objects. Thanks. Ted Zlatanov wrote: > Another approach is to do what frames do; see `frame-parameters' for > instance. It looks like frames do use a pseudovector. For example. #define XSETFRAME(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_FRAME)) #define FRAMEP(x) PSEUDOVECTORP (x, PVEC_FRAME)