aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/textprop.c b/src/textprop.c
index 3fff8c42b33..67f517182ea 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -1741,6 +1741,19 @@ Return t if any property was actually removed, nil otherwise. */)
1741 } 1741 }
1742 len -= LENGTH (i); 1742 len -= LENGTH (i);
1743 i = next_interval (i); 1743 i = next_interval (i);
1744 if(!i)
1745 {
1746 if (modified)
1747 {
1748 if (BUFFERP (object))
1749 signal_after_change (XINT (start),
1750 XINT (end) - XINT (start),
1751 XINT (end) - XINT (start));
1752 return Qt;
1753 }
1754 else
1755 return Qnil;
1756 }
1744 } 1757 }
1745} 1758}
1746 1759