aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 702c1438283..c97f4daf20c 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -6259,6 +6259,7 @@ syms_of_fileio (void)
6259 DEFSYM (Qfile_date_error, "file-date-error"); 6259 DEFSYM (Qfile_date_error, "file-date-error");
6260 DEFSYM (Qfile_missing, "file-missing"); 6260 DEFSYM (Qfile_missing, "file-missing");
6261 DEFSYM (Qfile_notify_error, "file-notify-error"); 6261 DEFSYM (Qfile_notify_error, "file-notify-error");
6262 DEFSYM (Qremote_file_error, "remote-file-error");
6262 DEFSYM (Qexcl, "excl"); 6263 DEFSYM (Qexcl, "excl");
6263 6264
6264 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system, 6265 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system,
@@ -6320,6 +6321,11 @@ behaves as if file names were encoded in `utf-8'. */);
6320 Fput (Qfile_notify_error, Qerror_message, 6321 Fput (Qfile_notify_error, Qerror_message,
6321 build_pure_c_string ("File notification error")); 6322 build_pure_c_string ("File notification error"));
6322 6323
6324 Fput (Qremote_file_error, Qerror_conditions,
6325 Fpurecopy (list3 (Qremote_file_error, Qfile_error, Qerror)));
6326 Fput (Qremote_file_error, Qerror_message,
6327 build_pure_c_string ("Remote file error"));
6328
6323 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist, 6329 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist,
6324 doc: /* Alist of elements (REGEXP . HANDLER) for file names handled specially. 6330 doc: /* Alist of elements (REGEXP . HANDLER) for file names handled specially.
6325If a file name matches REGEXP, all I/O on that file is done by calling 6331If a file name matches REGEXP, all I/O on that file is done by calling