help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to bind to M-"


From: Teemu Likonen
Subject: Re: How to bind to M-"
Date: Wed, 28 Jan 2009 19:16:28 GMT
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux)

Mirko (2009-01-28 10:27 -0800) wrote:

> I would like to bind a command to the Escape + quote `"' character
> sequency.
>
> I tried a few combinations of "M-" and \", ?\", but none work. What is
> the official way?

This works:

    (kbd "M-\"")

> Since we are at it, how would one create a string of five double
> quotes using make-string:
> I tried
>
> (make-string 5 \")

The input must be an integer so we use "?" form:

    (make-string 5 ?\")


reply via email to

[Prev in Thread] Current Thread [Next in Thread]