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
bc92abd2
Commit
bc92abd2
authored
Jul 02, 2011
by
Jason Rumney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lib-src/emacsclient.c (decode_options) [WINDOWSNT]: Avoid tty mode on
Windows. Fixes: debbugs:5486
parent
7b3747f9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
lib-src/ChangeLog
lib-src/ChangeLog
+5
-0
lib-src/emacsclient.c
lib-src/emacsclient.c
+8
-0
No files found.
lib-src/ChangeLog
View file @
bc92abd2
2011-07-02 Jason Rumney <jasonr@gnu.org>
* emacsclient.c (decode_options) [WINDOWSNT]: Avoid tty mode on
Windows (Bug#5486).
2011-06-25 Glenn Morris <rgm@gnu.org>
* emacsclient.c (decode_options) <opt>: Add `F:'.
...
...
lib-src/emacsclient.c
View file @
bc92abd2
...
...
@@ -652,6 +652,14 @@ decode_options (int argc, char **argv)
an empty string"
);
exit
(
EXIT_FAILURE
);
}
/* TTY frames not supported on Windows. Continue using GUI rather than
forcing the user to change their command-line. This is required since
tty is set above if certain options are given and $DISPLAY is not set,
which is not obvious to users. */
if
(
tty
)
tty
=
0
;
#endif
/* WINDOWSNT */
}
...
...
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