Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
5d5bf4d8
Commit
5d5bf4d8
authored
Dec 17, 2002
by
Kenichi Handa
Browse files
(coding_system_require_warning): New variable.
(syms_of_coding): DEFVAR it.
parent
bfcf6dbe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
src/coding.c
src/coding.c
+11
-0
No files found.
src/coding.c
View file @
5d5bf4d8
...
...
@@ -367,6 +367,8 @@ Lisp_Object Qtarget_idx;
Lisp_Object Vselect_safe_coding_system_function;
int coding_system_require_warning;
/* Mnemonic string for each format of end-of-line. */
Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac;
/* Mnemonic string to indicate format of end-of-line is not yet
...
...
@@ -7531,6 +7533,15 @@ coding system used in each operation can't encode the text.
The default value is `select-safe-coding-system' (which see). */);
Vselect_safe_coding_system_function = Qnil;
DEFVAR_BOOL ("coding-system-require-warning",
&coding_system_require_warning,
doc: /* Internal use only.
If non-nil, on writing a file, select-safe-coding-system-function is
called even if coding-system-for-write is non-nil. The command
universal-coding-system-argument binds this variable to t temporarily. */);
coding_system_require_warning = 0;
DEFVAR_LISP ("char-coding-system-table", &Vchar_coding_system_table,
doc: /* Char-table containing safe coding systems of each characters.
Each element doesn't include such generic coding systems that can
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment