emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 80e9856: Fix Bug#33524


From: Michael Albinus
Subject: [Emacs-diffs] emacs-26 80e9856: Fix Bug#33524
Date: Tue, 18 Dec 2018 11:44:45 -0500 (EST)

branch: emacs-26
commit 80e98568aa41b106ebc9bbec9a44fe442a93803d
Author: Michael Albinus <address@hidden>
Commit: Michael Albinus <address@hidden>

    Fix Bug#33524
    
    * lisp/progmodes/flymake-proc.el
    (flymake-proc-create-temp-with-folder-structure):
    Unquote file-name.  (Bug#33524)
---
 lisp/progmodes/flymake-proc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/progmodes/flymake-proc.el b/lisp/progmodes/flymake-proc.el
index 4792a94..7916108 100644
--- a/lisp/progmodes/flymake-proc.el
+++ b/lisp/progmodes/flymake-proc.el
@@ -854,7 +854,7 @@ can also be executed interactively independently of
   (unless (stringp file-name)
     (error "Invalid file-name"))
 
-  (let* ((dir       (file-name-directory file-name))
+  (let* ((dir       (file-name-directory (file-name-unquote file-name)))
          ;; Not sure what this slash-pos is all about, but I guess it's just
          ;; trying to remove the leading / of absolute file names.
         (slash-pos (string-match "/" dir))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]