aboutsummaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorPavel Janík2001-11-29 06:54:34 +0000
committerPavel Janík2001-11-29 06:54:34 +0000
commit346ebf538d5f8fedc1cdf38821b4231df7eab9bc (patch)
treebe8fa37054a86d88fd32c1d603dff7c17be8b676 /src/fileio.c
parent9e67774633b8187e53cd67f88055c8cba70c2f6a (diff)
downloademacs-346ebf538d5f8fedc1cdf38821b4231df7eab9bc.tar.gz
emacs-346ebf538d5f8fedc1cdf38821b4231df7eab9bc.zip
(file-name-coding-system, default-file-name-coding-system): Doc fix (links
to referenced variables added).
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 331d5c85d33..a555f8294d4 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -6111,17 +6111,17 @@ syms_of_fileio ()
6111 6111
6112 DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system, 6112 DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system,
6113 doc: /* *Coding system for encoding file names. 6113 doc: /* *Coding system for encoding file names.
6114If it is nil, default-file-name-coding-system (which see) is used. */); 6114If it is nil, `default-file-name-coding-system' (which see) is used. */);
6115 Vfile_name_coding_system = Qnil; 6115 Vfile_name_coding_system = Qnil;
6116 6116
6117 DEFVAR_LISP ("default-file-name-coding-system", 6117 DEFVAR_LISP ("default-file-name-coding-system",
6118 &Vdefault_file_name_coding_system, 6118 &Vdefault_file_name_coding_system,
6119 doc: /* Default coding system for encoding file names. 6119 doc: /* Default coding system for encoding file names.
6120This variable is used only when file-name-coding-system is nil. 6120This variable is used only when `file-name-coding-system' is nil.
6121 6121
6122This variable is set/changed by the command set-language-environment. 6122This variable is set/changed by the command `set-language-environment'.
6123User should not set this variable manually, 6123User should not set this variable manually,
6124instead use file-name-coding-system to get a constant encoding 6124instead use `file-name-coding-system' to get a constant encoding
6125of file names regardless of the current language environment. */); 6125of file names regardless of the current language environment. */);
6126 Vdefault_file_name_coding_system = Qnil; 6126 Vdefault_file_name_coding_system = Qnil;
6127 6127