From 6d0893b0b9338fb3cd849d9c739664adba0c9595 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Sat, 2 Jun 2012 21:53:59 +0200 Subject: [PATCH] Suppress silent flag from shared output cell Some kind of outputs (pyout/inline image) was not shown in the shared output buffer because the silent flag was on. This is fixed now. --- ein-shared-output.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ein-shared-output.el b/ein-shared-output.el index 7382031..d1cc0f3 100644 --- a/ein-shared-output.el +++ b/ein-shared-output.el @@ -54,7 +54,7 @@ ;;; Cell related (defmethod ein:cell-execute ((cell ein:shared-output-cell) kernel code) - (ein:cell-execute-internal cell kernel code)) + (ein:cell-execute-internal cell kernel code :silent nil)) (defmethod ein:cell--handle-output ((cell ein:shared-output-cell) msg-type content)