Fix correct column to highlight with fill-column-indicator

This commit is contained in:
syl20bnr 2013-04-23 23:08:18 -04:00
parent 69c30f42b6
commit cda41d9043

View file

@ -1,6 +1,5 @@
(require 'fill-column-indicator)
(setq fci-rule-column 79)
(setq fci-rule-width 1)
(setq fci-enabled 0)
@ -10,6 +9,7 @@
(if (> fci-enabled 0) (deactivate-fci) (activate-fci)))
(defun activate-fci ()
(setq fci-rule-column 79)
(setq fci-enabled 1)
(fci-mode 1))