comparison src/emacs.c @ 40656:cdfd4d09b79a

Update usage of CHECK_ macros (remove unused second argument).
author Pavel Janík <Pavel@Janik.cz>
date Fri, 02 Nov 2001 20:46:55 +0000
parents 6ae61fbe6134
children fd83ec62a495
comparison
equal deleted inserted replaced
40655:45453187feeb 40656:cdfd4d09b79a
1996 { 1996 {
1997 extern char my_edata[]; 1997 extern char my_edata[];
1998 Lisp_Object tem; 1998 Lisp_Object tem;
1999 1999
2000 check_pure_size (); 2000 check_pure_size ();
2001 CHECK_STRING (filename, 0); 2001 CHECK_STRING (filename);
2002 filename = Fexpand_file_name (filename, Qnil); 2002 filename = Fexpand_file_name (filename, Qnil);
2003 2003
2004 tem = Vpurify_flag; 2004 tem = Vpurify_flag;
2005 Vpurify_flag = Qnil; 2005 Vpurify_flag = Qnil;
2006 2006
2042 so that the dumped Emacs will process its command line 2042 so that the dumped Emacs will process its command line
2043 and set up to work with X windows if appropriate. */ 2043 and set up to work with X windows if appropriate. */
2044 symbol = intern ("command-line-process"); 2044 symbol = intern ("command-line-process");
2045 specbind (symbol, Qnil); 2045 specbind (symbol, Qnil);
2046 2046
2047 CHECK_STRING (filename, 0); 2047 CHECK_STRING (filename);
2048 filename = Fexpand_file_name (filename, Qnil); 2048 filename = Fexpand_file_name (filename, Qnil);
2049 if (!NILP (symfile)) 2049 if (!NILP (symfile))
2050 { 2050 {
2051 CHECK_STRING (symfile, 0); 2051 CHECK_STRING (symfile);
2052 if (XSTRING (symfile)->size) 2052 if (XSTRING (symfile)->size)
2053 symfile = Fexpand_file_name (symfile, Qnil); 2053 symfile = Fexpand_file_name (symfile, Qnil);
2054 } 2054 }
2055 2055
2056 tem = Vpurify_flag; 2056 tem = Vpurify_flag;