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: Re: Function for deleting a key binding in a sparse keymap Date: Mon, 05 Dec 2005 17:55:09 +0100 Message-ID: <439470ED.9010809@student.lu.se> References: <439382B9.7020802@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1133803044 30357 80.91.229.2 (5 Dec 2005 17:17:24 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 5 Dec 2005 17:17:24 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 05 18:17:16 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EjJvc-000500-MO for ged-emacs-devel@m.gmane.org; Mon, 05 Dec 2005 18:15:04 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EjJvk-0000oh-Je for ged-emacs-devel@m.gmane.org; Mon, 05 Dec 2005 12:15:12 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EjJcd-00030F-CC for emacs-devel@gnu.org; Mon, 05 Dec 2005 11:55:27 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EjJcZ-0002yR-NZ for emacs-devel@gnu.org; Mon, 05 Dec 2005 11:55:27 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EjJcZ-0002yK-B0 for emacs-devel@gnu.org; Mon, 05 Dec 2005 11:55:23 -0500 Original-Received: from [81.228.8.83] (helo=pne-smtpout1-sn2.hy.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EjJd4-0004z7-8f; Mon, 05 Dec 2005 11:55:54 -0500 Original-Received: from [192.168.123.121] (83.249.218.244) by pne-smtpout1-sn2.hy.skanova.net (7.2.060.1) id 43941F550002314E; Mon, 5 Dec 2005 17:55:09 +0100 User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en Original-To: rms@gnu.org In-Reply-To: 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:47010 Archived-At: Richard M. Stallman wrote: > It would be good to have a function like this in Emacs: > > (defun delete-key-in-sparse-map(sparse-map key) > >This function makes sense; I see how it could be used. Do we really >need it now? > > I just wanted to use it ;-) It is not absolutely necessary, but useful. However if it is simple to write for someone knowing the internals I do believe it should be written since it might clear some misconceptions and make it more easy to understand the meaning of default values in sparse keymaps.