Path: utzoo!attcan!uunet!tut.cis.ohio-state.edu!ucbvax!LCS.MIT.EDU!mly From: mly@LCS.MIT.EDU Newsgroups: comp.emacs Subject: Lisp indentation question Message-ID: <9003201354.aa14390@mintaka.lcs.mit.edu> Date: 20 Mar 90 18:54:55 GMT Sender: daemon@ucbvax.BERKELEY.EDU Lines: 7 Try the following to make Emacs handle Common-Lisp forms like FLET and LABELS and UNWIND-PROTECT and DO more nicely: (if (not (fboundp 'common-lisp-indent-hook)) (load "cl-indent" t)) (if (fboundp 'common-lisp-indent-hook) (setq lisp-indent-hook 'common-lisp-indent-hook))