1 ;; erlang-start.el --- Load this file to initialize the Erlang package.
3 ;; Copyright (C) 1998 Ericsson Telecom AB
5 ;; Author: Anders Lindgren
7 ;; Keywords: erlang, languages, processes
16 ;; This package provides support for the programming language Erlang.
17 ;; The package provides an editing mode with lots of bells and
18 ;; whistles, compilation support, and it makes it possible for the
19 ;; user to start Erlang shells that run inside Emacs.
21 ;; See the Erlang distribution for full documentation of this package.
26 ;; Place this file in Emacs load path, byte-compile it, and add the
27 ;; following line to the appropriate init file:
29 ;; (require 'erlang-start)
31 ;; The full documentation contains much more extensive description of
32 ;; the installation procedure.
37 ;; Please send bug reports to the following email address:
38 ;; support@erlang.ericsson.se
40 ;; Please state as exactly as possible:
41 ;; - Version number of Erlang Mode (see the menu), Emacs, Erlang,
42 ;; and of any other relevant software.
43 ;; - What the expected result was.
44 ;; - What you did, preferably in a repeatable step-by-step form.
45 ;; - A description of the unexpected result.
46 ;; - Relevant pieces of Erlang code causing the problem.
47 ;; - Personal Emacs customisations, if any.
49 ;; Should the Emacs generate an error, please set the emacs variable
50 ;; `debug-on-error' to `t'. Repeat the error and enclose the debug
51 ;; information in your bug-report.
53 ;; To set the variable you can use the following command:
54 ;; M-x set-variable RET debug-on-error RET t RET
59 ;; Declare functions in "erlang.el".
62 (autoload 'erlang-mode
"erlang" "Major mode for editing Erlang code." t
)
63 (autoload 'erlang-version
"erlang"
64 "Return the current version of Erlang mode." t
)
65 (autoload 'erlang-shell
"erlang" "Start a new Erlang shell." t
)
66 (autoload 'run-erlang
"erlang" "Start a new Erlang shell." t
)
68 (autoload 'erlang-compile
"erlang"
69 "Compile Erlang module in current buffer." t
)
71 (autoload 'erlang-man-module
"erlang"
72 "Find manual page for MODULE." t
)
73 (autoload 'erlang-man-function
"erlang"
74 "Find manual page for NAME, where NAME is module:function." t
)
76 (autoload 'erlang-find-tag
"erlang"
77 "Like `find-tag'. Capable of retreiving Erlang modules.")
78 (autoload 'erlang-find-tag-other-window
"erlang"
79 "Like `find-tag-other-window'. Capable of retreiving Erlang modules.")
83 ;; Associate files extensions ".erl" and ".hrl" with Erlang mode.
86 (let ((a '("\\.erl\\'" . erlang-mode
))
87 (b '("\\.hrl\\'" . erlang-mode
)))
88 (or (assoc (car a
) auto-mode-alist
)
89 (setq auto-mode-alist
(cons a auto-mode-alist
)))
90 (or (assoc (car b
) auto-mode-alist
)
91 (setq auto-mode-alist
(cons b auto-mode-alist
))))
95 ;; Ignore files ending in ".jam", ".vee", and ".beam" when performing
99 (let ((erl-ext '(".jam" ".vee" ".beam")))
101 (let ((cie completion-ignored-extensions
))
102 (while (and cie
(not (string-equal (car cie
) (car erl-ext
))))
103 (setq cie
(cdr cie
)))
105 (setq completion-ignored-extensions
106 (cons (car erl-ext
) completion-ignored-extensions
))))
107 (setq erl-ext
(cdr erl-ext
))))
114 (provide 'erlang-start
)
116 ;; erlang-start.el ends here.