all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kevin Rodgers <ihs_4664@yahoo.com>
Subject: Re: define-key OK; defiune-key-after won't evaluate
Date: Tue, 21 Feb 2006 09:18:41 -0700	[thread overview]
Message-ID: <dtfeh2$v0v$1@sea.gmane.org> (raw)
In-Reply-To: <20060220001646.50367.qmail@web60825.mail.yahoo.com>

RD. wrote:
> I can define a menu button in the menu bar, placed to the left of the
> File button, thus:
> 
> (define-key global-map [menu-bar rsave] '("Save" . save-buffer))
> 
> But I don't know how to use define-key-after.  I get a Lisp error:
> 
> (define-key-after global-map [menu-bar rsave]
>    '("Save" . save-buffer) 'tools)
> Debugger entered--Lisp error: (error "multi-event key specified in
> `define-key-after'")
> 
> Is it obvious what's wrong?

,----[ C-h f define-key-after RET ]
| define-key-after is a compiled Lisp function in `subr'.
| (define-key-after KEYMAP KEY DEFINITION &optional AFTER)
|
| Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding.
| This is like `define-key' except that the binding for KEY is placed
| just after the binding for the event AFTER, instead of at the beginning
| of the map.  Note that AFTER must be an event type (like KEY), NOT a 
command
| (like DEFINITION).
|
| If AFTER is t or omitted, the new binding goes at the end of the keymap.
|
| KEY must contain just one event type--that is to say, it must be a
| string or vector of length 1, but AFTER should be a single event
| type--a symbol or a character, not a sequence.
|
| Bindings are always added before any inherited map.
|
| The order of bindings in a keymap matters when it is used as a menu.
`----

Does this work?

(define-key-after (lookup-key global-map [menu-bar]) [rsave]
   '("Save" . save-buffer) 'tools)

-- 
Kevin Rodgers

  reply	other threads:[~2006-02-21 16:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-02-20  0:16 define-key OK; defiune-key-after won't evaluate RD.
2006-02-21 16:18 ` Kevin Rodgers [this message]
     [not found] ` <mailman.1088.1140548301.2856.help-gnu-emacs@gnu.org>
2006-02-25  2:43   ` RD

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='dtfeh2$v0v$1@sea.gmane.org' \
    --to=ihs_4664@yahoo.com \
    /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.