diff --git a/ChangeLog b/ChangeLog
index fea3e8551bdcbb9a3fa29dabfea95bfe0d83b7f7..a7817753618d02521ab3b7c50001bf26185cdfde 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-09-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
+
+ * src/utils.c, src/utils.h, src/editor.c:
+   Use GRegex for snippet indentation replacement - fixes wrong 
+   behaviour with Mac line endings.
+
+
 2011-09-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
 
  * src/build.c, doc/pluginsignals.c:
diff --git a/src/editor.c b/src/editor.c
index b8419a02e59bd48d8b4768fe42034f33bf1cdbf2..c112a8ebdb37bd97776263ea9eb479d7bb7b3be1 100644
--- a/src/editor.c
+++ b/src/editor.c
@@ -2272,63 +2272,18 @@ static void snippets_replace_specials(gpointer key, gpointer value, gpointer use
 }
 
 
-static gboolean utils_regex_find(regex_t *regex, const gchar *haystack, gsize start,
-		gsize nmatches, regmatch_t *matches)
-{
-	gint eflags = 0;
-
-	if (start > 0)
-	{
-		gchar c = haystack[start - 1];
-
-		if (c == '\n' || c == '\r')
-			eflags = REG_NOTBOL;
-	}
-	return regexec(regex, haystack + start, nmatches, matches, eflags) == 0;
-}
-
-
-/* match_index: which match to replace, 0 for whole regex.
- * note: this doesn't support backreferences in replacements */
-static guint utils_string_regex_replace_all(GString *haystack,
-		regex_t *regex, guint match_index, const gchar *replace)
-{
-	gssize pos;
-	regmatch_t matches[10];
-	guint ret = 0;
-
-	g_return_val_if_fail(match_index < 10, 0);
-
-	/* ensure haystack->str is not null */
-	if (haystack->len == 0)
-		return 0;
-
-	pos = 0;
-	while (utils_regex_find(regex, haystack->str, pos, G_N_ELEMENTS(matches), matches))
-	{
-		regmatch_t *match = &matches[match_index];
-
-		g_return_val_if_fail(match->rm_so >= 0, FALSE);
-		pos += match->rm_so;
-		pos = utils_string_replace(haystack, pos, match->rm_eo - match->rm_so, replace);
-		ret++;
-	}
-	return ret;
-}
-
-
 static void fix_indentation(GeanyEditor *editor, GString *buf)
 {
 	const GeanyIndentPrefs *iprefs = editor_get_indent_prefs(editor);
 	gchar *whitespace;
-	regex_t regex;
-	gint cflags = REG_EXTENDED | REG_NEWLINE;
+	GRegex *regex;
+	gint cflags = G_REGEX_MULTILINE;
 
 	/* transform leading tabs into indent widths (in spaces) */
 	whitespace = g_strnfill(iprefs->width, ' ');
-	regcomp(&regex, "^ *(\t)", cflags);
-	while (utils_string_regex_replace_all(buf, &regex, 1, whitespace));
-	regfree(&regex);
+	regex = g_regex_new("^ *(\t)", cflags, 0, NULL);
+	while (utils_string_regex_replace_all(buf, regex, 1, whitespace, TRUE));
+	g_regex_unref(regex);
 
 	/* remaining tabs are for alignment */
 	if (iprefs->type != GEANY_INDENT_TYPE_TABS)
@@ -2343,9 +2298,9 @@ static void fix_indentation(GeanyEditor *editor, GString *buf)
 		setptr(whitespace, g_strnfill(sci_get_tab_width(editor->sci), ' '));
 		str = g_strdup_printf("^\t*(%s)", whitespace);
 
-		regcomp(&regex, str, cflags);
-		while (utils_string_regex_replace_all(buf, &regex, 1, "\t"));
-		regfree(&regex);
+		regex = g_regex_new(str, cflags, 0, NULL);
+		while (utils_string_regex_replace_all(buf, regex, 1, "\t", TRUE));
+		g_regex_unref(regex);
 		g_free(str);
 	}
 	g_free(whitespace);
diff --git a/src/utils.c b/src/utils.c
index c62f939375c35c1b9259a77d7f74fb5f88315436..a4c6567384cb4981b441affb89f44c09772c4567 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -1617,6 +1617,45 @@ guint utils_string_replace_first(GString *haystack, const gchar *needle, const g
 }
 
 
+/* Similar to g_regex_replace but allows matching a subgroup.
+ * match_num: which match to replace, 0 for whole match.
+ * literal: FALSE to interpret escape sequences in @a replace.
+ * returns: number of replacements.
+ * bug: replaced text can affect matching of ^ or \b */
+guint utils_string_regex_replace_all(GString *haystack, GRegex *regex,
+		guint match_num, const gchar *replace, gboolean literal)
+{
+	GMatchInfo *minfo;
+	guint ret = 0;
+	gint start = 0;
+
+	g_assert(literal); /* escapes not implemented yet */
+	g_return_val_if_fail(replace, 0);
+
+	/* ensure haystack->str is not null */
+	if (haystack->len == 0)
+		return 0;
+
+	/* passing a start position makes G_REGEX_MATCH_NOTBOL automatic */
+	while (g_regex_match_full(regex, haystack->str, -1, start, 0, &minfo, NULL))
+	{
+		gint end, len;
+		
+		g_match_info_fetch_pos(minfo, match_num, &start, &end);
+		len = end - start;
+		utils_string_replace(haystack, start, len, replace);
+		ret++;
+		
+		/* skip past whole match */
+		g_match_info_fetch_pos(minfo, 0, NULL, &end);
+		start = end - len + strlen(replace);
+		g_match_info_free(minfo);
+	}
+	g_match_info_free(minfo);
+	return ret;
+}
+
+
 /* Get project or default startup directory (if set), or NULL. */
 const gchar *utils_get_default_dir_utf8(void)
 {
diff --git a/src/utils.h b/src/utils.h
index 8d3a5c3c23439c7385a92053a60ac8fdca0dbea3..f1c2b99e5226be84dbfe892cc2a1b09f54747628 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -178,6 +178,9 @@ guint utils_string_replace_all(GString *haystack, const gchar *needle, const gch
 
 guint utils_string_replace_first(GString *haystack, const gchar *needle, const gchar *replace);
 
+guint utils_string_regex_replace_all(GString *haystack, GRegex *regex,
+		guint match_num, const gchar *replace, gboolean literal);
+
 void utils_str_replace_all(gchar **haystack, const gchar *needle, const gchar *replacement);
 
 gint utils_strpos(const gchar* haystack, const gchar *needle);