From: Haris Bogdanovi� on
How do I unset keyboard shortcut "M-<delete>" ?

I tried
(global-unset-key (kbd "M-<delete>"))
but without success.
I managed to unset "M-d" with
(global-unset-key (kbd "M-d"))


From: Captain Obvious on
HB> How do I unset keyboard shortcut "M-<delete>" ?

HB> I tried
HB> (global-unset-key (kbd "M-<delete>"))
HB> but without success.
HB> I managed to unset "M-d" with
HB> (global-unset-key (kbd "M-d"))

Maybe that's because it is M-DEL rather than M-<delete>?

Use M-x describe-key to find how it is called -- press that key right after
command, and it will show how it is called and what it does.

From: Captain Obvious on
HB> I have a file a.lisp:

HB> (defun a (b)
HB> b)

HB> When I compile the whole file with C-c C-k I get following error:
HB> "warning: A is neither declared nor bound, it will be treated as if it
HB> were declared SPECIAL."
HB> When I compile defun with C-c C-c then it works, why ?

My guess is that it is not your whole file and you have something else in
it, e.g. a rogue letter a somewhere.
Also it is possible that you did not save file when C-c C-k asked you to,
and file on disk is different from what you see in buffer.

From: Haris Bogdanovic on
How can I set *buffer list* to appear in the same window where my cursor is
?


From: Captain Obvious on
HB> How can I set *buffer list* to appear in the same window where my
HB> cursor is ?

I think such question would be better addressed in Emacs-related newsgroup.
While there is some interesect between Common Lisp users and Emacs users,
you shouldn't confuse this newsgroup for a Emacs-support newsgroup.