summaryrefslogtreecommitdiff
path: root/src/emacs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 8ba9470f437..9a20a73a378 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1998,7 +1998,7 @@ This function exists on systems that use HAVE_SHM. */)
Lisp_Object tem;
check_pure_size ();
- CHECK_STRING (filename, 0);
+ CHECK_STRING (filename);
filename = Fexpand_file_name (filename, Qnil);
tem = Vpurify_flag;
@@ -2044,11 +2044,11 @@ You must run Emacs in batch mode in order to dump it. */)
symbol = intern ("command-line-process");
specbind (symbol, Qnil);
- CHECK_STRING (filename, 0);
+ CHECK_STRING (filename);
filename = Fexpand_file_name (filename, Qnil);
if (!NILP (symfile))
{
- CHECK_STRING (symfile, 0);
+ CHECK_STRING (symfile);
if (XSTRING (symfile)->size)
symfile = Fexpand_file_name (symfile, Qnil);
}