From a7f95dfb7431e5a669ba5d426608939b5e4d6ebd Mon Sep 17 00:00:00 2001 From: John Foerch Date: Sat, 20 Feb 2010 15:43:08 -0500 Subject: [PATCH] session.js: fix typos with _session_auto_save_file_get calls --- modules/session.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/session.js b/modules/session.js index 3c5c3f8..781e632 100644 --- a/modules/session.js +++ b/modules/session.js @@ -285,7 +285,7 @@ "Load the auto-save session in new buffers in the current window.", function (I) { if (_session_auto_save_cached == null) - _session_file_not_found(I, session_auto_save_file_get()); + _session_file_not_found(I, _session_auto_save_file_get()); else session_auto_save_load_window_current(I.window); }); @@ -293,7 +293,7 @@ "Replace all buffers in the current window with buffers in the auto-saved session.", function (I) { if (_session_auto_save_cached == null) - _session_file_not_found(I, session_auto_save_file_get()); + _session_file_not_found(I, _session_auto_save_file_get()); else session_auto_save_load_window_current_replace(I.window); }); -- 2.11.4.GIT