From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Peter Dyballa Newsgroups: gmane.emacs.help Subject: Re: First character beeps screen sometimes Date: Sun, 11 Mar 2012 21:56:04 +0100 Message-ID: <2D3A0C71-1242-4BD7-A4E2-C890334FB555@web.de> References: <87sjhgex1h.fsf@Gmail.com> <-6389656402380516812@unknownmsgid> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1331499377 28118 80.91.229.3 (11 Mar 2012 20:56:17 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 11 Mar 2012 20:56:17 +0000 (UTC) Cc: "help-gnu-emacs@gnu.org" , XeCycle To: Matt McClure Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Mar 11 21:56:16 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1S6poO-0001pU-E5 for geh-help-gnu-emacs@m.gmane.org; Sun, 11 Mar 2012 21:56:16 +0100 Original-Received: from localhost ([::1]:54919 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S6poN-0001x4-QX for geh-help-gnu-emacs@m.gmane.org; Sun, 11 Mar 2012 16:56:15 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:46481) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S6poI-0001wx-40 for help-gnu-emacs@gnu.org; Sun, 11 Mar 2012 16:56:11 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S6poG-0004cY-Be for help-gnu-emacs@gnu.org; Sun, 11 Mar 2012 16:56:09 -0400 Original-Received: from fmmailgate04.web.de ([217.72.192.242]:44562) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S6poG-0004cO-5R for help-gnu-emacs@gnu.org; Sun, 11 Mar 2012 16:56:08 -0400 Original-Received: from moweb002.kundenserver.de (moweb002.kundenserver.de [172.19.20.108]) by fmmailgate04.web.de (Postfix) with ESMTP id 02B8D739237C for ; Sun, 11 Mar 2012 21:56:06 +0100 (CET) Original-Received: from peter-dyballas-macbook-pro.fritz.box ([88.153.242.186]) by smtp.web.de (mrweb002) with ESMTPA (Nemesis) id 0MV4xx-1Rq9rk2Tjp-00YVcC; Sun, 11 Mar 2012 21:56:05 +0100 In-Reply-To: <-6389656402380516812@unknownmsgid> X-Mailer: Apple Mail (2.1084) X-Provags-ID: V02:K0:c2VAIW0RhMJ+dijl+EyNNQhPkeC43TqEU4Xy1zeRvhU qArs/aBCkGjZea/I6DG2Wx9f80pWlE6ds0X1VtdXTVF3zbiwaQ w/lzbLG8a20E7wV9qCqi4S8Nd3424P0htPyqTH9pAycVdJGJWb 0+qI/uduH7nGWdwrYD731xl0PVp5dQqNwxSPoZEVEsYUlm4k1U w3WXtWnJGHa+4qLEM92xA== X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 217.72.192.242 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 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 Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:84005 Archived-At: Am 11.3.2012 um 18:53 schrieb Matt McClure: > --no-site-file would eliminate that variable, correct? And only this file. As you wrote your own init file, made non-existing = with -q, is OK, so it could be the system's init file that causes = beeping. But it can also be that somewhere in the site Lisp directory = inappropriate files are lying around. Developing GNU Emacs 24 has more = specific options: --no-init-file, -q load neither ~/.emacs nor default.el --no-site-file do not load site-start.el --no-site-lisp, -nsl do not add site-lisp directories to = load-path --quick, -Q equivalent to: -q --no-site-file --no-site-lisp = --no-splash Anyway, you could use this snippet to record in *Messages* buffer the = files that are loaded. This has to be executed at first, maybe directly = from the command line: (defadvice load (before debug-log activate) (message "(Tipp von Kai G) Loade now: %s" (ad-get-arg 0))) -- Greetings Pete Give a man a fish, and you've fed him for a day. Teach him to fish, and = you've depleted the lake.