diff options
author | Bozhidar Batsov <[email protected]> | 2016-12-15 09:02:30 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2017-02-08 12:45:37 +0100 |
commit | d1dce31ac092953b4610237f6bfe44055e44aa67 (patch) | |
tree | 47e58451c6fb7ffef9ac6c5ea87a3310af6324c5 | |
parent | fc4b84d9d2fd96280a5c4d7bb84fe1592e46fd0b (diff) | |
download | otp-d1dce31ac092953b4610237f6bfe44055e44aa67.tar.gz otp-d1dce31ac092953b4610237f6bfe44055e44aa67.tar.bz2 otp-d1dce31ac092953b4610237f6bfe44055e44aa67.zip |
Fix some whitespace in erlang-mode
-rw-r--r-- | lib/tools/emacs/erlang.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/tools/emacs/erlang.el b/lib/tools/emacs/erlang.el index 51f7e8e26c..1d9fece230 100644 --- a/lib/tools/emacs/erlang.el +++ b/lib/tools/emacs/erlang.el @@ -2959,7 +2959,7 @@ Return nil if inside string, t if in a comment." ;; Removed it made multi clause fun's look to bad (setq off (+ erlang-indent-level (if (not erlang-icr-indent) erlang-indent-level - erlang-icr-indent))))) + erlang-icr-indent))))) (let ((base (erlang-indent-find-base stack indent-point off skip))) ;; Special cases (goto-char indent-point) @@ -3822,10 +3822,10 @@ In the future the list may contain more elements." "Returns non-nil if there is an exported function in the current buffer between point and MAX." (block nil - (while (and (not erlang-inhibit-exported-function-name-face) - (erlang-match-next-function max)) - (when (erlang-last-match-exported-p) - (return (match-data)))))) + (while (and (not erlang-inhibit-exported-function-name-face) + (erlang-match-next-function max)) + (when (erlang-last-match-exported-p) + (return (match-data)))))) (defun erlang-match-next-function (max) "Searches forward in current buffer for the next erlang function, |