aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-09-20 00:34:45 +0000
committerGerd Moellmann1999-09-20 00:34:45 +0000
commit695f302f5c2a6de96b0f3b7ac52af8794807e085 (patch)
treeca9c84c541e3a227f25701e9b2da53403ef4094c /src
parent4ffe723bfed1f3d09a0b2805d61c568065af7d46 (diff)
downloademacs-695f302f5c2a6de96b0f3b7ac52af8794807e085.tar.gz
emacs-695f302f5c2a6de96b0f3b7ac52af8794807e085.zip
(Fset_text_properties): Remove unused variables.
(text_property_list, verify_interval_modification, interval_has_all_properties): Ditto.
Diffstat (limited to 'src')
-rw-r--r--src/textprop.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/textprop.c b/src/textprop.c
index db7f4edd2f1..bd877073e49 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -203,7 +203,7 @@ interval_has_all_properties (plist, i)
203 Lisp_Object plist; 203 Lisp_Object plist;
204 INTERVAL i; 204 INTERVAL i;
205{ 205{
206 register Lisp_Object tail1, tail2, sym1, sym2; 206 register Lisp_Object tail1, tail2, sym1;
207 register int found; 207 register int found;
208 208
209 /* Go through each element of PLIST. */ 209 /* Go through each element of PLIST. */
@@ -1039,7 +1039,6 @@ is the string or buffer containing the text.")
1039 register INTERVAL prev_changed = NULL_INTERVAL; 1039 register INTERVAL prev_changed = NULL_INTERVAL;
1040 register int s, len; 1040 register int s, len;
1041 Lisp_Object ostart, oend; 1041 Lisp_Object ostart, oend;
1042 int have_modified = 0;
1043 1042
1044 ostart = start; 1043 ostart = start;
1045 oend = end; 1044 oend = end;
@@ -1437,7 +1436,6 @@ text_property_list (object, start, end, prop)
1437{ 1436{
1438 struct interval *i; 1437 struct interval *i;
1439 Lisp_Object result; 1438 Lisp_Object result;
1440 int s, e;
1441 1439
1442 result = Qnil; 1440 result = Qnil;
1443 1441
@@ -1571,7 +1569,7 @@ verify_interval_modification (buf, start, end)
1571 int start, end; 1569 int start, end;
1572{ 1570{
1573 register INTERVAL intervals = BUF_INTERVALS (buf); 1571 register INTERVAL intervals = BUF_INTERVALS (buf);
1574 register INTERVAL i, prev; 1572 register INTERVAL i;
1575 Lisp_Object hooks; 1573 Lisp_Object hooks;
1576 register Lisp_Object prev_mod_hooks; 1574 register Lisp_Object prev_mod_hooks;
1577 Lisp_Object mod_hooks; 1575 Lisp_Object mod_hooks;