all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Christopher Howard <cmhoward2@alaska.edu>
To: Gnu Emacs Help <help-gnu-emacs@gnu.org>
Subject: symbols and cells
Date: Thu, 15 May 2014 09:10:05 -0800	[thread overview]
Message-ID: <20140515091005.52cc1897@voltron.arsc.edu> (raw)

I'm still working through the earlier parts of the Elisp
documentation, but I am curious: How does one define the variable cell
and function cell for an /uninterned/ symbol? The docs indicate you
can do this:

(defvar sym (make-symbol "foo"))

But how do you add a function or variable value to foo without
interning it?

On a related note, I'm curious about this perverse construction:

(defvar sym1 (lambda (n) (+ 1 n)))

Is it actually possible to call the the lambda somehow?

ELISP> sym1
(lambda
  (n)
  (+ 1 n))

ELISP> (sym1)
*** Eval error ***  Symbol's function definition is void: sym1
ELISP> (eval sym1)
(lambda
  (n)
  (+ 1 n))

ELISP> ((eval sym1))
*** Eval error ***  Invalid function: (eval sym1)



             reply	other threads:[~2014-05-15 17:10 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-15 17:10 Christopher Howard [this message]
2014-05-15 20:16 ` symbols and cells Michael Heerdegen
     [not found] <mailman.1410.1400173825.1147.help-gnu-emacs@gnu.org>
2014-05-15 18:07 ` Pascal J. Bourguignon

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=20140515091005.52cc1897@voltron.arsc.edu \
    --to=cmhoward2@alaska.edu \
    --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.