From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.help Subject: Re: reading compile.el, modifying settings Date: Thu, 05 May 2011 21:48:08 +0200 Message-ID: <87oc3hudxj.fsf@member.fsf.org> References: <1933055643.48627.1304431423078.JavaMail.root@aksu.oays-ds.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1304624914 18999 80.91.229.12 (5 May 2011 19:48:34 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 5 May 2011 19:48:34 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu May 05 21:48:31 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QI4XG-0005nD-23 for geh-help-gnu-emacs@m.gmane.org; Thu, 05 May 2011 21:48:30 +0200 Original-Received: from localhost ([::1]:58648 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QI4XF-0008Jx-Ez for geh-help-gnu-emacs@m.gmane.org; Thu, 05 May 2011 15:48:29 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:41265) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QI4XA-0008Jq-6B for help-gnu-emacs@gnu.org; Thu, 05 May 2011 15:48:24 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QI4X9-00021G-Ei for help-gnu-emacs@gnu.org; Thu, 05 May 2011 15:48:24 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:53386) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QI4X9-00021A-97 for help-gnu-emacs@gnu.org; Thu, 05 May 2011 15:48:23 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QI4X6-0005kQ-Po for help-gnu-emacs@gnu.org; Thu, 05 May 2011 21:48:20 +0200 Original-Received: from 178-27-29-99-dynip.superkabel.de ([178.27.29.99]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 05 May 2011 21:48:20 +0200 Original-Received: from tassilo by 178-27-29-99-dynip.superkabel.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 05 May 2011 21:48:20 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 33 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 178-27-29-99-dynip.superkabel.de User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:z2KkrlqjYo0fsy0qwJuuewwIUTM= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 80.91.229.12 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:80931 Archived-At: Hi Paul, I've just tested what you are doing with a current emacs 24 bzr checkout. ,----[ ~/test.el ] | (require 'compile) ; works | ;; (load "compile") ;; works, too | | (load "~/test2.el") `---- ,----[ ~/test2.el ] | (setq compilation-error-regexp-alist "test") `---- Now I start emacs using $ emacs -Q -l ~/test.el and in there I have: ,----[ C-h v compilation-error-regexp-alist ] | compilation-error-regexp-alist is a variable defined in `compile.el'. | Its value is "test" | Original value was | (absoft ... perl--Test2 perl--Test::Harness weblint) `---- So I cannot reproduce the issue. Bye, Tassilo