From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: [C-delete] - should it not be backward-kill-word Date: Tue, 04 Jul 2006 23:44:05 +0200 Message-ID: <44AAE125.40907@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1152049517 10694 80.91.229.2 (4 Jul 2006 21:45:17 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 4 Jul 2006 21:45:17 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jul 04 23:45:14 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Fxsh0-0002FD-BR for ged-emacs-devel@m.gmane.org; Tue, 04 Jul 2006 23:44:26 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fxsgz-0003uJ-Pl for ged-emacs-devel@m.gmane.org; Tue, 04 Jul 2006 17:44:25 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fxsgm-0003sH-0k for emacs-devel@gnu.org; Tue, 04 Jul 2006 17:44:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fxsgk-0003rR-G2 for emacs-devel@gnu.org; Tue, 04 Jul 2006 17:44:11 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fxsgk-0003rJ-6h for emacs-devel@gnu.org; Tue, 04 Jul 2006 17:44:10 -0400 Original-Received: from [81.228.11.98] (helo=pne-smtpout1-sn1.fre.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FxsuV-0006We-3f for emacs-devel@gnu.org; Tue, 04 Jul 2006 17:58:23 -0400 Original-Received: from [192.168.123.121] (83.249.218.244) by pne-smtpout1-sn1.fre.skanova.net (7.2.075) id 44A1364D001A9863 for emacs-devel@gnu.org; Tue, 4 Jul 2006 23:44:05 +0200 User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) Original-To: Emacs Devel 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:56531 Archived-At: On w32 it looks like it is instead kill-word. [C-backspace] is wrong the other way. I wrote this little test to check if key bindings are the default specified in bindings.el: (with-temp-buffer (insert-file (locate-library "bindings.el")) (let ((rdk) (key) (fun)) (while (condition-case err (setq rdk (read (current-buffer))) (error nil)) (setq key nil) (cond ((and (eq (nth 0 rdk) 'define-key) (eq (nth 1 rdk) 'global-map)) (setq key (nth 2 rdk)) (setq fun (nth 3 rdk)) ) ((eq (nth 0 rdk) 'global-set-key) (setq key (nth 1 rdk)) (setq fun (nth 2 rdk)) )) (when key (assert (eq (nth 0 fun) 'quote)) (setq fun (nth 1 fun)) (unless (or (eq (key-binding key) fun) (eq (key-binding key) (command-remapping fun))) (message "from bindings.el: k=%s f=%s, but key-binding=%s" key fun (key-binding key))) ))))