From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50411) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W85Qx-0001Ls-F1 for qemu-devel@nongnu.org; Tue, 28 Jan 2014 04:58:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W85Qn-0006pi-1T for qemu-devel@nongnu.org; Tue, 28 Jan 2014 04:58:19 -0500 Received: from mx1.redhat.com ([209.132.183.28]:57050) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W85Qm-0006pY-Fi for qemu-devel@nongnu.org; Tue, 28 Jan 2014 04:58:08 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s0S9w7Ol015116 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 28 Jan 2014 04:58:07 -0500 From: Gerd Hoffmann Date: Tue, 28 Jan 2014 10:57:01 +0100 Message-Id: <1390903055-479-9-git-send-email-kraxel@redhat.com> In-Reply-To: <1390903055-479-1-git-send-email-kraxel@redhat.com> References: <1390903055-479-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 08/42] input: qapi: add pause key List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Markus Armbruster , Gerd Hoffmann , Luiz Capitulino It's missing. Signed-off-by: Gerd Hoffmann --- qapi-schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index 6af22f6..d848e40 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3430,7 +3430,7 @@ # # Since: 1.3.0 # -# 'unmapped' since 2.0 +# 'unmapped' and 'pause' since 2.0 ## { 'enum': 'QKeyCode', 'data': [ 'unmapped', @@ -3448,7 +3448,7 @@ 'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end', 'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again', 'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut', - 'lf', 'help', 'meta_l', 'meta_r', 'compose' ] } + 'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause' ] } ## # @KeyValue -- 1.8.3.1