Initial Commit
[packages] / xemacs-packages / auctex / style / scrartcl.el
1 ;;; -*- emacs-lisp -*-
2 ;;; scrartcl.el -- AUCTeX style for scrartcl.cls
3
4 ;; Copyright (C) 2002, 2005 Free Software Foundation
5 ;; License: GPL, see the file COPYING in the base directory of AUCTeX
6
7 ;; Author: Mark Trettin <Mark.Trettin@gmx.de>
8 ;; Created: 2002-09-26
9 ;; Keywords: tex
10
11 ;;; Commentary:
12
13 ;; This file adds support for `scrartcl.cls'. This file needs
14 ;; `scrbase.el'.
15
16 ;; This file is part of  AUCTeX.
17
18 ;;; Code:
19 (TeX-add-style-hook "scrartcl"
20    (lambda ()
21      (LaTeX-largest-level-set "section")
22      ;; load basic definitons
23      (TeX-run-style-hooks "scrbase"))
24    LaTeX-dialect)
25
26 ;;; scrartcl.el ends here