emacsのcoffee-modeが改行で不当なインデントを挿入してくるのを阻止する

coffee-mode.elで以下を修正する

(defun coffee-newline-and-indent ()
  "Insert a newline and indent it to the same level as the previous line."
  (interactive)

  ;; Remember the current line indentation level,                                     
  ;; insert a newline, and indent the newline to the same                             
  ;; level as the previous line.                                                      
  (let ((prev-indent (current-indentation)) (indent-next nil))
    (delete-horizontal-space t)
    (newline)
    ;;(insert-tab (/ prev-indent coffee-tab-width)   ;;ここをコメントアウト                                
    )

    ;; We need to insert an additional tab because the last line was special.         
    (when (coffee-line-wants-indent)
    ;;  (insert-tab))   ;;ここをコメントアウト                                                         
    )

  ;; Last line was a comment so this one should probably be,                          
  ;; too. Makes it easy to write multi-line comments (like the one I'm                
  ;; writing right now).                                                              
  ;;(when (coffee-previous-line-is-comment)                                           
  ;;  (insert "# "))                                                                  
  )