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.)