@@ -1200,14 +1200,14 @@ operations.")
1200
1200
(setq-local electric-indent-chars nil )
1201
1201
(setq-local comment-start " ;" )
1202
1202
(setq-local comment-end " " )
1203
- (setq-local paragraph-start " (--- >\\ |(<-" )
1204
- (setq-local paragraph-separate " (<-" ))
1203
+ (setq-local paragraph-start " (-->\\ |(<- -" )
1204
+ (setq-local paragraph-separate " (<-- " ))
1205
1205
1206
1206
(defun nrepl-decorate-msg (msg type )
1207
1207
" Decorate nREPL MSG according to its TYPE."
1208
1208
(pcase type
1209
- (`request (cons '--- > (cdr msg)))
1210
- (`response (cons '<- (cdr msg)))))
1209
+ (`request (cons '--> (cdr msg)))
1210
+ (`response (cons '<-- (cdr msg)))))
1211
1211
1212
1212
(defun nrepl-log-message (msg type )
1213
1213
" Log the nREPL MSG.
@@ -1256,7 +1256,7 @@ Set this to nil to prevent truncation."
1256
1256
(defun nrepl--pp (object &optional foreground )
1257
1257
" Pretty print nREPL OBJECT, delimited using FOREGROUND."
1258
1258
(if (not (and (listp object)
1259
- (memq (car object) '(<- - --> dict))))
1259
+ (memq (car object) '(<-- --> dict))))
1260
1260
(progn (when (stringp object)
1261
1261
(setq object (substring-no-properties object)))
1262
1262
(pp object (current-buffer ))
0 commit comments