From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: byte-compilation woes (cont'd) Date: Wed, 26 Mar 2014 00:41:03 +0100 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1395790900 19698 80.91.229.3 (25 Mar 2014 23:41:40 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 25 Mar 2014 23:41:40 +0000 (UTC) Cc: Emacs developers To: Drew Adams Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Mar 26 00:41:49 2014 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 1WSaya-0008Gk-Lp for ged-emacs-devel@m.gmane.org; Wed, 26 Mar 2014 00:41:48 +0100 Original-Received: from localhost ([::1]:44912 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSaya-0007wR-AO for ged-emacs-devel@m.gmane.org; Tue, 25 Mar 2014 19:41:48 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58296) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSayX-0007wJ-5M for emacs-devel@gnu.org; Tue, 25 Mar 2014 19:41:45 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WSayW-0001td-8s for emacs-devel@gnu.org; Tue, 25 Mar 2014 19:41:45 -0400 Original-Received: from mail-yh0-x22c.google.com ([2607:f8b0:4002:c01::22c]:38500) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSayW-0001sn-3i for emacs-devel@gnu.org; Tue, 25 Mar 2014 19:41:44 -0400 Original-Received: by mail-yh0-f44.google.com with SMTP id f10so1359611yha.31 for ; Tue, 25 Mar 2014 16:41:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=OemCKTCrRAVkBTAtLEeHjtxWmqlGQXedFX/jnnW3mgM=; b=y6cw/yYbVg2fFmid3Gu3878+PpxUkNgMNE7Z+N8r0UEizLZyCzkVw/1ymwcQh/jgNk yyD2zsHfOSDV8pSb4c0XlgFMy20YPbgYru5fNJLqtDnbBmOzbNAUgiTb0JQJ+83cJNmE ksfrMjcmlWz1wNBsopO6Fr0fXJnIQkdQLSx3kezCNrw67erPY7gCkd3dAsOvXgNxLjU4 DR6fFq7GkM4ClDQXspVi4aXVfEemj/dCfIuN+T9qWdZUwbKzp0vpWqpIlLnnrGKcxjkV V2Kje378b6Lrd+dUv4YBf6HX+ukr3DPSchlNnZvoegvYlykzhKxzoDT/88xNbcSJTPsI ALkw== X-Received: by 10.236.116.99 with SMTP id f63mr32418010yhh.10.1395790903326; Tue, 25 Mar 2014 16:41:43 -0700 (PDT) Original-Received: by 10.170.163.3 with HTTP; Tue, 25 Mar 2014 16:41:03 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4002:c01::22c 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:170982 Archived-At: On Wed, Mar 26, 2014 at 12:19 AM, Drew Adams wrote: > With the latest Emacs 24 build (from 3/23), I now must byte-compile > help-fns+.el using that build, to be able to use it with that build. > And doing that prevents using the compiled file with Emacs 22 or 23. > > Worse still. If byte-compiled with the latest build it is not even > usable with Emacs 24.3 (wrong number of args for `help-window-setup'). Do your functions use cl-style :keyword args? There's been two recent changes related to &key parsing, and your snapshot only includes the first one (the second one is revno:116871). J