From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: yasnippet common lisp objects broken by recent emacs changes? Date: Sat, 26 Jan 2013 19:29:41 -0500 Message-ID: References: <877gmz5z5l.fsf@grumps.lan> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1359246597 12322 80.91.229.3 (27 Jan 2013 00:29:57 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 27 Jan 2013 00:29:57 +0000 (UTC) Cc: Emacs Development To: Christopher Allan Webber Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jan 27 01:30:16 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TzG8P-0001O1-La for ged-emacs-devel@m.gmane.org; Sun, 27 Jan 2013 01:30:09 +0100 Original-Received: from localhost ([::1]:57097 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TzG87-0000U0-QV for ged-emacs-devel@m.gmane.org; Sat, 26 Jan 2013 19:29:51 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:59822) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TzG82-0000Tj-6Y for Emacs-devel@gnu.org; Sat, 26 Jan 2013 19:29:49 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TzG81-0006Xa-27 for Emacs-devel@gnu.org; Sat, 26 Jan 2013 19:29:46 -0500 Original-Received: from smtp208.alice.it ([82.57.200.104]:59928) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TzG80-0006XK-OK for Emacs-devel@gnu.org; Sat, 26 Jan 2013 19:29:44 -0500 Original-Received: from fmsmemgm.homelinux.net (82.107.57.105) by smtp208.alice.it (8.6.060.12) id 50FF9F1D00BF2A71; Sun, 27 Jan 2013 01:29:42 +0100 Original-Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id 56AA0AE3F4; Sat, 26 Jan 2013 19:29:41 -0500 (EST) In-Reply-To: <877gmz5z5l.fsf@grumps.lan> (Christopher Allan Webber's message of "Sat, 26 Jan 2013 16:59:47 -0600") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 82.57.200.104 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:156676 Archived-At: >>>>> "Christopher" == Christopher Allan Webber writes: > Heya all, > I noticed that when I try to run yasnippet (running from git as fetched > by el-get) recently I've been getting this error. [...] > Debugger entered--Lisp error: (void-function cl-set-getf) I think the patch below will fix it (but please in the future report those problem to bug-gnu-emacs@gnu.org (or via M-x report-emacs-bug) so they get assigned a bug number). I installed it into the emacs-24 branch, so it will appear on the trunk "soonish". Stefan === modified file 'lisp/emacs-lisp/cl.el' --- lisp/emacs-lisp/cl.el 2013-01-01 09:11:05 +0000 +++ lisp/emacs-lisp/cl.el 2013-01-26 23:15:12 +0000 @@ -713,6 +713,7 @@ 'cl--map-keymap-recursively "24.3") (define-obsolete-function-alias 'cl-map-intervals 'cl--map-intervals "24.3") (define-obsolete-function-alias 'cl-map-extents 'cl--map-overlays "24.3") +(define-obsolete-function-alias 'cl-set-getf 'cl--set-getf "24.3") (defun cl-maclisp-member (item list) (declare (obsolete member "24.3"))