File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 17
17
* Changed default ` cider-gradle-command ` to ` ./gradlew ` to use the Gradle wrapper
18
18
* Changed default ` cider-gradle-global-options ` to ` "" ` (empty, formerly ` --no-daemon ` )
19
19
20
+ ### Bugs fixed
21
+
22
+ * [ #3235 ] ( https://github.com/clojure-emacs/cider/issues/3235 ) : Check ` name ` is a TRAMP file in ` cider--client-tramp-filename ` via ` tramp-tramp-file-p ` .
23
+
20
24
## 1.4.1 (2022-05-25)
21
25
22
26
## Changes
Original file line number Diff line number Diff line change @@ -263,7 +263,8 @@ otherwise, nil."
263
263
(let* ((buffer (or buffer (current-buffer )))
264
264
(name (replace-regexp-in-string " ^file:" " " name))
265
265
(name (concat (cider-tramp-prefix buffer) name)))
266
- (if (tramp-handle-file-exists-p name)
266
+ (if (and (tramp-tramp-file-p name)
267
+ (tramp-handle-file-exists-p name))
267
268
name)))
268
269
269
270
(defun cider--server-filename (name )
You can’t perform that action at this time.
0 commit comments