From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Daniel Rubin Newsgroups: gmane.emacs.help Subject: Re: Turn on hungry delete for a buffer Date: Wed, 21 Mar 2007 13:53:30 +0100 Message-ID: <46012ACA.70808@warum-ada.de> References: <1174480429.932401.189160@p15g2000hsd.googlegroups.com> NNTP-Posting-Host: lo.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 1174481655 2697 80.91.229.12 (21 Mar 2007 12:54:15 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 21 Mar 2007 12:54:15 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 21 13:53:59 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HU0KA-00030p-CJ for geh-help-gnu-emacs@m.gmane.org; Wed, 21 Mar 2007 13:53:54 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HU0Lp-0001l5-W1 for geh-help-gnu-emacs@m.gmane.org; Wed, 21 Mar 2007 07:55:38 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HU0Lb-0001kx-Sh for help-gnu-emacs@gnu.org; Wed, 21 Mar 2007 08:55:23 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HU0LZ-0001kd-Q1 for help-gnu-emacs@gnu.org; Wed, 21 Mar 2007 08:55:22 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HU0LZ-0001kY-Bf for help-gnu-emacs@gnu.org; Wed, 21 Mar 2007 07:55:21 -0500 Original-Received: from dd13638.kasserver.com ([85.13.135.127]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HU0Js-0001pb-PU for help-gnu-emacs@gnu.org; Wed, 21 Mar 2007 08:53:36 -0400 Original-Received: from [134.95.9.146] (gaffel.informatik.uni-koeln.de [134.95.9.146]) by dd13638.kasserver.com (Postfix) with ESMTP id 064D12E84A for ; Wed, 21 Mar 2007 13:53:33 +0100 (CET) User-Agent: Thunderbird 1.5.0.5 (X11/20060813) In-Reply-To: <1174480429.932401.189160@p15g2000hsd.googlegroups.com> X-detected-kernel: Linux 2.6 (newer, 3) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:42073 Archived-At: Eric Lilja wrote: > Hello, I'm using this emacs: GNU Emacs 22.0.93.1 (i386-mingw- > nt5.1.2600) of 2007-02-20 on MINDCOOLER > > I wanted to turn on hungry delete for a buffer, so I did: > M-: > eval: (setq c-toggle-hungry-state 1) > But hungry delete wasn't turned on...I still have to do one C-d per > space. What did I do wrong? `c-toggle-hungry-state' is a function, not a variable. Try M-x c-toggle-hungry-state RET instead. Additionally, C-c C-d performs a single hungry delete. Have fun ----Daniel