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

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

Re: bind to M-"


From: Stefan Monnier
Subject: Re: bind to M-"
Date: Tue, 04 May 2004 16:11:43 GMT
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50

> (global-set-key "\M-"" 'my-function) ;; obviously shouldn't work

(global-set-key "\M-\"" 'my-function)

> (global-set-key [\M-"] 'my-function) ;; End of file during parsing error

(global-set-key [?\M-\"] 'my-function)

or also

(global-set-key [(meta ?\")] 'my-function)


        Stefan


reply via email to

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