From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: John Mastro Newsgroups: gmane.emacs.devel Subject: Re: master 659199f: lisp/emacs-lisp/cl-indent.el: Fix indent of with-output-to-string Date: Fri, 26 Jun 2015 10:17:00 -0700 Message-ID: References: <20150625112550.14642.54593@vcs.savannah.gnu.org> <87bng3ey4q.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1435339047 4841 80.91.229.3 (26 Jun 2015 17:17:27 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 26 Jun 2015 17:17:27 +0000 (UTC) Cc: Leo Liu To: Oleh Krehel , emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 26 19:17:26 2015 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 1Z8XFl-000486-TL for ged-emacs-devel@m.gmane.org; Fri, 26 Jun 2015 19:17:26 +0200 Original-Received: from localhost ([::1]:33207 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z8XFk-0000Ka-Tu for ged-emacs-devel@m.gmane.org; Fri, 26 Jun 2015 13:17:24 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54030) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z8XFi-0000KU-4N for emacs-devel@gnu.org; Fri, 26 Jun 2015 13:17:22 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z8XFg-0007mR-8l for emacs-devel@gnu.org; Fri, 26 Jun 2015 13:17:22 -0400 Original-Received: from mail-oi0-x22a.google.com ([2607:f8b0:4003:c06::22a]:36435) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z8XFg-0007mL-4z for emacs-devel@gnu.org; Fri, 26 Jun 2015 13:17:20 -0400 Original-Received: by oigb199 with SMTP id b199so80100916oig.3 for ; Fri, 26 Jun 2015 10:17:19 -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=G63TriKbCjtWj8jx7dA01x4zSo3R+iRxfXuSW+d7m8M=; b=IPMbNyZKShjAsANxBHIzSWGDsAUOQgonNpm1a54L9Hv6wdhjiOZA4EJxuL5Jw56ghi uGdJ7WTdaRU4yxYE7FdArQBjDTb+8w+adUuXvXZGGiONea8V5rDIxGRGy2kbUrKQ1bPN Wdg+ebNi6Dn13lL0et8/pNYdHnbYJbKzCUSA4xh7ey8b15/S0KnTCNpYDuYdjI6Xv7ft y/UeGs7t4oYdDEFO0h2f4gvN6gNNv3C/Da7EqLRYra/aKBW8JLIKGXdsyPGvVnKJ4laO 3ktj7mxxpCJtaKlTZuHVkYRqMm6b7Q70CV3gr2LsgC3qfU6iUKx/VJAUHv4VpNtRfJld ep1w== X-Received: by 10.60.45.207 with SMTP id p15mr2367743oem.34.1435339039752; Fri, 26 Jun 2015 10:17:19 -0700 (PDT) Original-Received: by 10.76.168.70 with HTTP; Fri, 26 Jun 2015 10:17:00 -0700 (PDT) In-Reply-To: <87bng3ey4q.fsf@gmail.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4003:c06::22a 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:187572 Archived-At: Oleh Krehel wrote: > I even checked the args of `with-output-to-string' for SBCL, just in > case: they are &rest. Hm, not sure why it showed you that, but it's not right. CL-USER> (lisp-implementation-type) "SBCL" CL-USER> (describe 'with-output-to-string) COMMON-LISP:WITH-OUTPUT-TO-STRING [symbol] WITH-OUTPUT-TO-STRING names a macro: Lambda-list: ((VAR &OPTIONAL STRING &KEY (ELEMENT-TYPE ''CHARACTER)) &BODY FORMS-DECLS) Source file: SYS:SRC;CODE;MACROS.LISP -- john