From ae9271f002adeb7337b826aa0e44b39d84e1a938 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 20 Aug 2010 18:40:39 -0400 Subject: [PATCH] Fixed a bug in first-char-offset affecting indentation. --- nagios-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nagios-mode.el b/nagios-mode.el index aae524f..90cd09f 100644 --- a/nagios-mode.el +++ b/nagios-mode.el @@ -68,7 +68,8 @@ ;; How far is the first character on this line ;; from the beginning of the line? (save-excursion - (+ (pos-offset) (skip-chars-forward " \t")) + (beginning-of-line) + (skip-chars-forward " \t") ) ) -- 2.43.2