@@ -181,28 +181,28 @@ it is not. The name will also include the connection port if
181
181
182
182
(defun nrepl-connection-buffer-name (&optional project-dir host port )
183
183
" Return the name of the connection buffer.
184
- PROJECT-DIR, PORT and HOST are as in `/nrepl-make-buffer-name' ."
184
+ PROJECT-DIR, HOST and PORT are as in `/nrepl-make-buffer-name' ."
185
185
(nrepl--make-hidden-name
186
186
(nrepl-make-buffer-name nrepl-connection-buffer-name-template
187
187
project-dir host port)))
188
188
189
189
(defun nrepl-server-buffer-name (&optional project-dir host port )
190
190
" Return the name of the server buffer.
191
- PROJECT-DIR, PORT and HOST are as in `nrepl-make-buffer-name' ."
191
+ PROJECT-DIR, HOST and PORT are as in `nrepl-make-buffer-name' ."
192
192
(nrepl--make-hidden-name
193
193
(nrepl-make-buffer-name nrepl-server-buffer-name-template
194
194
project-dir host port)))
195
195
196
196
(defun nrepl-on-connection-buffer-name (&optional project-dir host port )
197
197
" Return the name of the on-connection buffer.
198
- PROJECT-DIR, PORT and HOST are as in `nrepl-make-buffer-name' ."
198
+ PROJECT-DIR, HOST and PORT are as in `nrepl-make-buffer-name' ."
199
199
(nrepl--make-hidden-name
200
200
(nrepl-make-buffer-name nrepl-on-connection-buffer-name-template
201
201
project-dir host port)))
202
202
203
203
(defun nrepl-decoder-buffer-name (&optional project-dir host port )
204
204
" Return the name of the buffer used for bencode decoding.
205
- PROJECT-DIR, PORT and HOST are as in `nrepl-make-buffer-name' ."
205
+ PROJECT-DIR, HOST and PORT are as in `nrepl-make-buffer-name' ."
206
206
; ; this might go away if bdecode is rewriten by direct decoding of the sring
207
207
(nrepl--make-hidden-name
208
208
(nrepl-make-buffer-name nrepl-decoder-buffer-name-template
@@ -928,7 +928,7 @@ This is bound for the duration of the handling of that message")
928
928
929
929
(defun nrepl-create-connection-buffer (&optional project-dir host port )
930
930
" Create an nREPL connection buffer.
931
- PROJECT-DIR, PORT and HOST are as in `nrepl-make-buffer-name' ."
931
+ PROJECT-DIR, HOST and PORT are as in `nrepl-make-buffer-name' ."
932
932
(let ((buffer (generate-new-buffer (nrepl-connection-buffer-name project-dir host port))))
933
933
(with-current-buffer buffer
934
934
(buffer-disable-undo )
0 commit comments