diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-05-25 17:40:52 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-05-25 17:40:52 +0000 |
commit | 3789dcdf7160986fabc47633c80b2265feb7350e (patch) | |
tree | e4f9de73d68363f3288a2d5bcfb6337002022f50 /src | |
parent | 2664c0bc59d0c613882649ca31ef27c50dd9901c (diff) | |
download | emacs-3789dcdf7160986fabc47633c80b2265feb7350e.tar.gz |
(Fbyte_code): Remove `unused val' warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 33f1ae53e28..881834367ab 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -638,7 +638,7 @@ If the third argument is incorrect, Emacs may crash. */) AFTER_POTENTIAL_GC (); } } - POP; + (void) POP; break; case Bdup: |