From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: How can url-show-status be void when (featurep 'url-vars) is t? Date: Mon, 28 Jun 2010 00:06:48 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1277676442 12864 80.91.229.12 (27 Jun 2010 22:07:22 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 27 Jun 2010 22:07:22 +0000 (UTC) Cc: Emacs-Devel devel To: Andreas Schwab Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 28 00:07:21 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OT00U-0007z3-Np for ged-emacs-devel@m.gmane.org; Mon, 28 Jun 2010 00:07:19 +0200 Original-Received: from localhost ([127.0.0.1]:46716 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OT00U-0002Bs-3q for ged-emacs-devel@m.gmane.org; Sun, 27 Jun 2010 18:07:18 -0400 Original-Received: from [140.186.70.92] (port=36983 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OT00M-0002AK-5M for emacs-devel@gnu.org; Sun, 27 Jun 2010 18:07:12 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OT00K-0005ju-UO for emacs-devel@gnu.org; Sun, 27 Jun 2010 18:07:09 -0400 Original-Received: from mail-gy0-f169.google.com ([209.85.160.169]:53424) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OT00K-0005jq-SB for emacs-devel@gnu.org; Sun, 27 Jun 2010 18:07:08 -0400 Original-Received: by gyh20 with SMTP id 20so497112gyh.0 for ; Sun, 27 Jun 2010 15:07:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type; bh=/IPTUXad0bRyp8kBx3xEqI/HFl2U/Py8fLybFbCj5lw=; b=SZGfZh4AvJ0v5JVGI+//0KwrQbcs75KiZ8tqmFftTfQsN/AaLRNRO30aI/pgoiETuQ bOuyXjkEUX+YXVPHY/vqUF067pVhzzyQcp0nYOAvD0KEbOLvWB7nmKCa+K57UsgyIYwU pgk4waF9klvtzxOyacFQZs556AMkkcMJni/0M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=GbJ5tbVgRdZRZYKU7MIub8NAbL+jvsYGp/Vf3pJKJKP60bW4uu2vqjN9pLDSQWD+4v Qn3ayM4N9fz/WOMdWTjbkqddtk7xcvPYioZtptlCNjI96OXuDdPHTi8+RJ8uejZEnTPl 2FevBUz0ycFZ0CgRAwC0FFBGhiVU4XTZBl8lc= Original-Received: by 10.100.228.8 with SMTP id a8mr5074048anh.255.1277676428188; Sun, 27 Jun 2010 15:07:08 -0700 (PDT) Original-Received: by 10.100.225.8 with HTTP; Sun, 27 Jun 2010 15:06:48 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:126470 Archived-At: On Sun, Jun 27, 2010 at 8:08 PM, Andreas Schwab wrote: > Lennart Borgman writes: > >> Any ideas how then url-show-status can be void after loading url-vars? > > ELISP> (let (url-show-status) (load "url-vars")) > t > ELISP> (boundp 'url-show-status) > nil Ah, thanks. I managed to move (require 'url-vars) inside the let-clause. That is pretty easy to do when you are restructuring something. I did not notice until many months later so I had forgotten about the change of course. Wouldn't it be possible for defvar, defcustom etc to detect that situation?