diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-11-02 20:46:55 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-11-02 20:46:55 +0000 |
commit | b78265036088d5d0eac2a03b929adb50aa59b45c (patch) | |
tree | de99fe733144deb926fd31ee7bdff95cb1bc5073 /src/w32console.c | |
parent | 00a2cef7d11a1b193891eb3d28274ef7fc7c3fe4 (diff) | |
download | emacs-b78265036088d5d0eac2a03b929adb50aa59b45c.tar.gz emacs-b78265036088d5d0eac2a03b929adb50aa59b45c.tar.bz2 emacs-b78265036088d5d0eac2a03b929adb50aa59b45c.zip |
Update usage of CHECK_ macros (remove unused second argument).
Diffstat (limited to 'src/w32console.c')
-rw-r--r-- | src/w32console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32console.c b/src/w32console.c index 5bd4ab1f3f4..41693c63a85 100644 --- a/src/w32console.c +++ b/src/w32console.c @@ -428,7 +428,7 @@ SOUND is nil to use the normal beep.") (sound) Lisp_Object sound; { - CHECK_SYMBOL (sound, 0); + CHECK_SYMBOL (sound); if (NILP (sound)) sound_type = 0xFFFFFFFF; |