From owner-svn-src-all@freebsd.org Wed Mar 18 17:42:20 2020 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A24D1267819; Wed, 18 Mar 2020 17:42:20 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48jHRc1hH9z4f0K; Wed, 18 Mar 2020 17:42:20 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C231025997; Wed, 18 Mar 2020 17:42:19 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02IHgJj8090506; Wed, 18 Mar 2020 17:42:19 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02IHgJqr090505; Wed, 18 Mar 2020 17:42:19 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <202003181742.02IHgJqr090505@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Wed, 18 Mar 2020 17:42:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r359075 - in stable: 11/share/vt/keymaps 12/share/vt/keymaps X-SVN-Group: stable-12 X-SVN-Commit-Author: hrs X-SVN-Commit-Paths: in stable: 11/share/vt/keymaps 12/share/vt/keymaps X-SVN-Commit-Revision: 359075 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2020 17:42:20 -0000 Author: hrs Date: Wed Mar 18 17:42:18 2020 New Revision: 359075 URL: https://svnweb.freebsd.org/changeset/base/359075 Log: MFC of r358061: Use 0x5c for the scan code 0x7d. Japanese keyboards traditionally use 0x5c for both Japanese yen sign key and backslash key. While a Japanese yen sign is depicted on the keytop, most of Japanese expect that the scan code 0x7d gives a backslash (0x5c), not a Japanese yen sign (0xa5). This is because JIS X 0201 encoding (aka ISO/IEC 646-JA, an extended version of ASCII which is very popular in Japan) has Japanese yen sign at 0x5c and no backslash. On the other hand, ISO/IEC 8859-1 has Japanese yen sign at 0xa5. This difference has caused a confusion after Unicode became popular since ISO/IEC 10646 adopted 8859-1 for the plane 0. Modified: stable/12/share/vt/keymaps/jp.capsctrl.kbd stable/12/share/vt/keymaps/jp.kbd Directory Properties: stable/12/ (props changed) Changes in other areas also in this revision: Modified: stable/11/share/vt/keymaps/jp.capsctrl.kbd stable/11/share/vt/keymaps/jp.kbd Directory Properties: stable/11/ (props changed) Modified: stable/12/share/vt/keymaps/jp.capsctrl.kbd ============================================================================== --- stable/12/share/vt/keymaps/jp.capsctrl.kbd Wed Mar 18 17:35:35 2020 (r359074) +++ stable/12/share/vt/keymaps/jp.capsctrl.kbd Wed Mar 18 17:42:18 2020 (r359075) @@ -117,4 +117,4 @@ 115 '\' '_' fs us '\' '_' fs us O 121 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O 123 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O - 125 0xa5 '|' fs us 0xa5 '|' fs us O + 125 '\' '|' fs us 0xa5 '|' fs us O Modified: stable/12/share/vt/keymaps/jp.kbd ============================================================================== --- stable/12/share/vt/keymaps/jp.kbd Wed Mar 18 17:35:35 2020 (r359074) +++ stable/12/share/vt/keymaps/jp.kbd Wed Mar 18 17:42:18 2020 (r359075) @@ -115,4 +115,4 @@ 115 '\' '_' fs us '\' '_' fs us O 121 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O 123 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O - 125 0xa5 '|' fs us 0xa5 '|' fs us O + 125 '\' '|' fs us 0xa5 '|' fs us O