On Mon, Mar 16, 2009 at 05:16:47AM +0800, [email protected] wrote: > E.g. in .emacs, we can do (global-set-key (quote [home]) (quote > beginning-of-buffer))
FYI, (quote [home]) is equivalent to [home], as the square brackets denote a literal vector. Cf. (kbd "<home>"). Theoretically you'd also use (function beginning-of-buffer), though it behaves identically to (quote beginning-of-buffer) except when byte-compiling. -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

