all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Robert Pluim <rpluim@gmail.com>
To: emacs-devel@gnu.org
Cc: Stefan Kangas <stefankangas@gmail.com>
Subject: Re: master 32ded573cc4: ; Fix bootstrap
Date: Wed, 13 Sep 2023 18:39:56 +0200	[thread overview]
Message-ID: <875y4edo2r.fsf@gmail.com> (raw)
In-Reply-To: <20230913162806.26E90C04DAF@vcs2.savannah.gnu.org> (Stefan Kangas's message of "Wed, 13 Sep 2023 12:28:06 -0400 (EDT)")

>>>>> On Wed, 13 Sep 2023 12:28:06 -0400 (EDT), Stefan Kangas <stefankangas@gmail.com> said:

    Stefan> branch: master
    Stefan> commit 32ded573cc4a58546ad60b44f454ba86c80a929d
    Stefan> Author: Stefan Kangas <stefankangas@gmail.com>
    Stefan> Commit: Stefan Kangas <stefankangas@gmail.com>

    Stefan>     ; Fix bootstrap
    
    Stefan>     * lisp/emacs-lisp/cl-macs.el (cl-defstruct): Don't use void variable.
    Stefan> ---
    Stefan>  lisp/emacs-lisp/cl-macs.el | 5 ++++-
    Stefan>  1 file changed, 4 insertions(+), 1 deletion(-)

    Stefan> diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
    Stefan> index ef00f9e4fe4..7c207d372fc 100644
    Stefan> --- a/lisp/emacs-lisp/cl-macs.el
    Stefan> +++ b/lisp/emacs-lisp/cl-macs.el
    Stefan> @@ -3199,7 +3199,10 @@ To see the documentation for a defined struct type, use
    Stefan>                             ;; can't have a perfect result here, and
    Stefan>                             ;; choose to avoid the byte-compiler
    Stefan>                             ;; warnings.
    Stefan> -                           (if (>= (length long-docstring) byte-compile-docstring-max-column)
    Stefan> +                           (if (>= (length long-docstring)
    Stefan> +                                   (or (and (boundp 'byte-compile-docstring-max-column)
    Stefan> +                                            byte-compile-docstring-max-column)
    Stefan> +                                       80))
    Stefan>                                 (concat
    Stefan>                                  (internal--format-docstring-line
    Stefan>                                   "Access slot \"%s\" of CL-X." slot)

Is `bound-and-true-p' available there?

Robert
-- 



       reply	other threads:[~2023-09-13 16:39 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <169462248588.13722.4533539880050641369@vcs2.savannah.gnu.org>
     [not found] ` <20230913162806.26E90C04DAF@vcs2.savannah.gnu.org>
2023-09-13 16:39   ` Robert Pluim [this message]
2023-10-01 16:45     ` master 32ded573cc4: ; Fix bootstrap Stefan Kangas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=875y4edo2r.fsf@gmail.com \
    --to=rpluim@gmail.com \
    --cc=emacs-devel@gnu.org \
    --cc=stefankangas@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.