Possible Duplicate:
Make Emacs less aggressive about indentation
Whenever I type and open or closed parenthesis in Emacs’ C++ mode it indents the entire expression. I do not want this to happen. How can I turn this feature off? Can I turn off all auto indent features?
Try:
(c-toggle-electric-state -1)From the docs: