aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>1999-09-20 00:34:45 +0000
committerGerd Moellmann <[email protected]>1999-09-20 00:34:45 +0000
commit695f302f5c2a6de96b0f3b7ac52af8794807e085 (patch)
treeca9c84c541e3a227f25701e9b2da53403ef4094c /src/textprop.c
parent4ffe723bfed1f3d09a0b2805d61c568065af7d46 (diff)
(Fset_text_properties): Remove unused variables.
(text_property_list, verify_interval_modification, interval_has_all_properties): Ditto.
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/textprop.c b/src/textprop.c
index db7f4edd2f..bd877073e4 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -203,7 +203,7 @@ interval_has_all_properties (plist, i)
Lisp_Object plist;
INTERVAL i;
{
- register Lisp_Object tail1, tail2, sym1, sym2;
+ register Lisp_Object tail1, tail2, sym1;
register int found;
/* Go through each element of PLIST. */
@@ -1039,7 +1039,6 @@ is the string or buffer containing the text.")
register INTERVAL prev_changed = NULL_INTERVAL;
register int s, len;
Lisp_Object ostart, oend;
- int have_modified = 0;
ostart = start;
oend = end;
@@ -1437,7 +1436,6 @@ text_property_list (object, start, end, prop)
{
struct interval *i;
Lisp_Object result;
- int s, e;
result = Qnil;
@@ -1571,7 +1569,7 @@ verify_interval_modification (buf, start, end)
int start, end;
{
register INTERVAL intervals = BUF_INTERVALS (buf);
- register INTERVAL i, prev;
+ register INTERVAL i;
Lisp_Object hooks;
register Lisp_Object prev_mod_hooks;
Lisp_Object mod_hooks;