From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Eric Twietmeyer" Newsgroups: gmane.emacs.help Subject: Re: enable-local-variables Date: 2 Jan 2007 06:55:08 -0800 Organization: http://groups.google.com Message-ID: <1167749708.012792.260690@i12g2000cwa.googlegroups.com> References: <1167681848.399172.255500@h40g2000cwb.googlegroups.com> <45998113$0$5712$9b4e6d93@newsspool3.arcor-online.net> <1167690432.813314.179450@i12g2000cwa.googlegroups.com> <45999042$0$30319$9b4e6d93@newsspool1.arcor-online.net> <1167697316.065889.189060@i12g2000cwa.googlegroups.com> <1167704472.683295.83360@v33g2000cwv.googlegroups.com> <459a021e$0$30318$9b4e6d93@newsspool1.arcor-online.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Trace: sea.gmane.org 1167752501 6810 80.91.229.12 (2 Jan 2007 15:41:41 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 2 Jan 2007 15:41:41 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jan 02 16:41:39 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 1H1lld-0006Y8-Tv for geh-help-gnu-emacs@m.gmane.org; Tue, 02 Jan 2007 16:41:34 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H1lld-0003BX-C1 for geh-help-gnu-emacs@m.gmane.org; Tue, 02 Jan 2007 10:41:33 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!i12g2000cwa.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 45 Original-NNTP-Posting-Host: 69.254.192.192 Original-X-Trace: posting.google.com 1167749713 8078 127.0.0.1 (2 Jan 2007 14:55:13 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Tue, 2 Jan 2007 14:55:13 +0000 (UTC) User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: i12g2000cwa.googlegroups.com; posting-host=69.254.192.192; posting-account=X4mNGgwAAABKvPB38ntAu46e-VHbLqgS Original-Xref: shelby.stanford.edu gnu.emacs.help:144500 Original-To: help-gnu-emacs@gnu.org 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:40103 Archived-At: Ralf Angeli wrote: > * Eric Twietmeyer (2007-01-02) writes: > > > Eric Twietmeyer wrote: > >> Ralf Angeli wrote: > >> > > >> > Then > >> > (put 'typedefs 'safe-local-variable 'listp) > >> > should work. > [...] > >> Ok, now I understand the confusion. I didn't realize that my extended > >> .emacs had code I took long ago from someone that added this "feature", > >> I thought it was part of the standard font-lock stuff. Here is the > >> relevant code: > > You could propose something like that as a feature request to CC mode > maintainers. > > >> So what do I need to do to make this typedef variable always safe? Or > >> where do I look in the docs to learn how to do this? > > See above. > > > Well, looking through files.el where all of this stuff is used, it > > looks like perhaps this is what I needed to do: > > > > (defvar typedefs nil "Typedefs in this buffer.") > > (make-variable-buffer-local 'typedefs) > > (put 'typedefs 'safe-local-variable '(lambda (x) t)) > > > > It looked like the safe-local-variable property is what controls > > things. > > > > Please let me know if this is the correct way, thanks! > > See above. > > -- > Ralf Now I understand your original posts. Thanks for your patience and your help. -Eric Twietmeyer