aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorPavel Janík2002-03-18 18:18:21 +0000
committerPavel Janík2002-03-18 18:18:21 +0000
commit18f85cdd59204ec4f636cba3122e83c76b462dee (patch)
treea41227ac8adcd60892b65efe8a74b046e4b9063b /src/bytecode.c
parent99982883b7995f5c586ac981c7e71700fe25beb6 (diff)
downloademacs-18f85cdd59204ec4f636cba3122e83c76b462dee.tar.gz
emacs-18f85cdd59204ec4f636cba3122e83c76b462dee.zip
(Fbyte_code): Discard unused computed value to prevent gcc warning.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index f24132dae25..bcd303f8d73 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -637,7 +637,7 @@ If the third argument is incorrect, Emacs may crash. */)
637 AFTER_POTENTIAL_GC (); 637 AFTER_POTENTIAL_GC ();
638 } 638 }
639 } 639 }
640 POP; 640 (void) POP;
641 break; 641 break;
642 642
643 case Bdup: 643 case Bdup: