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
259887e8
Commit
259887e8
authored
Feb 26, 2014
by
Glenn Morris
Browse files
* lisp/startup.el (command-line): Don't init the tty in daemon mode.
Ref:
http://debbugs.gnu.org/16859#15
parent
1d491ef2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/startup.el
lisp/startup.el
+2
-1
No files found.
lisp/ChangeLog
View file @
259887e8
2014-02-26 Glenn Morris <rgm@gnu.org>
* startup.el (command-line): Don't init the tty in daemon mode.
Avoid calling tty-setup-hook twice, eg if a term file
explicitly calls tty-run-terminal-initialization. (Bug#16859)
* faces.el (tty-run-terminal-initialization): Add run-hook argument.
...
...
lisp/startup.el
View file @
259887e8
...
...
@@ -1285,7 +1285,8 @@ the `--debug-init' option to view a complete error backtrace."
;; Load library for our terminal type.
;; User init file can set term-file-prefix to nil to prevent this.
(unless (or noninteractive
initial-window-system)
initial-window-system
(daemonp))
(tty-run-terminal-initialization (selected-frame) nil t))
;; Update the out-of-memory error message based on user's key bindings
...
...
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