From 02b790665bd9f62788789d1bdc895e4c0c8a057c Mon Sep 17 00:00:00 2001 From: John Miller Date: Thu, 1 Dec 2016 21:10:20 -0600 Subject: [PATCH] Fix (maybe) encoding issues when saving notebooks. This hopefully fixes issues #142 and #133. --- lisp/ein-contents-api.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/ein-contents-api.el b/lisp/ein-contents-api.el index 6065ff2..a51b84e 100644 --- a/lisp/ein-contents-api.el +++ b/lisp/ein-contents-api.el @@ -259,9 +259,9 @@ global setting. For global setting and more information, see (cons c (ein:make-content-hierarchy (ein:$content-path c) url-or-port))) (t (progn - (setf (ein:$content-session-p c) - (gethash (ein:$content-path c) active-sessions)) - c))))))) + (setf (ein:$content-session-p c) + (gethash (ein:$content-path c) active-sessions)) + c))))))) (defun ein:refresh-content-hierarchy (&optional url-or-port) (let ((url-or-port (or url-or-port (ein:default-url-or-port))))