Promote SSDATA macro from gtkutil.c and xsmfns.c to lisp.h.
[bpt/emacs.git] / src / xsmfns.c
CommitLineData
afb4ecad
JD
1/* Session management module for systems which understand the X Session
2 management protocol.
5df4f04c 3 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
8cabe764 4 Free Software Foundation, Inc.
afb4ecad
JD
5
6This file is part of GNU Emacs.
7
9ec0b715 8GNU Emacs is free software: you can redistribute it and/or modify
afb4ecad 9it under the terms of the GNU General Public License as published by
9ec0b715
GM
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
afb4ecad
JD
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
9ec0b715 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
afb4ecad
JD
20
21#include <config.h>
22
23#ifdef HAVE_X_SM
24
25#include <X11/SM/SMlib.h>
231d6cfb
JD
26#include <X11/Xlib.h>
27#include <X11/Xutil.h>
28
afb4ecad 29#include <unistd.h>
afb4ecad 30#include <sys/param.h>
656132eb 31#include <stdio.h>
d7306fe6 32#include <setjmp.h>
afb4ecad 33
fa8459a3 34#include "lisp.h"
afb4ecad
JD
35#include "systime.h"
36#include "sysselect.h"
428a555e 37#include "frame.h"
afb4ecad 38#include "termhooks.h"
656132eb 39#include "termopts.h"
231d6cfb 40#include "xterm.h"
afb4ecad 41
3b8f9651 42/* This is the event used when SAVE_SESSION_EVENT occurs. */
afb4ecad
JD
43
44static struct input_event emacs_event;
45
3b8f9651 46/* The descriptor that we use to check for data from the session manager. */
afb4ecad 47
182659ae 48static int ice_fd;
afb4ecad 49
3b8f9651 50/* A flag that says if we are in shutdown interactions or not. */
afb4ecad 51
182659ae 52static int doing_interact;
afb4ecad 53
4f2f546e 54/* The session manager object for the session manager connection. */
afb4ecad
JD
55
56static SmcConn smc_conn;
57
4f2f546e
JD
58/* The client session id for this session. */
59
afb4ecad
JD
60static char *client_id;
61
4f2f546e
JD
62/* The full path name to the Emacs program. */
63
afb4ecad
JD
64static char *emacs_program;
65
afb4ecad 66/* The option we tell the session manager to start Emacs with when
4f2f546e 67 restarting Emacs. The client_id is appended. */
afb4ecad
JD
68
69#define SMID_OPT "--smid="
70
71
ca2417b9 72/* The option to start Emacs without the splash screen when
4f2f546e 73 restarting Emacs. */
ca2417b9 74
42ca4633 75static char NOSPLASH_OPT[] = "--no-splash";
ca2417b9 76
f63d0028
JD
77/* The option to make Emacs start in the given directory. */
78
79#define CHDIR_OPT "--chdir="
80
182659ae 81static void
971de7fb 82ice_connection_closed (void)
182659ae
JD
83{
84 if (ice_fd >= 0)
85 delete_keyboard_wait_descriptor (ice_fd);
86 ice_fd = -1;
87}
88
ca2417b9 89
afb4ecad
JD
90/* Handle any messages from the session manager. If no connection is
91 open to a session manager, just return 0.
a6950dfa 92 Otherwise returns 1 if SAVE_SESSION_EVENT is stored in buffer BUFP. */
4f2f546e 93
afb4ecad 94int
971de7fb 95x_session_check_input (struct input_event *bufp)
afb4ecad
JD
96{
97 SELECT_TYPE read_fds;
98 EMACS_TIME tmout;
182659ae 99 int ret;
7d0393cf 100
afb4ecad 101 if (ice_fd == -1) return 0;
afb4ecad
JD
102 FD_ZERO (&read_fds);
103 FD_SET (ice_fd, &read_fds);
7d0393cf 104
afb4ecad
JD
105 tmout.tv_sec = 0;
106 tmout.tv_usec = 0;
7d0393cf 107
afb4ecad
JD
108 /* Reset this so wo can check kind after callbacks have been called by
109 IceProcessMessages. The smc_interact_CB sets the kind to
3b8f9651 110 SAVE_SESSION_EVENT, but we don't know beforehand if that callback
4f2f546e 111 will be called. */
3b8f9651 112 emacs_event.kind = NO_EVENT;
afb4ecad 113
182659ae
JD
114 ret = select (ice_fd+1, &read_fds,
115 (SELECT_TYPE *)0, (SELECT_TYPE *)0, &tmout);
116
117 if (ret < 0)
afb4ecad 118 {
182659ae
JD
119 ice_connection_closed ();
120 }
121 else if (ret > 0 && FD_ISSET (ice_fd, &read_fds))
122 {
123 ret = IceProcessMessages (SmcGetIceConnection (smc_conn),
124 (IceReplyWaitInfo *)0, (Bool *)0);
125 if (ret != IceProcessMessagesSuccess)
126 {
127 /* Either IO error or Connection closed. */
128 if (ret == IceProcessMessagesIOError)
129 IceCloseConnection (SmcGetIceConnection (smc_conn));
130
131 ice_connection_closed ();
132 }
afb4ecad 133 }
7d0393cf 134
afb4ecad 135 /* Check if smc_interact_CB was called and we shall generate a
4f2f546e 136 SAVE_SESSION_EVENT. */
182659ae 137 if (emacs_event.kind != NO_EVENT)
72af86bd 138 memcpy (bufp, &emacs_event, sizeof (struct input_event));
afb4ecad 139
182659ae 140 return emacs_event.kind != NO_EVENT ? 1 : 0;
afb4ecad
JD
141}
142
4f2f546e
JD
143/* Return non-zero if we have a connection to a session manager. */
144
afb4ecad 145int
971de7fb 146x_session_have_connection (void)
afb4ecad
JD
147{
148 return ice_fd != -1;
149}
150
151/* This is called when the session manager says it is OK to interact with the
3b8f9651 152 user. Here we set the kind to SAVE_SESSION_EVENT so an event is generated.
4f2f546e
JD
153 Then lisp code can interact with the user. */
154
afb4ecad 155static void
971de7fb 156smc_interact_CB (SmcConn smcConn, SmPointer clientData)
afb4ecad
JD
157{
158 doing_interact = True;
3b8f9651 159 emacs_event.kind = SAVE_SESSION_EVENT;
0b9fc69a 160 emacs_event.arg = Qnil;
afb4ecad
JD
161}
162
f25dcaa0 163/* This is called when the session manager tells us to save ourselves.
afb4ecad
JD
164 We set the required properties so the session manager can restart us,
165 plus the current working directory property (not mandatory) so we
166 are started in the correct directory.
167
168 If this is a shutdown and we can request to interact with the user,
4f2f546e
JD
169 we do so, because we don't know what the lisp code might do. */
170
afb4ecad 171static void
dd4c5104
DN
172smc_save_yourself_CB (SmcConn smcConn,
173 SmPointer clientData,
174 int saveType,
175 Bool shutdown,
176 int interactStyle,
177 Bool fast)
afb4ecad
JD
178{
179#define NR_PROPS 5
7d0393cf 180
afb4ecad
JD
181 SmProp *props[NR_PROPS];
182 SmProp prop_ptr[NR_PROPS];
7d0393cf 183
afb4ecad
JD
184 SmPropValue values[20];
185 int val_idx = 0;
186 int props_idx = 0;
42ca4633 187 int i;
c187839d 188 char *cwd = NULL;
f63d0028 189 char *smid_opt, *chdir_opt = NULL;
afb4ecad 190
4f2f546e 191 /* How to start a new instance of Emacs. */
afb4ecad 192 props[props_idx] = &prop_ptr[props_idx];
42ca4633
J
193 props[props_idx]->name = xstrdup (SmCloneCommand);
194 props[props_idx]->type = xstrdup (SmLISTofARRAY8);
afb4ecad
JD
195 props[props_idx]->num_vals = 1;
196 props[props_idx]->vals = &values[val_idx++];
197 props[props_idx]->vals[0].length = strlen (emacs_program);
198 props[props_idx]->vals[0].value = emacs_program;
199 ++props_idx;
200
4f2f546e 201 /* The name of the program. */
afb4ecad 202 props[props_idx] = &prop_ptr[props_idx];
42ca4633
J
203 props[props_idx]->name = xstrdup (SmProgram);
204 props[props_idx]->type = xstrdup (SmARRAY8);
afb4ecad
JD
205 props[props_idx]->num_vals = 1;
206 props[props_idx]->vals = &values[val_idx++];
e4c8d29a 207 props[props_idx]->vals[0].length = strlen (SSDATA (Vinvocation_name));
d5db4077 208 props[props_idx]->vals[0].value = SDATA (Vinvocation_name);
afb4ecad 209 ++props_idx;
7d0393cf 210
f63d0028 211 /* How to restart Emacs. */
afb4ecad 212 props[props_idx] = &prop_ptr[props_idx];
42ca4633
J
213 props[props_idx]->name = xstrdup (SmRestartCommand);
214 props[props_idx]->type = xstrdup (SmLISTofARRAY8);
f63d0028
JD
215 /* /path/to/emacs, --smid=xxx --no-splash --chdir=dir */
216 props[props_idx]->num_vals = 4;
afb4ecad
JD
217 props[props_idx]->vals = &values[val_idx];
218 props[props_idx]->vals[0].length = strlen (emacs_program);
219 props[props_idx]->vals[0].value = emacs_program;
220
221 smid_opt = xmalloc (strlen (SMID_OPT) + strlen (client_id) + 1);
222 strcpy (smid_opt, SMID_OPT);
223 strcat (smid_opt, client_id);
7d0393cf 224
afb4ecad
JD
225 props[props_idx]->vals[1].length = strlen (smid_opt);
226 props[props_idx]->vals[1].value = smid_opt;
ca2417b9
JD
227
228 props[props_idx]->vals[2].length = strlen (NOSPLASH_OPT);
229 props[props_idx]->vals[2].value = NOSPLASH_OPT;
f63d0028
JD
230
231 cwd = get_current_dir_name ();
51b59d79 232 if (cwd)
f63d0028 233 {
991be6d4 234 chdir_opt = xmalloc (strlen (CHDIR_OPT) + strlen (cwd) + 1);
f63d0028
JD
235 strcpy (chdir_opt, CHDIR_OPT);
236 strcat (chdir_opt, cwd);
237
238 props[props_idx]->vals[3].length = strlen (chdir_opt);
239 props[props_idx]->vals[3].value = chdir_opt;
240 }
241
242 val_idx += cwd ? 4 : 3;
afb4ecad
JD
243 ++props_idx;
244
4f2f546e 245 /* User id. */
afb4ecad 246 props[props_idx] = &prop_ptr[props_idx];
42ca4633
J
247 props[props_idx]->name = xstrdup (SmUserID);
248 props[props_idx]->type = xstrdup (SmARRAY8);
afb4ecad
JD
249 props[props_idx]->num_vals = 1;
250 props[props_idx]->vals = &values[val_idx++];
e4c8d29a 251 props[props_idx]->vals[0].length = strlen (SSDATA (Vuser_login_name));
d5db4077 252 props[props_idx]->vals[0].value = SDATA (Vuser_login_name);
afb4ecad
JD
253 ++props_idx;
254
c187839d
EZ
255
256 if (cwd)
afb4ecad
JD
257 {
258 props[props_idx] = &prop_ptr[props_idx];
42ca4633
J
259 props[props_idx]->name = xstrdup (SmCurrentDirectory);
260 props[props_idx]->type = xstrdup (SmARRAY8);
afb4ecad
JD
261 props[props_idx]->num_vals = 1;
262 props[props_idx]->vals = &values[val_idx++];
263 props[props_idx]->vals[0].length = strlen (cwd);
264 props[props_idx]->vals[0].value = cwd;
265 ++props_idx;
266 }
7d0393cf
JB
267
268
afb4ecad
JD
269 SmcSetProperties (smcConn, props_idx, props);
270
271 xfree (smid_opt);
f63d0028 272 xfree (chdir_opt);
afb4ecad 273
c2cd06e6 274 free (cwd);
42ca4633
J
275 for (i = 0; i < props_idx; ++i)
276 {
277 xfree (props[i]->type);
278 xfree (props[i]->name);
279 }
c187839d 280
4f2f546e 281 /* See if we maybe shall interact with the user. */
afb4ecad
JD
282 if (interactStyle != SmInteractStyleAny
283 || ! shutdown
284 || saveType == SmSaveLocal
285 || ! SmcInteractRequest (smcConn, SmDialogNormal, smc_interact_CB, 0))
286 {
4f2f546e 287 /* No interaction, we are done saving ourself. */
afb4ecad
JD
288 SmcSaveYourselfDone (smcConn, True);
289 }
290}
291
4f2f546e
JD
292/* According to the SM specification, this shall close the connection. */
293
afb4ecad 294static void
971de7fb 295smc_die_CB (SmcConn smcConn, SmPointer clientData)
afb4ecad 296{
0b9fc69a
JD
297 emacs_event.kind = SAVE_SESSION_EVENT;
298 emacs_event.arg = Qt;
afb4ecad
JD
299}
300
301/* We don't use the next two but they are mandatory, leave them empty.
302 According to the SM specification, we should not interact with the
303 user between smc_save_yourself_CB is called and until smc_save_complete_CB
304 is called. It seems like a lot of job to implement this and it doesn't
4f2f546e
JD
305 even seem necessary. */
306
afb4ecad 307static void
971de7fb 308smc_save_complete_CB (SmcConn smcConn, SmPointer clientData)
afb4ecad
JD
309{
310 /* Empty */
311}
312
313static void
971de7fb 314smc_shutdown_cancelled_CB (SmcConn smcConn, SmPointer clientData)
afb4ecad
JD
315{
316 /* Empty */
317}
318
f25dcaa0 319/* Error handlers for SM and ICE. We don't want to exit Emacs just
4f2f546e
JD
320 because there is some error in the session management. */
321
afb4ecad 322static void
dd4c5104
DN
323smc_error_handler (SmcConn smcConn,
324 Bool swap,
325 int offendingMinorOpcode,
326 unsigned long offendingSequence,
327 int errorClass,
328 int severity,
329 SmPointer values)
afb4ecad 330{
4f2f546e 331 /* Empty */
afb4ecad
JD
332}
333
334static void
dd4c5104
DN
335ice_error_handler (IceConn iceConn,
336 Bool swap,
337 int offendingMinorOpcode,
338 unsigned long offendingSequence,
339 int errorClass,
340 int severity,
341 IcePointer values)
afb4ecad 342{
4f2f546e 343 /* Empty */
afb4ecad
JD
344}
345
346
347static void
971de7fb 348ice_io_error_handler (IceConn iceConn)
afb4ecad 349{
4f2f546e 350 /* Connection probably gone. */
182659ae 351 ice_connection_closed ();
afb4ecad
JD
352}
353
354/* This is called when the ICE connection is created or closed. The SM library
4f2f546e
JD
355 uses ICE as it transport protocol. */
356
afb4ecad 357static void
971de7fb 358ice_conn_watch_CB (IceConn iceConn, IcePointer clientData, int opening, IcePointer *watchData)
afb4ecad
JD
359{
360 if (! opening)
361 {
182659ae 362 ice_connection_closed ();
afb4ecad
JD
363 return;
364 }
7d0393cf 365
afb4ecad 366 ice_fd = IceConnectionNumber (iceConn);
afb4ecad 367#ifdef F_SETOWN
afb4ecad 368 fcntl (ice_fd, F_SETOWN, getpid ());
afb4ecad 369#endif /* ! defined (F_SETOWN) */
afb4ecad
JD
370
371#ifdef SIGIO
372 if (interrupt_input)
373 init_sigio (ice_fd);
374#endif /* ! defined (SIGIO) */
182659ae
JD
375
376 add_keyboard_wait_descriptor (ice_fd);
afb4ecad
JD
377}
378
231d6cfb 379/* Create the client leader window. */
4f2f546e 380
e4c8d29a 381#ifndef USE_GTK
231d6cfb 382static void
971de7fb 383create_client_leader_window (struct x_display_info *dpyinfo, char *client_id)
231d6cfb
JD
384{
385 Window w;
386 XClassHint class_hints;
387 Atom sm_id;
388
389 w = XCreateSimpleWindow (dpyinfo->display,
390 dpyinfo->root_window,
391 -1, -1, 1, 1,
392 CopyFromParent, CopyFromParent, CopyFromParent);
393
51b59d79
PE
394 class_hints.res_name = SSDATA (Vx_resource_name);
395 class_hints.res_class = SSDATA (Vx_resource_class);
231d6cfb
JD
396 XSetClassHint (dpyinfo->display, w, &class_hints);
397 XStoreName (dpyinfo->display, w, class_hints.res_name);
398
2d9074ba
JD
399 XChangeProperty (dpyinfo->display, w, dpyinfo->Xatom_SM_CLIENT_ID,
400 XA_STRING, 8, PropModeReplace,
e4c8d29a 401 (unsigned char *)client_id, strlen (client_id));
231d6cfb
JD
402
403 dpyinfo->client_leader_window = w;
404}
e4c8d29a
J
405#endif /* ! USE_GTK */
406
231d6cfb 407
4f2f546e
JD
408/* Try to open a connection to the session manager. */
409
afb4ecad 410void
971de7fb 411x_session_initialize (struct x_display_info *dpyinfo)
afb4ecad
JD
412{
413#define SM_ERRORSTRING_LEN 512
414 char errorstring[SM_ERRORSTRING_LEN];
415 char* previous_id = NULL;
416 SmcCallbacks callbacks;
417 int name_len = 0;
7d0393cf 418
182659ae
JD
419 ice_fd = -1;
420 doing_interact = False;
421
afb4ecad 422 /* Check if we where started by the session manager. If so, we will
4f2f546e 423 have a previous id. */
afb4ecad 424 if (! EQ (Vx_session_previous_id, Qnil) && STRINGP (Vx_session_previous_id))
e4c8d29a 425 previous_id = SSDATA (Vx_session_previous_id);
afb4ecad 426
4f2f546e 427 /* Construct the path to the Emacs program. */
afb4ecad 428 if (! EQ (Vinvocation_directory, Qnil))
e4c8d29a
J
429 name_len += strlen (SSDATA (Vinvocation_directory));
430 name_len += strlen (SSDATA (Vinvocation_name));
afb4ecad
JD
431
432 /* This malloc will not be freed, but it is only done once, and hopefully
4f2f546e 433 not very large */
afb4ecad
JD
434 emacs_program = xmalloc (name_len + 1);
435 emacs_program[0] = '\0';
436
437 if (! EQ (Vinvocation_directory, Qnil))
e4c8d29a
J
438 strcpy (emacs_program, SSDATA (Vinvocation_directory));
439 strcat (emacs_program, SSDATA (Vinvocation_name));
7d0393cf 440
afb4ecad 441 /* The SM protocol says all callbacks are mandatory, so set up all
4f2f546e 442 here and in the mask passed to SmcOpenConnection. */
afb4ecad
JD
443 callbacks.save_yourself.callback = smc_save_yourself_CB;
444 callbacks.save_yourself.client_data = 0;
445 callbacks.die.callback = smc_die_CB;
446 callbacks.die.client_data = 0;
447 callbacks.save_complete.callback = smc_save_complete_CB;
448 callbacks.save_complete.client_data = 0;
449 callbacks.shutdown_cancelled.callback = smc_shutdown_cancelled_CB;
450 callbacks.shutdown_cancelled.client_data = 0;
451
4f2f546e 452 /* Set error handlers. */
afb4ecad
JD
453 SmcSetErrorHandler (smc_error_handler);
454 IceSetErrorHandler (ice_error_handler);
455 IceSetIOErrorHandler (ice_io_error_handler);
456
4f2f546e 457 /* Install callback for when connection status changes. */
afb4ecad
JD
458 IceAddConnectionWatch (ice_conn_watch_CB, 0);
459
460 /* Open the connection to the session manager. A failure is not
f25dcaa0 461 critical, it usually means that no session manager is running.
4f2f546e 462 The errorstring is here for debugging. */
afb4ecad
JD
463 smc_conn = SmcOpenConnection (NULL, NULL, 1, 0,
464 (SmcSaveYourselfProcMask|
465 SmcDieProcMask|
466 SmcSaveCompleteProcMask|
467 SmcShutdownCancelledProcMask),
468 &callbacks,
469 previous_id,
470 &client_id,
471 SM_ERRORSTRING_LEN,
472 errorstring);
473
474 if (smc_conn != 0)
231d6cfb
JD
475 {
476 Vx_session_id = make_string (client_id, strlen (client_id));
477
478#ifdef USE_GTK
479 /* GTK creats a leader window by itself, but we need to tell
480 it about our client_id. */
481 gdk_set_sm_client_id (client_id);
482#else
483 create_client_leader_window (dpyinfo, client_id);
484#endif
485 }
afb4ecad
JD
486}
487
d51abf22
KL
488/* Ensure that the session manager is not contacted again. */
489
490void
971de7fb 491x_session_close (void)
d51abf22 492{
182659ae 493 ice_connection_closed ();
d51abf22
KL
494}
495
afb4ecad
JD
496
497DEFUN ("handle-save-session", Fhandle_save_session,
498 Shandle_save_session, 1, 1, "e",
499 doc: /* Handle the save_yourself event from a session manager.
7d0393cf 500A session manager can tell Emacs that the window system is shutting down
afb4ecad
JD
501by sending Emacs a save_yourself message. Emacs executes this function when
502such an event occurs. This function then executes `emacs-session-save'.
503After that, this function informs the session manager that it can continue
504or abort shutting down the window system depending on the return value
505from `emacs-session-save' If the return value is non-nil the session manager
506is told to abort the window system shutdown.
507
508Do not call this function yourself. */)
5842a27b 509 (Lisp_Object event)
afb4ecad 510{
0b9fc69a
JD
511 int kill_emacs = CONSP (event) && CONSP (XCDR (event))
512 && EQ (Qt, XCAR (XCDR (event)));
513
afb4ecad
JD
514 /* Check doing_interact so that we don't do anything if someone called
515 this at the wrong time. */
0b9fc69a 516 if (doing_interact && ! kill_emacs)
afb4ecad
JD
517 {
518 Bool cancel_shutdown = False;
519
520 cancel_shutdown = ! EQ (call0 (intern ("emacs-session-save")), Qnil);
521
522 SmcInteractDone (smc_conn, cancel_shutdown);
523 SmcSaveYourselfDone (smc_conn, True);
524
525 doing_interact = False;
526 }
0b9fc69a
JD
527 else if (kill_emacs)
528 {
529 /* We should not do user interaction here, but it is not easy to
530 prevent. Fix this in next version. */
531 Fkill_emacs (Qnil);
ad4ace7a 532
0b9fc69a
JD
533 /* This will not be reached, but we want kill-emacs-hook to be run. */
534 SmcCloseConnection (smc_conn, 0, 0);
535 ice_connection_closed ();
536 }
51b59d79 537
ad4ace7a 538 return Qnil;
afb4ecad 539}
51b59d79 540
afb4ecad
JD
541
542\f
543/***********************************************************************
544 Initialization
545 ***********************************************************************/
546void
971de7fb 547syms_of_xsmfns (void)
afb4ecad 548{
29208e82 549 DEFVAR_LISP ("x-session-id", Vx_session_id,
afb4ecad
JD
550 doc: /* The session id Emacs got from the session manager for this session.
551Changing the value does not change the session id used by Emacs.
552The value is nil if no session manager is running.
553See also `x-session-previous-id', `emacs-save-session-functions',
554`emacs-session-save' and `emacs-session-restore'." */);
555 Vx_session_id = Qnil;
556
29208e82 557 DEFVAR_LISP ("x-session-previous-id", Vx_session_previous_id,
afb4ecad 558 doc: /* The previous session id Emacs got from session manager.
7d0393cf 559If Emacs is running on a window system that has a session manager, the
fbcdaefb 560session manager gives Emacs a session id. It is feasible for Emacs Lisp
7d0393cf
JB
561code to use the session id to save configuration in, for example, a file
562with a file name based on the session id. If Emacs is running when the
563window system is shut down, the session manager remembers that Emacs was
afb4ecad
JD
564running and saves the session id Emacs had.
565
7d0393cf
JB
566When the window system is started again, the session manager restarts
567Emacs and hands Emacs the session id it had the last time it was
568running. This is now the previous session id and the value of this
569variable. If configuration was saved in a file as stated above, the
afb4ecad
JD
570previous session id shall be used to reconstruct the file name.
571
7d0393cf 572The session id Emacs has while it is running is in the variable
afb4ecad
JD
573`x-session-id'. The value of this variable and `x-session-id' may be the
574same, depending on how the session manager works.
575
576See also `emacs-save-session-functions', `emacs-session-save' and
577`emacs-session-restore'." */);
578 Vx_session_previous_id = Qnil;
7d0393cf 579
afb4ecad
JD
580 defsubr (&Shandle_save_session);
581}
582
583#endif /* HAVE_X_SM */