diff options
Diffstat (limited to 'admin/notes/multi-tty')
| -rw-r--r-- | admin/notes/multi-tty | 12 |
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 | ||
| 3 | Copyright (C) 2007-2017 Free Software Foundation, Inc. | 3 | Copyright (C) 2007-2022 Free Software Foundation, Inc. |
| 4 | See the end of the file for license conditions. | 4 | See the end of the file for license conditions. |
| 5 | 5 | ||
| 6 | From README.multi-tty in the multi-tty branch. | 6 | From README.multi-tty in the multi-tty branch. |
| @@ -171,7 +171,11 @@ preload-emacs "$name" wait | |||
| 171 | name="$1" | 171 | name="$1" |
| 172 | waitp="$2" | 172 | waitp="$2" |
| 173 | screendir="/var/run/screen/S-$USER" | 173 | screendir="/var/run/screen/S-$USER" |
| 174 | serverdir="/tmp/emacs$UID" | 174 | if [ "${XDG_RUNTIME_DIR+set}" ]; then |
| 175 | serverdir="$XDG_RUNTIME_DIR/emacs" | ||
| 176 | else | ||
| 177 | serverdir="${TMPDIR-/tmp}/emacs$UID" | ||
| 178 | fi | ||
| 175 | emacs=/usr/bin/emacs-multi-tty # Or wherever you installed your multi-tty Emacs | 179 | emacs=/usr/bin/emacs-multi-tty # Or wherever you installed your multi-tty Emacs |
| 176 | 180 | ||
| 177 | if [ -z "$name" ]; then | 181 | if [ -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 | ||