Re: JL: RE: Emacs and java...

1998-07-21 Thread Chris Dean
"Liam Magee" <[EMAIL PROTECTED]> writes: > Are these tools available for NT? Emacs is, but not (currently) XEmacs. http://www.cs.washington.edu/homes/voelker/ntemacs.html Chris Dean

Re: JL: Emacs and java...

1998-07-21 Thread Chris Dean
'my-c-mode-common-hook) I'm not sure if this would work, but you could try changing this to get your "tab is a tab" behaviour: (defun my-c-mode-common-hook () (c-set-style "GNU") (setq c-tab-always-indent nil) (setq c-basic-offset 8)) (add-hook 'c-mode-common-hook 'my-c-mode-common-hook) Good luck, Chris Dean