]> code.delx.au - gnu-emacs-elpa/blob - packages/auctex-11.86/style/danish.el
77a01642e715e49947fd02b7ab4fd4dce80294b7
[gnu-emacs-elpa] / packages / auctex-11.86 / style / danish.el
1 ;;; danish.el --- Setup AUCTeX for editing Danish text.
2
3 ;;; Code:
4
5 (TeX-add-style-hook
6 "danish"
7 (lambda ()
8 (setq TeX-quote-language `("danish" "\"`" "\"'" ,TeX-quote-after-quote))
9 (setq LaTeX-babel-hyphen-language "danish")
10 ;; Fontification of quotation marks.
11 (when (fboundp 'font-latex-add-quotes)
12 (font-latex-add-quotes '("\"`" "\"'"))
13 (font-latex-add-quotes '("\"<" "\">" french)))
14 (run-hooks 'TeX-language-dk-hook)))
15
16 ;;; danish.el ends here