]> git.eshelyaron.com Git - emacs.git/commitdiff
Really convert to multibyte in Fdirectory_append
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 24 Jul 2021 16:48:44 +0000 (18:48 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 24 Jul 2021 16:53:43 +0000 (18:53 +0200)
* src/fileio.c (Fdirectory_append): Fix check for whether we need
to convert to multibyte.
(Fdirectory_append):

src/fileio.c
test/src/fileio-tests.el

index 60f5650302c5c26e64e854c5b51492f73d80cfad..6d505fd0f01e61c94ac597a82bbac021a29422f6 100644 (file)
@@ -799,8 +799,7 @@ usage: (record DIRECTORY &rest COMPONENTS) */)
          if (STRING_MULTIBYTE (arg) || string_ascii_p (arg))
            elements[i] = arg;
          else
-           elements[i] = make_multibyte_string (SSDATA (arg), SCHARS (arg),
-                                                SCHARS (arg));
+           elements[i] = Fstring_to_multibyte (arg);
          arg = elements[i];
          /* We have to recompute the number of bytes. */
          if (i == nargs - 1
index 702659fa3951b08a8cbc9dd93ab18c2a103ca51d..73a7775279ac4bc12990c618a058833e431c5e39 100644 (file)
@@ -170,6 +170,11 @@ Also check that an encoding error can appear in a symlink."
   (should (equal (directory-append "fóo" "bar") "fóo/bar"))
   (should (equal (directory-append "foo" "bár") "foo/bár"))
   (should (equal (directory-append "fóo" "bár") "fóo/bár"))
+  (let ((string (make-string 5 ?a)))
+    (should (not (multibyte-string-p string)))
+    (aset string 2 255)
+    (should (not (multibyte-string-p string)))
+    (should (equal (directory-append "fóo" string) "fóo/aa\377aa")))
   (should-error (directory-append "foo" ""))
   (should-error (directory-append "" "bar"))
   (should-error (directory-append "" "")))