aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/bytecode.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8d00ee9c73c..304c76f687e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12002-03-18 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 12002-03-18 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 2
3 * bytecode.c (Fbyte_code): Discard unused computed value to
4 prevent gcc warning.
5
3 * lisp.h (Fplist_member): Add prototype. 6 * lisp.h (Fplist_member): Add prototype.
4 7
52002-03-18 Kim F. Storm <storm@cua.dk> 82002-03-18 Kim F. Storm <storm@cua.dk>
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: