diff options
| author | Eli Zaretskii | 2005-02-05 12:00:57 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-02-05 12:00:57 +0000 |
| commit | 13b9acf0661f77fe0761436017ff2c2210ccfdb1 (patch) | |
| tree | e66f5f113435c6e4c7f46f6ed6de59e87aee524d | |
| parent | b29ef159ecebf43a15133a587033b24d8da347a7 (diff) | |
| download | emacs-13b9acf0661f77fe0761436017ff2c2210ccfdb1.tar.gz emacs-13b9acf0661f77fe0761436017ff2c2210ccfdb1.zip | |
Update the name of the socket of the Emacs server.
| -rw-r--r-- | etc/emacs.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/emacs.bash b/etc/emacs.bash index 80930f80d77..c482e82b361 100644 --- a/etc/emacs.bash +++ b/etc/emacs.bash | |||
| @@ -22,7 +22,7 @@ function edit () | |||
| 22 | if [ -n "${windowsys:+set}" ]; then | 22 | if [ -n "${windowsys:+set}" ]; then |
| 23 | # Do not just test if these files are sockets. On some systems | 23 | # Do not just test if these files are sockets. On some systems |
| 24 | # ordinary files or fifos are used instead. Just see if they exist. | 24 | # ordinary files or fifos are used instead. Just see if they exist. |
| 25 | if [ -e "${HOME}/.emacs_server" -o -e "/tmp/esrv${UID}-"* ]; then | 25 | if [ -e "${HOME}/.emacs_server" -o -e "/tmp/emacs${UID}/server" ]; then |
| 26 | emacsclient "$@" | 26 | emacsclient "$@" |
| 27 | return $? | 27 | return $? |
| 28 | else | 28 | else |