diff --git a/basis/ui/backend/x11/x11.factor b/basis/ui/backend/x11/x11.factor index 5a2a8974e7..d4b2959297 100755 --- a/basis/ui/backend/x11/x11.factor +++ b/basis/ui/backend/x11/x11.factor @@ -225,7 +225,7 @@ M: x-clipboard paste-clipboard utf8 encode dup length XChangeProperty drop ; : set-class ( dpy window -- ) - XA_WM_CLASS XA_STRING 8 PropModeReplace "Factor" + XA_WM_CLASS XA_UTF8_STRING 8 PropModeReplace "Factor" utf8 encode dup length XChangeProperty drop ; M: x11-ui-backend set-title ( string world -- ) diff --git a/misc/fuel/fuel-syntax.el b/misc/fuel/fuel-syntax.el index 7aba6282d6..1c88989366 100644 --- a/misc/fuel/fuel-syntax.el +++ b/misc/fuel/fuel-syntax.el @@ -262,7 +262,8 @@ ("\\_\\)" (1 "\\)" (2 "\\)" + (2 "" (1 ">b")) ;; Let and lambda: ("\\_<\\(!(\\) .* \\()\\)" (1 "<") (2 ">")) @@ -275,6 +276,7 @@ ("\\_<\\(}\\)\\_>" (1 "){")) ;; Parenthesis: ("\\_<\\((\\)\\_>" (1 "()")) + ("\\_" (1 "()")) ("\\_<\\()\\)\\_>" (1 ")(")) ("\\_<(\\((\\)\\_>" (1 "()")) ("\\_<\\()\\))\\_>" (1 ")("))