Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
14dc6093
Commit
14dc6093
authored
Mar 03, 1998
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Vdefault_file_name_coding_system): Extern it.
(create_process): Use ENCODE_FILE.
parent
cd913586
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
src/process.c
src/process.c
+2
-3
No files found.
src/process.c
View file @
14dc6093
...
...
@@ -266,7 +266,7 @@ extern int timers_run;
/* Maximum number of bytes to send to a pty without an eof. */
static int pty_max_bytes;
extern Lisp_Object Vfile_name_coding_system;
extern Lisp_Object Vfile_name_coding_system
, Vdefault_file_name_coding_system
;
#ifdef HAVE_PTYS
/* The file name of the pty opened by allocate_pty. */
...
...
@@ -1487,8 +1487,7 @@ create_process (process, new_argv, current_dir)
Protect it from permanent change. */
char **save_environ = environ;
current_dir
= Fencode_coding_string (current_dir, Vfile_name_coding_system, Qt);
current_dir = ENCODE_FILE (current_dir);
#ifndef WINDOWSNT
pid = vfork ();
...
...
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