Silence some variable set but not used warnings.
authorNelson Ferreira <nelson.ferreira@ieee.org>
Sun, 7 Jun 2015 13:36:16 +0000 (09:36 -0400)
committerNelson Ferreira <nelson.ferreira@ieee.org>
Sun, 7 Jun 2015 13:48:32 +0000 (09:48 -0400)
* modules/ase/ase-interval.c(ase-interval): Provide usage for
          'args'.  Not removed in order to provide an additional stack
          reference for argument lisp objects.

* modules/cl/cl-loop.c(cl:loop-sentence): Provide usage for
          'parse_result'.  Could be useful in debug inspection.

Signed-off-by: Nelson Ferreira <nelson.ferreira@ieee.org>
modules/ase/ase-interval.c
modules/cl/cl-loop.c

index 2814745..6f781f1 100644 (file)
@@ -3285,6 +3285,7 @@ If no special topology is given, it defaults to the po topology.
 {
        Lisp_Object result = Qnil;
        Lisp_Object args[2] = {lower, upper};
+        (void)args;
 
        CHECK_COMPARABLE(lower);
        if (NILP(upper))
index 41b71a1..40d3148 100644 (file)
@@ -1588,6 +1588,7 @@ The Common Lisp loop macro.
 
        /* now parse the stuff */
        parse_result = cl_loop_yyparse(&args, lsen, &context, &token);
+       (void)parse_result;
 
        UNGCPRO;
        return loop_sentence;