From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel,gmane.emacs.pretest.bugs Subject: Re: safe variables for perl and cperl Date: Sun, 09 Dec 2007 11:22:01 -0800 Message-ID: <200712091922.lB9JM1ba010394@oogie-boogie.ics.uci.edu> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1197228340 22410 80.91.229.12 (9 Dec 2007 19:25:40 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 9 Dec 2007 19:25:40 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org To: Tom Tromey Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Dec 09 20:25:49 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1J1Rmd-0001T2-NA for ged-emacs-devel@m.gmane.org; Sun, 09 Dec 2007 20:25:47 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J1RmL-00034T-Po for ged-emacs-devel@m.gmane.org; Sun, 09 Dec 2007 14:25:29 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J1RmH-000327-Uz for emacs-devel@gnu.org; Sun, 09 Dec 2007 14:25:26 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J1RmG-0002zF-AS for emacs-devel@gnu.org; Sun, 09 Dec 2007 14:25:25 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J1RmG-0002z4-7P for emacs-devel@gnu.org; Sun, 09 Dec 2007 14:25:24 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J1RmF-00005Q-Vr for emacs-devel@gnu.org; Sun, 09 Dec 2007 14:25:24 -0500 Original-Received: from mail.gnu.org ([199.232.76.166] helo=mx10.gnu.org) by fencepost.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J1RmF-0003y5-Pv for emacs-pretest-bug@gnu.org; Sun, 09 Dec 2007 14:25:23 -0500 Original-Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1J1RmC-0008WM-HU for emacs-pretest-bug@gnu.org; Sun, 09 Dec 2007 14:25:23 -0500 Original-Received: from oogie-boogie.ics.uci.edu ([128.195.1.41]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J1RmC-0008W8-0g for emacs-pretest-bug@gnu.org; Sun, 09 Dec 2007 14:25:20 -0500 Original-Received: from mothra.ics.uci.edu (mothra.ics.uci.edu [128.195.6.93]) by oogie-boogie.ics.uci.edu (8.13.6/8.13.6) with ESMTP id lB9JM1ba010394; Sun, 9 Dec 2007 11:22:01 -0800 (PST) In-Reply-To: (Tom Tromey's message of "Fri, 30 Nov 2007 12:12:31 -0700") Original-Lines: 38 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@mothra.ics.uci.edu X-detected-kernel: by monty-python.gnu.org: Solaris 9 X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:84926 gmane.emacs.pretest.bugs:20432 Archived-At: Tom Tromey writes: > Please write in English if possible, because the Emacs maintainers > usually do not have translators to read other languages for them. > > Your bug report will be posted to the emacs-pretest-bug@gnu.org mailing list. > > Please describe exactly what actions triggered the bug > and the precise symptoms of the bug: > > > automake.in, a perl script, has this local variable section: > > ### Setup "GNU" style for perl-mode and cperl-mode. > ## Local Variables: > ## perl-indent-level: 2 > ## perl-continued-statement-offset: 2 > ## perl-continued-brace-offset: 0 > ## perl-brace-offset: 0 > ## perl-brace-imaginary-offset: 0 > ## perl-label-offset: -2 > ## cperl-indent-level: 2 > ## cperl-brace-offset: 0 > ## cperl-continued-brace-offset: 0 > ## cperl-label-offset: -2 > ## cperl-extra-newline-before-brace: t > ## cperl-merge-trailing-else: nil > ## cperl-continued-statement-offset: 2 > ## End: > > Every time I visit this file I'm prompted to verify these settings. > I looked at perl-mode and cperl-mode, and only perl-indent-level and > cperl-indent-level are marked as safe local variables. > > I think all of these variables should be marked as safe. I did that on the EMACS_22_BASE branch, it will get merged to the trunk at some point.