From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "S+*n_Pe*rm*n" Newsgroups: gmane.emacs.devel Subject: RE: EIEIO and CL Date: Fri, 9 Oct 2009 18:29:27 -0400 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1255127436 891 80.91.229.12 (9 Oct 2009 22:30:36 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 9 Oct 2009 22:30:36 +0000 (UTC) Cc: emacs-devel@gnu.org To: Chong Yidong , eric@siege-engine.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 10 00:30:26 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MwNyj-0005lI-HF for ged-emacs-devel@m.gmane.org; Sat, 10 Oct 2009 00:30:25 +0200 Original-Received: from localhost ([127.0.0.1]:60837 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MwNyj-00065M-3D for ged-emacs-devel@m.gmane.org; Fri, 09 Oct 2009 18:30:25 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MwNxu-0005iB-Dt for emacs-devel@gnu.org; Fri, 09 Oct 2009 18:29:34 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MwNxp-0005fM-Rt for emacs-devel@gnu.org; Fri, 09 Oct 2009 18:29:34 -0400 Original-Received: from [199.232.76.173] (port=45250 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MwNxp-0005fH-GJ for emacs-devel@gnu.org; Fri, 09 Oct 2009 18:29:29 -0400 Original-Received: from mail-yw0-f177.google.com ([209.85.211.177]:61765) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MwNxp-00014B-6R for emacs-devel@gnu.org; Fri, 09 Oct 2009 18:29:29 -0400 Original-Received: by ywh7 with SMTP id 7so5789097ywh.24 for ; Fri, 09 Oct 2009 15:29:27 -0700 (PDT) Original-Received: by 10.150.129.13 with SMTP id b13mr5584644ybd.304.1255127367601; Fri, 09 Oct 2009 15:29:27 -0700 (PDT) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:116037 Archived-At: Doesn't this little bit at the top of cl-macs get you most of the way? ,---- :FILE "/emacs/lisp/emacs-lisp/cl-macs.el" | ;; This kludge allows macros which use cl-transform-function-property | ;; to be called at compile-time. | | (require | (progn | (or (fboundp 'cl-transform-function-property) | (defalias 'cl-transform-function-property | (function (lambda (n p f) | (list 'put (list 'quote n) (list 'quote p) | (list 'function (cons 'lambda f))))))) | (car (or features (setq features (list 'cl-kludge)))))) `---- s_P