]> git.eshelyaron.com Git - emacs.git/commitdiff
* bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 1 Apr 2011 07:18:17 +0000 (00:18 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 1 Apr 2011 07:18:17 +0000 (00:18 -0700)
that is set but not used.

src/ChangeLog
src/bytecode.c

index 0d2e48709b0c179865f4473d6e572ab72c0f2b02..dae88397ce02fc3ff7c97124454a1a590c9afc78 100644 (file)
@@ -1,5 +1,8 @@
 2011-04-01  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
+       that is set but not used.
+
        * print.c (print_object): Remove var that is set but not used.
 
        Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
index a7be8e26f279c9b48d98cbace18b73e14c79ee46..5a62c913a40bbc7d0b855d086cbccfe83c0327ca 100644 (file)
@@ -425,8 +425,8 @@ If the third argument is incorrect, Emacs may crash.  */)
 #ifdef BYTE_CODE_SAFE
   int const_length = XVECTOR (vector)->size;
   Lisp_Object *stacke;
-#endif
   int bytestr_length;
+#endif
   struct byte_stack stack;
   Lisp_Object *top;
   Lisp_Object result;
@@ -453,7 +453,9 @@ If the third argument is incorrect, Emacs may crash.  */)
        convert them back to the originally intended unibyte form.  */
     bytestr = Fstring_as_unibyte (bytestr);
 
+#ifdef BYTE_CODE_SAFE
   bytestr_length = SBYTES (bytestr);
+#endif
   vectorp = XVECTOR (vector)->contents;
 
   stack.byte_string = bytestr;