Skip to content

Commit cf54439

Browse files
committed
Remove a few mentions of `nrepl-message-buffer-name'
1 parent 5cd56ce commit cf54439

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nrepl-client.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ object is a root list or dict."
493493
;; else, throw a quiet error
494494
(t
495495
(message "Invalid bencode message detected. See %s buffer."
496-
nrepl-message-buffer-name)
496+
nrepl-message-buffer-name-template)
497497
(nrepl-log-message
498498
(format "Decoder error at position %d (`%s'):"
499499
(point) (buffer-substring (point) (min (+ (point) 10) (point-max)))))
@@ -1140,7 +1140,7 @@ the port, and the client buffer."
11401140
;;; Messages
11411141

11421142
(defcustom nrepl-log-messages t
1143-
"If non-nil, log protocol messages to the `nrepl-message-buffer-name' buffer."
1143+
"If non-nil, log protocol messages to the `nrepl-message-buffer-name-template' buffer."
11441144
:type 'boolean
11451145
:group 'nrepl)
11461146

@@ -1184,7 +1184,7 @@ operations.")
11841184
(`response (cons '<- (cdr msg)))))
11851185

11861186
(defun nrepl-log-message (msg type)
1187-
"Log the given MSG to the buffer given by `nrepl-message-buffer-name'.
1187+
"Log the given MSG to the buffer given by `nrepl-message-buffer-name-template'.
11881188
11891189
TYPE is either request or response."
11901190
(when nrepl-log-messages

0 commit comments

Comments
 (0)