branch: elpa/gnuplot
commit 566e92f8d7be042f25271701d7f638ed108e7e13
Author: Jonathan Oddie <[email protected]>
Commit: Jonathan Oddie <[email protected]>
Fixed a dumb bug in gnuplot-indent-line.
---
gnuplot.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnuplot.el b/gnuplot.el
index 1de6333..b658719 100644
--- a/gnuplot.el
+++ b/gnuplot.el
@@ -2264,7 +2264,7 @@ For most lines, set indentation to previous level of
indentation.
Add additional indentation for continuation lines."
(interactive)
(let (indent)
- (if (gnuplot-in-string (beginning-of-line))
+ (if (gnuplot-in-string (point-at-bol))
;; Continued strings begin at left margin
(setq indent 0)
(save-excursion