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:23:26 -0800	[thread overview]
Message-ID: <E8D7BE62729145EDB41F9E4E449A7264@us.oracle.com> (raw)
In-Reply-To: <AANLkTikeBq0Zsw8cEGQs2ZM8uOk=vxSEkeERX3Vi7abV@mail.gmail.com>

> in my init.el I have
> (set-register ?i '(file . "~/.emacs.d/init.el"))
> which allows me to quickly jump to my init file using C-x r j i
> But I don't really understand the syntax.
> Why do I have to use the exclamation mark when I set the register?

You mean question mark, I think.
	
> 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 tried to search in the documentation for set-register and
> variable definition but I did not find anything to really explain it.

Please file a doc bug for `C-h f set-register'.  The doc should say clearly what
each parameter is.  In this case it says nothing about the first parameter
except that it is a register.  It expects readers to somehow know that a
register (its name, that is) is of type character.

Relevant doc that will help you:

1. Elisp manual, node `Registers':

 "A register is a sort of variable used in Emacs editing that
  can hold a variety of different kinds of values.  Each
  register is named by a single character."

IOW, a register is like a variable in that it has a name and a value.  The name
is a character, however, not a symbol.

2. Emacs manual, node `Registers':

 "Emacs "registers" are compartments where you can save text, rectangles,
  positions, and other things for later use....
  Each register has a name that consists of a single character, which
  we will denote by R; R can be a letter (such as `a') or a number (such
  as `1'); case matters, so register `a' is not the same as register `A'."




  reply	other threads:[~2010-12-06 22:23 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 [this message]
2010-12-06 22:54   ` Drew Adams
  -- 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=E8D7BE62729145EDB41F9E4E449A7264@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.