all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eduardo Ochs <eduardoochs@gmail.com>
To: help-gnu-emacs <help-gnu-emacs@gnu.org>
Subject: defvar and "special-variable-p"-ness
Date: Sat, 14 Aug 2021 20:02:55 -0300	[thread overview]
Message-ID: <CADs++6hG6yoUwE+EUpJuCXsVkB6ga9Uzpta=ctx4K07ZSdar_w@mail.gmail.com> (raw)

Hi list,

after "defvar"-ing a variable its "special-variable-p"-ness becomes
true. Is there a way to make its "special-variable-p"-ness nil again?
That would be useful for some tests that I am trying to write...

By the way, I thought that "unload-feature" would be able to revert
the "special-variable-p"-ness of a variable back to nil, but it seems
that it doesn't do that. Here's how I tested it. I created a file
"/tmp/myfile.el" with just these three lines,

  ;; Copy this 3-line block to /tmp/myfile.el
  (defvar myvar 99)
  (provide 'myfile)

Then I ran the uncommented sexps below one by one with my favorite
variant of `C-x C-e':

  (setq myvar 42)
  (special-variable-p 'myvar)
  ;; ^ --> nil

  (require 'myfile "/tmp/myfile.el")
  (assoc "/tmp/myfile.el" load-history)
  ;; ^ --> ("/tmp/myfile.el" myvar (provide . myfile))
  (special-variable-p 'myvar)
  ;; ^ --> t

  (unload-feature 'myfile)
  (assoc "/tmp/myfile.el" load-history)
  ;; ^ --> nil
  (special-variable-p 'myvar)
  ;; ^ --> t

Thanks in advance!
  Eduardo Ochs
  http://angg.twu.net/#eev
  http://angg.twu.net/eev-intros/find-lexical-intro.html



             reply	other threads:[~2021-08-14 23:02 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-14 23:02 Eduardo Ochs [this message]
2021-08-14 23:24 ` defvar and "special-variable-p"-ness Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-14 23:29   ` Eduardo Ochs
2021-08-15  0:58     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-14 23:37 ` Stefan Monnier via Users list for the GNU Emacs text editor
2021-08-15  0:24   ` Eduardo Ochs

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='CADs++6hG6yoUwE+EUpJuCXsVkB6ga9Uzpta=ctx4K07ZSdar_w@mail.gmail.com' \
    --to=eduardoochs@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /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.