aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Távora2018-08-11 17:08:13 +0100
committerJoão Távora2018-08-11 17:08:13 +0100
commitbf1298c7d8aa80432cc357f988ecfb3d6eb4c11c (patch)
tree6122cea712217a76922dd99975249c6ebd27318b
parent2304bc9b9748db481ee1e5cff6f51709eb625394 (diff)
downloademacs-bf1298c7d8aa80432cc357f988ecfb3d6eb4c11c.tar.gz
emacs-bf1298c7d8aa80432cc357f988ecfb3d6eb4c11c.zip
Fix blunder in last commit for lisp/jsonrpc.el
* lisp/jsonrpc.el (jsonrpc-shutdown): Use jsonrpc--process.
-rw-r--r--lisp/jsonrpc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/jsonrpc.el b/lisp/jsonrpc.el
index 29a3de47a49..43b570cfd92 100644
--- a/lisp/jsonrpc.el
+++ b/lisp/jsonrpc.el
@@ -431,7 +431,7 @@ optional CLEANUP, kill any associated buffers. "
431 do (jsonrpc--warn 431 do (jsonrpc--warn
432 "Sentinel for %s still hasn't run, deleting it!" proc) 432 "Sentinel for %s still hasn't run, deleting it!" proc)
433 finally return t)) 433 finally return t))
434 (when cleanup (kill-buffer (process-buffer conn))))) 434 (when cleanup (kill-buffer (process-buffer (jsonrpc--process conn))))))
435 435
436(defun jsonrpc-stderr-buffer (conn) 436(defun jsonrpc-stderr-buffer (conn)
437 "Get CONN's standard error buffer, if any." 437 "Get CONN's standard error buffer, if any."