From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51555) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WLAOf-0002ua-Tg for qemu-devel@nongnu.org; Wed, 05 Mar 2014 06:54:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WLAOZ-0002C2-SA for qemu-devel@nongnu.org; Wed, 05 Mar 2014 06:54:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:2722) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WLAOZ-0002Bn-Jf for qemu-devel@nongnu.org; Wed, 05 Mar 2014 06:53:55 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s25BrsN0004557 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 5 Mar 2014 06:53:54 -0500 From: Gerd Hoffmann Date: Wed, 5 Mar 2014 12:53:07 +0100 Message-Id: <1394020420-17576-6-git-send-email-kraxel@redhat.com> In-Reply-To: <1394020420-17576-1-git-send-email-kraxel@redhat.com> References: <1394020420-17576-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL v4 05/38] 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 Reviewed-by: Eric Blake --- qapi-schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index 609d576..6c381b7 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3556,7 +3556,7 @@ # # Since: 1.3.0 # -# 'unmapped' since 2.0 +# 'unmapped' and 'pause' since 2.0 ## { 'enum': 'QKeyCode', 'data': [ 'unmapped', @@ -3574,7 +3574,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