diff options
Diffstat (limited to 'src/fileio.c')
| -rw-r--r-- | src/fileio.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/fileio.c b/src/fileio.c index 10d4b8bc15e..6b5552f14c2 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -6462,39 +6462,39 @@ behaves as if file names were encoded in `utf-8'. */); | |||
| 6462 | DEFSYM (Qcar_less_than_car, "car-less-than-car"); | 6462 | DEFSYM (Qcar_less_than_car, "car-less-than-car"); |
| 6463 | 6463 | ||
| 6464 | Fput (Qfile_error, Qerror_conditions, | 6464 | Fput (Qfile_error, Qerror_conditions, |
| 6465 | Fpurecopy (list2 (Qfile_error, Qerror))); | 6465 | list2 (Qfile_error, Qerror)); |
| 6466 | Fput (Qfile_error, Qerror_message, | 6466 | Fput (Qfile_error, Qerror_message, |
| 6467 | build_pure_c_string ("File error")); | 6467 | build_string ("File error")); |
| 6468 | 6468 | ||
| 6469 | Fput (Qfile_already_exists, Qerror_conditions, | 6469 | Fput (Qfile_already_exists, Qerror_conditions, |
| 6470 | Fpurecopy (list3 (Qfile_already_exists, Qfile_error, Qerror))); | 6470 | list3 (Qfile_already_exists, Qfile_error, Qerror)); |
| 6471 | Fput (Qfile_already_exists, Qerror_message, | 6471 | Fput (Qfile_already_exists, Qerror_message, |
| 6472 | build_pure_c_string ("File already exists")); | 6472 | build_string ("File already exists")); |
| 6473 | 6473 | ||
| 6474 | Fput (Qfile_date_error, Qerror_conditions, | 6474 | Fput (Qfile_date_error, Qerror_conditions, |
| 6475 | Fpurecopy (list3 (Qfile_date_error, Qfile_error, Qerror))); | 6475 | list3 (Qfile_date_error, Qfile_error, Qerror)); |
| 6476 | Fput (Qfile_date_error, Qerror_message, | 6476 | Fput (Qfile_date_error, Qerror_message, |
| 6477 | build_pure_c_string ("Cannot set file date")); | 6477 | build_string ("Cannot set file date")); |
| 6478 | 6478 | ||
| 6479 | Fput (Qfile_missing, Qerror_conditions, | 6479 | Fput (Qfile_missing, Qerror_conditions, |
| 6480 | Fpurecopy (list3 (Qfile_missing, Qfile_error, Qerror))); | 6480 | list3 (Qfile_missing, Qfile_error, Qerror)); |
| 6481 | Fput (Qfile_missing, Qerror_message, | 6481 | Fput (Qfile_missing, Qerror_message, |
| 6482 | build_pure_c_string ("File is missing")); | 6482 | build_string ("File is missing")); |
| 6483 | 6483 | ||
| 6484 | Fput (Qpermission_denied, Qerror_conditions, | 6484 | Fput (Qpermission_denied, Qerror_conditions, |
| 6485 | Fpurecopy (list3 (Qpermission_denied, Qfile_error, Qerror))); | 6485 | Fpurecopy (list3 (Qpermission_denied, Qfile_error, Qerror))); |
| 6486 | Fput (Qpermission_denied, Qerror_message, | 6486 | Fput (Qpermission_denied, Qerror_message, |
| 6487 | build_pure_c_string ("Cannot access file or directory")); | 6487 | build_string ("Cannot access file or directory")); |
| 6488 | 6488 | ||
| 6489 | Fput (Qfile_notify_error, Qerror_conditions, | 6489 | Fput (Qfile_notify_error, Qerror_conditions, |
| 6490 | Fpurecopy (list3 (Qfile_notify_error, Qfile_error, Qerror))); | 6490 | list3 (Qfile_notify_error, Qfile_error, Qerror)); |
| 6491 | Fput (Qfile_notify_error, Qerror_message, | 6491 | Fput (Qfile_notify_error, Qerror_message, |
| 6492 | build_pure_c_string ("File notification error")); | 6492 | build_string ("File notification error")); |
| 6493 | 6493 | ||
| 6494 | Fput (Qremote_file_error, Qerror_conditions, | 6494 | Fput (Qremote_file_error, Qerror_conditions, |
| 6495 | Fpurecopy (list3 (Qremote_file_error, Qfile_error, Qerror))); | 6495 | Fpurecopy (list3 (Qremote_file_error, Qfile_error, Qerror))); |
| 6496 | Fput (Qremote_file_error, Qerror_message, | 6496 | Fput (Qremote_file_error, Qerror_message, |
| 6497 | build_pure_c_string ("Remote file error")); | 6497 | build_string ("Remote file error")); |
| 6498 | 6498 | ||
| 6499 | DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist, | 6499 | DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist, |
| 6500 | doc: /* Alist of elements (REGEXP . HANDLER) for file names handled specially. | 6500 | doc: /* Alist of elements (REGEXP . HANDLER) for file names handled specially. |