0

I need to customize lisp-indent-function for a particular type of functions in such a way that it would indent lines "as if the function call were not there"; for instance say that I want to indent this way the args of a function called emph

(fictional-print x y z
  a b c (emph d
  e f g))

as opposed to what the default implementation does

(fictional-print x y z
  a b c (emph d
              e f g))

(fictional-print has 'defun indentation.)

Drew
  • 75,699
  • 9
  • 109
  • 225
Wilder
  • 95
  • 6
  • Um, why? The desired indentation looks horrible! – Fran Burstall Jan 20 '23 at 00:29
  • Does this answer your question? [Change indent for function calls in Emacs Lisp?](https://emacs.stackexchange.com/questions/69321/change-indent-for-function-calls-in-emacs-lisp) – Drew Jan 20 '23 at 18:27

0 Answers0