emacs-diffs
[Top][All Lists]
Advanced

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

master 273b0b95c2: Fix file name encoding on Haiku file dialogs


From: Po Lu
Subject: master 273b0b95c2: Fix file name encoding on Haiku file dialogs
Date: Wed, 4 May 2022 03:27:08 -0400 (EDT)

branch: master
commit 273b0b95c2e21c0d2e306b497b805e07d64fc5bc
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>

    Fix file name encoding on Haiku file dialogs
    
    * src/haikufns.c (Fhaiku_read_file_name): Use ENCODE_FILE and
    DECODE_FILE correctly.
---
 src/haikufns.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/haikufns.c b/src/haikufns.c
index bee41e4ec0..e88ded23ff 100644
--- a/src/haikufns.c
+++ b/src/haikufns.c
@@ -2484,7 +2484,7 @@ Optional arg SAVE_TEXT, if non-nil, specifies some text 
to show in the entry fie
   if (!NILP (dir))
     {
       CHECK_STRING (dir);
-      dir = DECODE_FILE (dir);
+      dir = ENCODE_FILE (dir);
     }
 
   if (!NILP (save_text))
@@ -2516,7 +2516,7 @@ Optional arg SAVE_TEXT, if non-nil, specifies some text 
to show in the entry fie
   value = build_string (file_name);
   free (file_name);
 
-  return ENCODE_FILE (value);
+  return DECODE_FILE (value);
 }
 
 DEFUN ("haiku-put-resource", Fhaiku_put_resource, Shaiku_put_resource,



reply via email to

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