From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Deniz Dogan Newsgroups: gmane.emacs.devel Subject: Is something wrong with `kbd'? Date: Tue, 9 Feb 2010 20:10:53 +0100 Message-ID: <7b501d5c1002091110p5ee5f0c4sed8d15b730c4cbb8@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1265742684 23521 80.91.229.12 (9 Feb 2010 19:11:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 9 Feb 2010 19:11:24 +0000 (UTC) To: Emacs-Devel devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 09 20:11:21 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1NevUX-0002bJ-1B for ged-emacs-devel@m.gmane.org; Tue, 09 Feb 2010 20:11:21 +0100 Original-Received: from localhost ([127.0.0.1]:34294 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NevUW-00020p-BE for ged-emacs-devel@m.gmane.org; Tue, 09 Feb 2010 14:11:20 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NevUR-00020H-Cd for emacs-devel@gnu.org; Tue, 09 Feb 2010 14:11:15 -0500 Original-Received: from [199.232.76.173] (port=38837 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NevUR-000205-41 for emacs-devel@gnu.org; Tue, 09 Feb 2010 14:11:15 -0500 Original-Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NevUQ-0008R3-OF for emacs-devel@gnu.org; Tue, 09 Feb 2010 14:11:15 -0500 Original-Received: from mail-ew0-f228.google.com ([209.85.219.228]:35220) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NevUQ-0008Qx-Dy for emacs-devel@gnu.org; Tue, 09 Feb 2010 14:11:14 -0500 Original-Received: by ewy28 with SMTP id 28so3491374ewy.8 for ; Tue, 09 Feb 2010 11:11:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=KUO2NUwR8kjnfjZWeqOaN8i4b/YavifuKCbPUmtju/M=; b=R9tUOa0rTA/ZY6U9KoOX7MqQWDCWCkZxU9FGlw/4c7bcZpWe5aGUaH0lEV2F2DNH7i EFnFCm+YE48cqNvEHkRJkZpWaopYtSWg5OHAmN0dsTAE9Vc0dH8qDXfi0ZoprU0oXzpA UgOLUodsNCippB9rYpfLWrxiNTbqZlADtwtV4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=I4y4sJNWTwmCds6hfPuZublCrZJpyKnUqwJAoQfNfB4ng95c7JrLN1+/gxI5mqazqc gAXpF8lE/7hwgRNLfSc+oj4wLmA52iPqzincHcEQmiBGFCwNnMYc61J7rPbS/6evniS9 v4AYLGzAgrjiw2s7hR6PzOdHFukVHSIqPslyE= Original-Received: by 10.213.109.92 with SMTP id i28mr333048ebp.63.1265742673225; Tue, 09 Feb 2010 11:11:13 -0800 (PST) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:121035 Archived-At: One user in #emacs on Freenode just stumbled across something that looks like a bug to me. (global-set-key (kbd "C-TAB") 'mode-line-other-buffer) Using that and then hitting C-TAB gives me " is undefined". >From the documentation for `edmacro-mode': * The special words RET, SPC, TAB, DEL, LFD, ESC, and NUL represent special control characters. The words must be written in uppercase. * One or more prefixes M- (meta), C- (control), S- (shift), A- (alt), ... What's going on here? (kbd "C-TAB") returns [67108873], whatever that's supposed to be. (kbd "") returns [C-tab]. -- Deniz Dogan