annotate lisp/auctex/style/swedish.el @ 39:06f275776fba
Added tag r19-15b102 for changeset 1a767b41a199
author |
cvs |
date |
Mon, 13 Aug 2007 08:54:02 +0200 |
parents |
4103f0995bd7 |
children |
|
rev |
line source |
24
|
1 ;;; swedish.el - Setup AUC TeX for editing Swedish text.
|
|
2
|
|
3 ;; $Id: swedish.el,v 1.1 1997/02/20 02:15:21 steve Exp $
|
|
4
|
|
5 ;;; Commentary:
|
|
6 ;;
|
|
7 ;; Apparently the Swedes use ''this style'' quotations.
|
|
8
|
|
9 (TeX-add-style-hook "swedish"
|
|
10 (function (lambda ()
|
|
11 (make-local-variable 'TeX-open-quote)
|
|
12 (setq TeX-open-quote "''")
|
|
13 (run-hooks 'TeX-language-sv-hook))))
|