I use the AUCTeX feature to expand " into csquotes macros. To enable it I have put the following in my .emacs:
;; " expands into csquotes macros
(setq LaTeX-csquotes-close-quote "}"
LaTeX-csquotes-open-quote "\\enquote{")
However, when I use it together with babel " is not expanded to csquotes macros.
For instance, pressing " in the following example
\documentclass{article}
\usepackage[danish]{babel}
\usepackage{csquotes}
\begin{document}
\end{document}
results in
"`
Here is a screenshot of when I press " inside the document environment:

What I would like to happen is that \enquote{ is inserted.
