From: Pavel Janík Date: Thu, 29 Nov 2001 06:54:34 +0000 (+0000) Subject: (file-name-coding-system, default-file-name-coding-system): Doc fix (links X-Git-Tag: ttn-vms-21-2-B4~18046 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=346ebf538d5f8fedc1cdf38821b4231df7eab9bc;p=emacs.git (file-name-coding-system, default-file-name-coding-system): Doc fix (links to referenced variables added). --- 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 () DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system, doc: /* *Coding system for encoding file names. -If it is nil, default-file-name-coding-system (which see) is used. */); +If it is nil, `default-file-name-coding-system' (which see) is used. */); Vfile_name_coding_system = Qnil; DEFVAR_LISP ("default-file-name-coding-system", &Vdefault_file_name_coding_system, doc: /* Default coding system for encoding file names. -This variable is used only when file-name-coding-system is nil. +This variable is used only when `file-name-coding-system' is nil. -This variable is set/changed by the command set-language-environment. +This variable is set/changed by the command `set-language-environment'. User should not set this variable manually, -instead use file-name-coding-system to get a constant encoding +instead use `file-name-coding-system' to get a constant encoding of file names regardless of the current language environment. */); Vdefault_file_name_coding_system = Qnil;