aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2001-01-02 13:58:26 +0000
committerEli Zaretskii2001-01-02 13:58:26 +0000
commit7d01951074cdf4923b04fd151b55da5c24324720 (patch)
tree2a77578c6eeeca73851111bae3793f8932d244dd /src
parent3c3bf422a59b81f2543a1c20cf4a50dd3e52ad04 (diff)
downloademacs-7d01951074cdf4923b04fd151b55da5c24324720.tar.gz
emacs-7d01951074cdf4923b04fd151b55da5c24324720.zip
(run_composition_function): Remove unused variable
`val'. (update_compositions): Remove unused variable `hook'.
Diffstat (limited to 'src')
-rw-r--r--src/composite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/composite.c b/src/composite.c
index 83d5b0d6f25..04836fb36d1 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -453,7 +453,7 @@ run_composition_function (from, to, prop)
453 int from, to; 453 int from, to;
454 Lisp_Object prop; 454 Lisp_Object prop;
455{ 455{
456 Lisp_Object func, val; 456 Lisp_Object func;
457 int start, end; 457 int start, end;
458 458
459 func = COMPOSITION_MODIFICATION_FUNC (prop); 459 func = COMPOSITION_MODIFICATION_FUNC (prop);
@@ -485,7 +485,7 @@ void
485update_compositions (from, to, check_mask) 485update_compositions (from, to, check_mask)
486 int from, to; 486 int from, to;
487{ 487{
488 Lisp_Object prop, hook; 488 Lisp_Object prop;
489 int start, end; 489 int start, end;
490 490
491 /* If FROM and TO are not in a valid range, do nothing. */ 491 /* If FROM and TO are not in a valid range, do nothing. */