aboutsummaryrefslogtreecommitdiffstats
path: root/admin/notes/multi-tty
diff options
context:
space:
mode:
authorStefan Monnier2022-09-25 16:15:16 -0400
committerStefan Monnier2022-09-25 16:15:16 -0400
commit650c20f1ca4e07591a727e1cfcc74b3363d15985 (patch)
tree85d11f6437cde22f410c25e0e5f71a3131ebd07d /admin/notes/multi-tty
parent8869332684c2302b5ba1ead4568bbc7ba1c0183e (diff)
parent4b85ae6a24380fb67a3315eaec9233f17a872473 (diff)
downloademacs-650c20f1ca4e07591a727e1cfcc74b3363d15985.tar.gz
emacs-650c20f1ca4e07591a727e1cfcc74b3363d15985.zip
Merge 'master' into noverlay
Diffstat (limited to 'admin/notes/multi-tty')
-rw-r--r--admin/notes/multi-tty12
1 files changed, 8 insertions, 4 deletions
diff --git a/admin/notes/multi-tty b/admin/notes/multi-tty
index 0969daf9d07..84bc1b77d4e 100644
--- a/admin/notes/multi-tty
+++ b/admin/notes/multi-tty
@@ -1,6 +1,6 @@
1-*- coding: utf-8; mode: text; -*- 1-*- coding: utf-8; mode: text; -*-
2 2
3Copyright (C) 2007-2017 Free Software Foundation, Inc. 3Copyright (C) 2007-2022 Free Software Foundation, Inc.
4See the end of the file for license conditions. 4See the end of the file for license conditions.
5 5
6From README.multi-tty in the multi-tty branch. 6From README.multi-tty in the multi-tty branch.
@@ -171,7 +171,11 @@ preload-emacs "$name" wait
171name="$1" 171name="$1"
172waitp="$2" 172waitp="$2"
173screendir="/var/run/screen/S-$USER" 173screendir="/var/run/screen/S-$USER"
174serverdir="/tmp/emacs$UID" 174if [ "${XDG_RUNTIME_DIR+set}" ]; then
175 serverdir="$XDG_RUNTIME_DIR/emacs"
176else
177 serverdir="${TMPDIR-/tmp}/emacs$UID"
178fi
175emacs=/usr/bin/emacs-multi-tty # Or wherever you installed your multi-tty Emacs 179emacs=/usr/bin/emacs-multi-tty # Or wherever you installed your multi-tty Emacs
176 180
177if [ -z "$name" ]; then 181if [ -z "$name" ]; then
@@ -305,7 +309,7 @@ THINGS TO DO
305 multidisplay (and don't mind core dumps), you can edit src/config.h 309 multidisplay (and don't mind core dumps), you can edit src/config.h
306 and define HAVE_GTK_MULTIDISPLAY there by hand. 310 and define HAVE_GTK_MULTIDISPLAY there by hand.
307 311
308 http://bugzilla.gnome.org/show_bug.cgi?id=85715 312 https://gitlab.gnome.org/GNOME/gtk/issues/221
309 313
310 Update: Han reports that GTK+ version 2.8.9 almost gets display 314 Update: Han reports that GTK+ version 2.8.9 almost gets display
311 disconnects right. GTK will probably be fully fixed by the time 315 disconnects right. GTK will probably be fully fixed by the time
@@ -470,7 +474,7 @@ THINGS TO DO
470 definition. 474 definition.
471 475
472 Exceptions found so far: x-select-text and 476 Exceptions found so far: x-select-text and
473 x-cut-buffer-or-selection-value. 477 x-selection-value.
474 478
475** Have a look at fatal_error_hook. 479** Have a look at fatal_error_hook.
476 480