all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Drew Adams" <drew.adams@oracle.com>
To: "'Aurélien Bottazzini'" <aurelien.bottazzini@gmail.com>,
	help-gnu-emacs@gnu.org
Subject: RE: Problem understanding set-register syntax
Date: Mon, 6 Dec 2010 14:54:46 -0800	[thread overview]
Message-ID: <9BE7E059B1D0401E84DF5921BF765AA4@us.oracle.com> (raw)
In-Reply-To: <E8D7BE62729145EDB41F9E4E449A7264@us.oracle.com>

> > Why can't I just use:
> > (set-register i '(file . "~/.emacs.d/init.el"))
> > ; will say Symbol's value as variable is void:i
> 
> Because the first argument to `set-register' is a register 
> name, which is a character, and `?i' is the Lisp syntax for
> the character `i'.

I should also have mentioned that using just i, without quoting it (i.e., 'i)
causes the symbol i to be evaluated.  And since the symbol i has no value here
(no global value) you get the error message saying that its value is void.

Some symbols, such as t and nil (and all keywords, such as :foobar) are
self-evaluating, meaning that they act just like variables whose values are the
symbols themselves.  You do not need to quote self-evaluating symbols in an
evaluation context.  Other symbols (e.g. i, foobar) you do need to quote, if you
want not the value of the symbol (e.g. it might not have a value) but the symbol
itself.

But all characters are self-evaluating, so ?i evaluates to ?i.

See the Emacs manual, node `Init Syntax'.
See the Elisp manual, node `Basic Char Syntax'.
(Use `g' in Info to go to a particular node.)




  reply	other threads:[~2010-12-06 22:54 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-05  9:51 Problem understanding set-register syntax Aurélien Bottazzini
2010-12-06 22:23 ` Drew Adams
2010-12-06 22:54   ` Drew Adams [this message]
  -- strict thread matches above, loose matches on Subject: below --
2010-12-06 13:47 Aurélien Bottazzini
2010-12-06 22:46 ` PJ Weisberg

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=9BE7E059B1D0401E84DF5921BF765AA4@us.oracle.com \
    --to=drew.adams@oracle.com \
    --cc=aurelien.bottazzini@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.