Xref: utzoo gnu.emacs:3764 comp.emacs:9012 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sun-barr!newstop!sun!amdahl!JUTS!kpc00 From: kpc00@JUTS.ccc.amdahl.com (kpc) Newsgroups: gnu.emacs,comp.emacs Subject: emacs-lisp-mode indentation Message-ID: Date: 5 Sep 90 01:15:44 GMT Sender: kpc00@ccc.amdahl.com Distribution: comp Organization: my-organization Lines: 31 Question about GNU 18.55 emacs-lisp-mode indentation: If one wants to use this indentation style: (defun factorial (n) "..." (cond ((zerop n) 1) (t (* n (factorial (- n 1)))) ) ) which puts closing parentheses under their matches and indents by a fixed amount, in place of emacs-lisp-mode's: (defun factorial (n) "..." (cond ((zerop n) 1) (t (* n (factorial (- n 1)))) ) ) is there a way out there to implement it? -- Neither representing any company nor, necessarily, myself.