all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Pascal J. Bourguignon" <pjb@informatimago.com>
To: help-gnu-emacs@gnu.org
Subject: Re: elisp programming questions
Date: Sat, 03 Nov 2012 04:18:36 +0100	[thread overview]
Message-ID: <87d2zvml0z.fsf@informatimago.com> (raw)
In-Reply-To: jwvfw4xbbrv.fsf-monnier+gnu.emacs.help@gnu.org

Stefan Monnier <monnier@iro.umontreal.ca> writes:

>>> (defvar say-hi-mode-map
>>>   (let ((map (make-keymap)))
>>>     (define-key map [left] 'say-hi)
>>>     ;;(define-key map [right] 'say-hi)
>>>     map))
>
>> DEFVAR only assigns the variable if it doesn't already have a value. So 
>> when you run it the second time, it doesn't do anything because the 
>> variable is already initialized.
>
> That's right.

I use defparameter instead.


(defmacro defparameter (symbol &optional initvalue docstring)
  `(progn
     (defvar ,symbol nil ,docstring)
     (setq   ,symbol ,initvalue)))


-- 
__Pascal Bourguignon__
http://www.informatimago.com


  reply	other threads:[~2012-11-03  3:18 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.11660.1351139989.855.help-gnu-emacs@gnu.org>
2012-10-25  9:24 ` elisp programming questions Barry Margolin
2012-10-29 14:21   ` Stefan Monnier
2012-11-03  3:18     ` Pascal J. Bourguignon [this message]
2012-10-25  4:39 Evan Driscoll

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=87d2zvml0z.fsf@informatimago.com \
    --to=pjb@informatimago.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.