aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tools/emacs/erlang.el
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2016-10-07 10:04:56 +0200
committerDan Gudmundsson <[email protected]>2016-10-07 10:04:56 +0200
commit672c14dc0ed9e681856932c58b26d08f3d449e71 (patch)
tree1750c85999e0bf7946d7d3b49e18d441f356f8ec /lib/tools/emacs/erlang.el
parente9bb2e8797931efefac711d1b6d0de9571024c4d (diff)
parent668e0ae7e0e06edc03eb188f1cb6b223ec8c8d47 (diff)
downloadotp-672c14dc0ed9e681856932c58b26d08f3d449e71.tar.gz
otp-672c14dc0ed9e681856932c58b26d08f3d449e71.tar.bz2
otp-672c14dc0ed9e681856932c58b26d08f3d449e71.zip
Merge branch 'maint'
* maint: New file erlang-edoc.el to support EDoc in erlang-mode Allow reusing mnesia select continuations Fix guard test for chardata
Diffstat (limited to 'lib/tools/emacs/erlang.el')
-rw-r--r--lib/tools/emacs/erlang.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/tools/emacs/erlang.el b/lib/tools/emacs/erlang.el
index b3dda32928..03115fef33 100644
--- a/lib/tools/emacs/erlang.el
+++ b/lib/tools/emacs/erlang.el
@@ -78,6 +78,10 @@
;; Variables:
+(defgroup erlang nil
+ "The Erlang programming language."
+ :group 'languages)
+
(defconst erlang-version "2.7"
"The version number of Erlang mode.")
@@ -2446,6 +2450,7 @@ Return the amount the indentation changed by."
;; after the indentation. Else stay at same point in text.
(if (> (- (point-max) pos) (point))
(goto-char (- (point-max) pos)))
+ (run-hooks 'erlang-indent-line-hook)
shift-amt))