bibファイルのコメント開始記号について(Emacs)

bibファイルにコメントを入れる場合, bibtexだと"@Comment"が開始記号として指定されている.Emacsの設定は

(setq bibtex-comment-start "@Comment")

が初期設定となっている.モダンなbiberを使う場合,コメント開始記号は"%"にしたいので,以下を設定に追記した.

(add-hook 'TeX-mode-hook
          #'(lambda ()
              (setq bibtex-comment-start "%") ;backend=biber
              ;; (setq bibtex-comment-start "@Comment") ;backend=bibtex
              ))