py-mode.l

http://www.geocities.co.jp/Milano-Cat/2067/xyzzy.html#py-mode
行頭でTAB入力はインデントしてほしいけど、それ以外はTAB文字を入れたい。
py-indent-lineを改造すれば良いのか?わからない。

(defun py-indent-line (&optional arg)
...
    (if (/= cc 0) (progn (insert #\TAB)(return-from py-indent-line))) ;; この行を加える by j-taro
    (if (and (equal *last-command* *this-command*)
             (/= cc 0))
....