branch: externals/cm-mode
commit 93c2abeaa412ed8eb4dceda101729c38365f5b15
Author: Joost Kremers <[email protected]>
Commit: Joost Kremers <[email protected]>
Fix indentation.
---
cm-mode.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/cm-mode.el b/cm-mode.el
index 69f84031eb..d68f0f97ac 100644
--- a/cm-mode.el
+++ b/cm-mode.el
@@ -292,10 +292,10 @@ it is added automatically."
(> (prefix-numeric-value arg) 0))))
(if enable
(progn
- (add-to-list 'before-change-functions 'cm-before-change t)
- (add-to-list 'after-change-functions 'cm-after-change)
- (setq cm-follow-changes t)
- (message "Follow changes mode activated."))
+ (add-to-list 'before-change-functions 'cm-before-change t)
+ (add-to-list 'after-change-functions 'cm-after-change)
+ (setq cm-follow-changes t)
+ (message "Follow changes mode activated."))
(setq before-change-functions (delq 'cm-before-change
before-change-functions))
(setq after-change-functions (delq 'cm-after-change
after-change-functions))
(setq cm-follow-changes nil)