In the scheme-mode if the function name begins with "def" in its definition and the call incorrectly indent function arguments.

Example:

; a and b have equal indentation

(define (nondeftest a

   b)

  (+ a b))

 

; same

(nondeftest 1

   2)

 

; b indent incorrectly

(define (deftest a

 b)

  (+ a b))

 

; same

(deftest 1

  2)

 

In defining and calling deftest second argument when you press <Tab> always aligned at the level of the character 'e' of the function name. If the function name does not begin with "def" arguments are aligned correctly.