fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / editor / parrot.el
blobfa1e0108e805646159a5e8c61857f3ffa2e2bec1
1 ;;; $Id$
2 ;;; Emacs support for working on the source code of the Parrot virtual
3 ;;; machine.
4 ;;
5 ;; Note that the support for editing pasm files is currently in the separate
6 ;; file "pasm.el". This file is for editing the Parrot VM source.
7 ;;
8 ;; To use this file, copy it to a known location and add this statement to
9 ;; your .emacs file:
11 ;; (load-file "/known/location/parrot.el")
14 (c-add-style "parrot"
15 '("stroustrup"
16 (indent-tabs-mode . nil)
17 (fill-column . 100)
18 (c-offsets-alist . (
19 (label . *)
20 (access-label . *)
21 (case-label . *)
22 (statement-case-intro . *)
23 (inextern-lang . 0)
24 ))))
26 (setq auto-mode-alist (cons '("\\.pmc$" . c-mode) auto-mode-alist))
28 (setq auto-mode-alist (cons '("\\.ops$" . perl-mode) auto-mode-alist))