http://stackoverflow.com/a/663636/391104
(defun my-c++-mode-hook ()
(setq c-basic-offset 4)
(c-set-offset 'substatement-open 0))
(add-hook 'c++-mode-hook 'my-c++-mode-hook)
Based on my investigation, I just need to add the above code into my .emacs and then it works magically.
Q1> What does defun my-c++-mode-hook () mean? a function definition in lisp?
Q2> What is the usage of following line? where should I trigger it or it is run automatically by emacs
(add-hook 'c++-mode-hook 'my-c++-mode-hook)
Thank you
C-h fnear the function calls e.g.add-hook,defunetc; andC-h vnear the variables e.g.c-basic-offsetetc. It would also help if you consulted the Emacs Lisp Intro book. This is also available from within Emacs as an Info page. GL – suvayu Apr 19 '12 at 15:42