@@ -619,7 +619,7 @@ within Emacs. Return the newly created client connection process."
619619 (setq nrepl-project-dir (buffer-local-value 'nrepl-project-dir server-buf)
620620 nrepl-server-buffer server-buf))
621621 (setq nrepl-endpoint `(, host , port )
622- ; ; fixme: repl and connection buffers are the same thing
622+ ; ; FIXME: REPL and connection buffers are the same thing
623623 nrepl-connection-buffer client-buf
624624 nrepl-repl-buffer (when replp client-buf)
625625 nrepl-tunnel-buffer (and tunnel-proc (process-buffer tunnel-proc))
@@ -788,7 +788,7 @@ of the same \"op\" that came along."
788788 nrepl-sync-request-timeout)
789789 (error " Sync nREPL request timed out %s " request)))
790790 (-when-let (id (nrepl-dict-get response " id" ))
791- ; ; fixme: this should go away eventually when we get rid of
791+ ; ; FIXME: This should go away eventually when we get rid of
792792 ; ; pending-request hash table
793793 (with-current-buffer (nrepl-current-connection-buffer)
794794 (remhash id nrepl-pending-requests)))
@@ -874,7 +874,7 @@ Return a newly created process."
874874 (with-current-buffer (process-buffer process)
875875 (let ((client-proc (nrepl-start-client-process
876876 default-directory nil port t process)))
877- ; ; fixme : Bad connection tracking system. There can be multiple client
877+ ; ; FIXME : Bad connection tracking system. There can be multiple client
878878 ; ; connections per server
879879 (setq nrepl-connection-buffer (buffer-name (process-buffer client-proc))))))))
880880
@@ -1071,7 +1071,7 @@ Purge the dead buffers from the `nrepl-connection-list' beforehand."
10711071 (not (buffer-live-p (get-buffer buffer))))
10721072 nrepl-connection-list)))
10731073
1074- ; ; VS[06-08-2014]: FIXME: Bad user api; don't burden users with management of
1074+ ; ; FIXME: Bad user api; don't burden users with management of
10751075; ; the connection list, same holds for `cider-rotate-connection' .
10761076(defun nrepl-make-connection-default (connection-buffer )
10771077 " Make the nREPL CONNECTION-BUFFER the default connection.
@@ -1102,7 +1102,7 @@ Also closes associated REPL and server buffers."
11021102
11031103; ;; Connection Browser
11041104
1105- ; ; VS[06-08-2014]: FIXME: Naming conventions are pretty messy here. Some
1105+ ; ; FIXME: Naming conventions are pretty messy here. Some
11061106; ; interactive commands are named with "--". nrepl--project-name` is pretty
11071107; ; often used across cider, so it's not very internal.
11081108(defvar nrepl-connections-buffer-mode-map
0 commit comments