]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
authorGerd Moellmann <gerd@gnu.org>
Wed, 26 Jan 2000 12:02:58 +0000 (12:02 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 26 Jan 2000 12:02:58 +0000 (12:02 +0000)
src/ChangeLog
src/bytecode.c

index f3a765f5661e7a9fb1a784746655ed9fc61f8da2..e92e1dad8094ea31271a775e4db5c801a94ca77b 100644 (file)
@@ -1,3 +1,7 @@
+2000-01-26  Gerd Moellmann  <gerd@gnu.org>
+
+       * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
+
 2000-01-25  Gerd Moellmann  <gerd@gnu.org>
 
        * charset.c (Fstring): If there is a multibyte char among
index d103d2f1177a81a6efa737900080946498bc4980..084dfef6fb570dc2fb26d4245d9a111373e93484 100644 (file)
@@ -433,7 +433,7 @@ If the third argument is incorrect, Emacs may crash.")
   while (1)
     {
 #ifdef BYTE_CODE_SAFE
-      if (top > stacks)
+      if (top > stacke)
        error ("Byte code stack overflow (byte compiler bug), pc %d, depth %d",
               stack.pc - stack.byte_string_start, stacke - top);
       else if (top < stack.bottom - 1)