summaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/print.c b/src/print.c
index 832e9af46bd..f1f1af787eb 100644
--- a/src/print.c
+++ b/src/print.c
@@ -532,7 +532,7 @@ PRINTCHARFUN defaults to the value of `standard-output' (which see). */)
if (NILP (printcharfun))
printcharfun = Vstandard_output;
- CHECK_NUMBER (character, 0);
+ CHECK_NUMBER (character);
PRINTPREPARE;
PRINTCHAR (XINT (character));
PRINTFINISH;
@@ -663,7 +663,7 @@ usage: (with-output-to-temp-buffer BUFFNAME BODY ...) */)
GCPRO1(args);
name = Feval (Fcar (args));
- CHECK_STRING (name, 0);
+ CHECK_STRING (name);
temp_output_buffer_setup (XSTRING (name)->data);
buf = Vstandard_output;
UNGCPRO;
@@ -875,7 +875,7 @@ to make it write to the debugging output. */)
(character)
Lisp_Object character;
{
- CHECK_NUMBER (character, 0);
+ CHECK_NUMBER (character);
putc (XINT (character), stderr);
#ifdef WINDOWSNT