psvn.elで表示がずれるときの備忘録とおもったが

debianでアップデートしてたら、いつのまにかマークすると、そのファイルの表示がずれることに気づいた。
(M-x svn-status とか rails.elでF9とか)
ほっときゃなおるかとおもってたんだけど、自分の環境がおかしいかもとおもい
設定できないか調べてみたら、そのような変数があった。

(defcustom svn-status-use-header-line
  (if (boundp 'header-line-format) t 'inline)
  "*Whether a header line should be used.
When t: Use the emacs header line
When 'inline: Insert the header line in the `svn-status-buffer-name' buffer
Otherwise: Don't display a header line"
  :type '(choice (const :tag "Show column titles as a header line" t)
                 (const :tag "Insert column titles as text in the buffer" inline)
                 (other :tag "No column titles" nil))
  :group 'psvn)

とりあえず、header-lineというところに書いているようで。
nil にしたら、うまく表示された。
inlineも試してみたがこれもずれてしまった。。。

;(setq svn-status-use-header-line 'inline)
(setq svn-status-use-header-line nil)

追記:
なんかやっぱりだめだった。。。
残念

追追記:
toggleするとだめみたいだなぁ。