From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kai Grossjohann Newsgroups: gmane.emacs.help Subject: Re: Strange mini-buffer problem Date: Wed, 01 Oct 2003 00:13:32 +0200 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <8665j9ylf7.fsf@slowfox.dyndns.org> References: <3F681F6E.6010008@gmx.net> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1064960210 13080 80.91.224.253 (30 Sep 2003 22:16:50 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 30 Sep 2003 22:16:50 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Oct 01 00:16:46 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1A4SnW-0007CR-00 for ; Wed, 01 Oct 2003 00:16:46 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.22) id 1A4SnH-00049Q-Ee for geh-help-gnu-emacs@m.gmane.org; Tue, 30 Sep 2003 18:16:31 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!bloom-beacon.mit.edu!nycmny1-snh1.gtei.net!washdc3-snh1.gtei.net!news.gtei.net!ngpeer.news.aol.com!newsfeed1!bredband!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!p508e30f1.dip.t-dialin.NET!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 22 Original-NNTP-Posting-Host: p508e30f1.dip.t-dialin.net (80.142.48.241) Original-X-Trace: news.uni-berlin.de 1064959956 10763714 80.142.48.241 (16 [73968]) User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3.50 (berkeley-unix) Cancel-Lock: sha1:gpP5ATAkKPAJu1HeBGwQ+7pHHk4= Original-Xref: shelby.stanford.edu gnu.emacs.help:116975 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:12900 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:12900 Thomas Heinz writes: > I'm currently experiencing a strange problem which "suddenly" appeared. > I'm using the auc tex mode and when I type C-c C-c a line in the mini buffer > appears stating "Command: (default LaTex)". Usually, when I press return the > command "latex " is being executed. > > Now, after pressing return nothing happens. In fact, I need to enter the > mini-buffer (menu->Minibuf->Enter) to let the command being executed. > Of course, I don't want to do that every time I need to compile my document. > Any ideas what made this happen? Did you bind the key? Don't do that. Do change the binding of the return key, use (global-set-key (kbd "RET") 'some-command) ; ^^^^^^^^^^^ ; the important part Just a stab in the dark. Kai