From ca50c4709a42a7971c92a99637abeef255a80eb9 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Sun, 17 Apr 2022 09:10:38 +0100 Subject: [PATCH] Remove unused code from the rigel client --- core/cubes/rigel/core.el | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/core/cubes/rigel/core.el b/core/cubes/rigel/core.el index b93e539..ec0a2e1 100644 --- a/core/cubes/rigel/core.el +++ b/core/cubes/rigel/core.el @@ -82,19 +82,8 @@ (defun fg42/rigel/read (txt) "Send the given text to the Rigel server to read it out load" (interactive "sRead: ") - ;; (let ((status (process-status "rigel-client"))) - ;; (message "[Rigel] Status: %s" status) - ;; (cond - ;; ((string= status "stop") - ;; (continue-process "rigel-client")) - ;; ((and (string= status "connect") - ;; (string= status "open")) nil) - ;; (t (fg42/rigel/-connect)))) (fg42/rigel/-connect) - (process-send-string fg42/rigel/client-process (fg42/rigel/-pack txt)) - ;;(process-send-eof fg42/rigel/client-process) - ;; (stop-process fg42/rigel/client-process) - ) + (process-send-string fg42/rigel/client-process (fg42/rigel/-pack txt))) (defun fg42/rigel/read-region (beg end)