From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: Bookmarks in EWW Date: Thu, 26 Mar 2020 00:07:14 -0400 Message-ID: References: <878sjrfh2m.fsf@mbork.pl> <871rpipzwa.fsf@web.de> <87tv2d3zii.fsf@web.de> <87lfnn9b2o.fsf@web.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="6075"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) Cc: help-gnu-emacs@gnu.org To: Michael Heerdegen Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Thu Mar 26 05:07:42 2020 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jHJnx-0001Tu-LZ for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 26 Mar 2020 05:07:41 +0100 Original-Received: from localhost ([::1]:46278 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jHJnw-0001bM-O9 for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 26 Mar 2020 00:07:40 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:36267) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jHJnd-0001a2-Dl for help-gnu-emacs@gnu.org; Thu, 26 Mar 2020 00:07:22 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jHJnb-0000Pc-My for help-gnu-emacs@gnu.org; Thu, 26 Mar 2020 00:07:20 -0400 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:55242) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jHJnb-0000MC-GH for help-gnu-emacs@gnu.org; Thu, 26 Mar 2020 00:07:19 -0400 Original-Received: from pmg1.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id 3D6F3100BDE; Thu, 26 Mar 2020 00:07:18 -0400 (EDT) Original-Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id A2A8810075B; Thu, 26 Mar 2020 00:07:16 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1585195636; bh=p7T16LghNUe3whV9WlxBwv11KPyD3zOOSpD2W5rAsIk=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=WnWJanb3ug+deqivuMhAr2lLKJquUA5dwoohfLN6YzdMd6qyAjTgKtK0e95NCI/0N cMEuv0JD2bcKrL+ZWOQjU+mCv0sDhfEYwDO1C9NIT72oNu+IpqYqvGsb5lLYA2jpXC mRsS0mMynYAckdmc57v5Ys48rLyA0Leic8tFmduxlUW0epPmLz9mvAK9GmZZTKQh8c 1YOhQ66uhxLITPY77vXSEw5vT8UKbB+4lI+i07e0DAQTjXPpYm33/DSTbuNNAOJ00F EdIozvBJ2/5Dydda//u6Tn8WwS8lQ6CQtprF8r30Kh3BTLnFQYCM52qHAHCYdjgKQt XkqiAx76FiAKw== Original-Received: from alfajor (unknown [104.247.241.114]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 405A7120055; Thu, 26 Mar 2020 00:07:16 -0400 (EDT) In-Reply-To: <87lfnn9b2o.fsf@web.de> (Michael Heerdegen's message of "Thu, 26 Mar 2020 02:09:03 +0100") 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: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:122675 Archived-At: > make[2]: Entering directory '/home/micha/software/emacs/lisp' > ELC net/eww.elc >=20=20=20 > In eww-mode: > net/eww.el:893:47: Warning: assignment to free variable > =E2=80=98bookmark-make-record-function=E2=80=99 Ah, yes, it still complains, more as a warning (in case you just mis-typed the name of some other variable). But the generated code is fine (i.e. the defvar only silences the warnings). Maybe we should teach the byte-compiler to recognize `make-local-variable` as a declaration that the variable is dynamic? Stefan