Mercurial > emacs
comparison src/dired.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 | bee6bc3785cb |
| children | a17c8b15ef1b |
comparison
equal
deleted
inserted
replaced
| 40655:45453187feeb | 40656:cdfd4d09b79a |
|---|---|
| 154 directory = Fexpand_file_name (directory, Qnil); | 154 directory = Fexpand_file_name (directory, Qnil); |
| 155 dirfilename = Fdirectory_file_name (directory); | 155 dirfilename = Fdirectory_file_name (directory); |
| 156 | 156 |
| 157 if (!NILP (match)) | 157 if (!NILP (match)) |
| 158 { | 158 { |
| 159 CHECK_STRING (match, 3); | 159 CHECK_STRING (match); |
| 160 | 160 |
| 161 /* MATCH might be a flawed regular expression. Rather than | 161 /* MATCH might be a flawed regular expression. Rather than |
| 162 catching and signaling our own errors, we just call | 162 catching and signaling our own errors, we just call |
| 163 compile_pattern to do the work for us. */ | 163 compile_pattern to do the work for us. */ |
| 164 /* Pass 1 for the MULTIBYTE arg | 164 /* Pass 1 for the MULTIBYTE arg |
| 486 readfunc = readdir; | 486 readfunc = readdir; |
| 487 if (ver_flag) | 487 if (ver_flag) |
| 488 readfunc = readdirver; | 488 readfunc = readdirver; |
| 489 file = Fupcase (file); | 489 file = Fupcase (file); |
| 490 #else /* not VMS */ | 490 #else /* not VMS */ |
| 491 CHECK_STRING (file, 0); | 491 CHECK_STRING (file); |
| 492 #endif /* not VMS */ | 492 #endif /* not VMS */ |
| 493 | 493 |
| 494 #ifdef FILE_SYSTEM_CASE | 494 #ifdef FILE_SYSTEM_CASE |
| 495 file = FILE_SYSTEM_CASE (file); | 495 file = FILE_SYSTEM_CASE (file); |
| 496 #endif | 496 #endif |
