From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Towards a cleaner build: other output Date: Thu, 20 Jun 2019 09:23:16 -0400 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="138816"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) Cc: Noam Postavsky , Emacs developers To: Lars Ingebrigtsen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 20 15:26:57 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hdx5c-000a0G-OW for ged-emacs-devel@m.gmane.org; Thu, 20 Jun 2019 15:26:57 +0200 Original-Received: from localhost ([::1]:47746 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hdx5b-0001mQ-NQ for ged-emacs-devel@m.gmane.org; Thu, 20 Jun 2019 09:26:55 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:47371) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hdx2D-0007f8-Id for emacs-devel@gnu.org; Thu, 20 Jun 2019 09:23:27 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hdx2B-00011s-U6 for emacs-devel@gnu.org; Thu, 20 Jun 2019 09:23:25 -0400 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:10129) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hdx2B-0000z4-KM for emacs-devel@gnu.org; Thu, 20 Jun 2019 09:23:23 -0400 Original-Received: from pmg1.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id 4FE2D100944; Thu, 20 Jun 2019 09:23:20 -0400 (EDT) Original-Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id 10E6E1006CE; Thu, 20 Jun 2019 09:23:18 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1561036998; bh=URmqbCr8iriq8qpGlVgI3eoQ5lMMMr93LObJ/GJgvX4=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=WsKCqmXIqZNdd3/PjXpOyL/mideE321HQI+mutMky8TzO2RJE/WqGBzhUcdL8uIYa k8NuXTseZN4GqCUW17WAk5uinT+ie4rEUkl4ARWBjUhRnACvDpLapK2winGEdeb8Yv Cyt+Jx8pVI9DRr7JZDVnscPEDk0JugrF0SH7n240KV5Wu08oYy04OEDmamN7qUpAxZ QK5Ql2zzXpnKpVfV5CvZGp0PJGifg02uoLIi9AqeloNqRqFvZq7dsvGtR8c4NfZFiZ TsQ8TxOm8xF2skCt65tLxjKA29tuGtkD/AocbqK4hPGQjswWwGaQFKZoeKF4J7sXyA DtQnFPfrjQ6KA== Original-Received: from pastel (unknown [108.161.117.173]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id D23DE120920; Thu, 20 Jun 2019 09:23:17 -0400 (EDT) In-Reply-To: (Lars Ingebrigtsen's message of "Thu, 20 Jun 2019 14:09:39 +0200") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 132.204.25.50 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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" Xref: news.gmane.org gmane.emacs.devel:237962 Archived-At: Lars Ingebrigtsen writes: > Noam Postavsky writes: > >> Looks like you could still have the docstring via put, e.g.: >> >> (put '* 'variable-documentation "Most recent value evaluated in IELM.") > > Oh, nice. I'll put that in. In `master` you can even use `internal--define-uninitialized-variable`, which does all that `defvar` and `defconst` do except for setting the actual variable. And autoload.el won't recognize it as a definition. Stefan