src/coding.c (decode_coding_gap): Don't remove the character before
a newline unless it's a CR character.
+2013-04-28 Eli Zaretskii <eliz@gnu.org>
+
+ * coding.c (decode_coding_gap): Don't remove the character before
+ a newline unless it's a CR character. (Bug#14287)
+
2013-04-28 Dan Nicolaescu <dann@gnu.org>
* dispextern.h (struct face): Move enum face_underline_type
while (src_beg < src)
{
*--dst = *--src;
- if (*src == '\n')
+ if (*src == '\n' && src > src_beg && src[-1] == '\r')
src--;
}
diff = dst - src;