]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/xwidget.c (Fxwidget_webkit_goto_uri): Encode uri.
authorAndreas Schwab <schwab@linux-m68k.org>
Mon, 21 May 2018 22:00:11 +0000 (00:00 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Mon, 21 May 2018 22:09:24 +0000 (00:09 +0200)
src/xwidget.c

index c4a3b1990d3d170f9e93562184a03279352c8d6e..16243b7789ef037b4c7680dcea5120a485a262a9 100644 (file)
@@ -683,6 +683,7 @@ DEFUN ("xwidget-webkit-goto-uri",
 {
   WEBKIT_FN_INIT ();
   CHECK_STRING (uri);
+  uri = ENCODE_FILE (uri);
   webkit_web_view_load_uri (WEBKIT_WEB_VIEW (xw->widget_osr), SSDATA (uri));
   return Qnil;
 }