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
6bc51348
Commit
6bc51348
authored
Aug 10, 1998
by
Kenichi Handa
Browse files
(default_buffer_file_coding): New variable.
(init_coding_once): Initialize default_buffer_file_coding.
parent
0827f88d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/coding.c
src/coding.c
+4
-0
No files found.
src/coding.c
View file @
6bc51348
...
...
@@ -336,6 +336,9 @@ struct coding_system safe_terminal_coding;
/* Coding system of what is sent from terminal keyboard. */
struct
coding_system
keyboard_coding
;
/* Default coding system to be used to write a file. */
struct
coding_system
default_buffer_file_coding
;
Lisp_Object
Vfile_coding_system_alist
;
Lisp_Object
Vprocess_coding_system_alist
;
Lisp_Object
Vnetwork_coding_system_alist
;
...
...
@@ -5182,6 +5185,7 @@ init_coding_once ()
setup_coding_system
(
Qnil
,
&
keyboard_coding
);
setup_coding_system
(
Qnil
,
&
terminal_coding
);
setup_coding_system
(
Qnil
,
&
safe_terminal_coding
);
setup_coding_system
(
Qnil
,
&
default_buffer_file_coding
);
bzero
(
coding_system_table
,
sizeof
coding_system_table
);
...
...
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