let me widen the newsgroups as there was no reply to this one in the
first one.
Sometimes, in emacs, error takes places and the mode gets nested
inside many brackets.
[(((.lisp...)))]
above line recalling from memory
what does it mean ? C-g does not get out of it.
What to do ?
If you are seeing [[[lisp]]] then you are in a "recursive edit".
This is not an error, it is a feature! The most common way to get into it
is if you are doing a query-replace (M-% with standard bindings), and
type control-r. This allows you to make some edits and then continue the
query-replace.
The standard key binding to abort out of recursive edit is C-] (the [..]
in the mode line is supposed to help you remember this key sequence).