diff options
author | Grigory Starinkin <[email protected]> | 2018-08-28 10:18:53 +0100 |
---|---|---|
committer | Grigory Starinkin <[email protected]> | 2018-08-28 10:18:53 +0100 |
commit | 32a9f9b2eb14623296ed6cb91d96ade0691134d4 (patch) | |
tree | a078de3b9dc5f970c3b57d03bf3d919d1c354cfc /lib/tools/emacs | |
parent | 8d22b08cddb654d49cf86a43e2d31e5736e347fe (diff) | |
download | otp-32a9f9b2eb14623296ed6cb91d96ade0691134d4.tar.gz otp-32a9f9b2eb14623296ed6cb91d96ade0691134d4.tar.bz2 otp-32a9f9b2eb14623296ed6cb91d96ade0691134d4.zip |
erlang-mode: fix void variable align-rules-list error
erlang-mode crashes with the following error:
Symbol’s value as variable is void: align-rules-list
caused by #1728
Diffstat (limited to 'lib/tools/emacs')
-rw-r--r-- | lib/tools/emacs/erlang.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tools/emacs/erlang.el b/lib/tools/emacs/erlang.el index 242a5abe72..82e5c2222d 100644 --- a/lib/tools/emacs/erlang.el +++ b/lib/tools/emacs/erlang.el @@ -77,7 +77,7 @@ ;;; Code: (eval-when-compile (require 'cl)) -(eval-when-compile (require 'align)) +(require 'align) ;; Variables: |