From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Javier Oviedo" Newsgroups: gmane.emacs.help Subject: Re: elisp byte compilation problem Date: Fri, 23 May 2003 14:33:40 -0400 Organization: Texas Instruments Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <84el2qgpnp.fsf@lucy.is.informatik.uni-duisburg.de> <3ECE5A50.6010709@yahoo.com> NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1053715242 25110 80.91.224.249 (23 May 2003 18:40:42 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 23 May 2003 18:40:42 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Fri May 23 20:40:34 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19JHSS-0006V5-00 for ; Fri, 23 May 2003 20:40:00 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19JHSz-0006c2-4K for gnu-help-gnu-emacs@m.gmane.org; Fri, 23 May 2003 14:40:33 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!cyclone.bc.net!tdsnet-transit!newspeer.tds.net!66.181.128.6.MISMATCH!news.ticon.net!newsfeed.hal-mli.net!newsfeeder.mylinuxisp.com!newsfeed.hal-mli.net!nntp1.hal-pc.org!attdl1!ip.att.net!news.ti.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 71 Original-NNTP-Posting-Host: gt64v7121.telogy.design.ti.com Original-X-Trace: home.itg.ti.com 1053714676 25613 158.218.105.183 (23 May 2003 18:31:16 GMT) Original-X-Complaints-To: usenet@news.ti.com Original-NNTP-Posting-Date: 23 May 2003 18:31:16 GMT X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Original-Xref: shelby.stanford.edu gnu.emacs.help:113632 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:10128 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:10128 I'm sorry but I'm not sure if I'm giving the correct info, but here goes...I did a occur on "local-variables" and this is what I get: Why would there not be an error when using .el version if something is truly wrong with a local-variable? Thanks. 31 lines matching "local-variable" in buffer folding.el. 708:;; - (folding-set-local-variables): 2.61 New. Now it is possible to 710:;; - (folding-mode): 2.61 Call `folding-set-local-variables' 712:;; - `folding-set-local-variables' 1283:;; utilize kill-all-local-variables-hooks with defadvice around 1284:;; kill-all-local-variables ... 1287:;; kill-all-local-variables-hooks :! v, moved to variable section 2130:Use function `folding-set-local-variables' is you change the current mode's 2795: (kill-local-variable 'folding-mode-string) 2796: (make-local-variable 'folding-mode-string) 2859: (and (assq 'folded-file (buffer-local-variables)) 2862: (kill-local-variable 'folded-file) 2875:If `inhibit-local-variables' is non-nil, this will not happen regardless 2939:(defun folding-set-local-variables () 2944: (set (make-local-variable 'folding-stack) nil) 2945: (make-local-variable 'folding-top-mark) 2946: (make-local-variable 'folding-secondary-top-mark) 2947: (make-local-variable 'folding-top-regexp) 2948: (make-local-variable 'folding-bottom-mark) 2949: (make-local-variable 'folding-bottom-regexp) 2950: (make-local-variable 'folding-regexp) 3010: first read (see `hack-local-variables'). 3135: (folding-set-local-variables) 3209: (set (make-local-variable 'folding-top-mark) 3211: (set (make-local-variable 'folding-bottom-mark) 3213: (set (make-local-variable 'folding-secondary-top-mark) 3215: (set (make-local-variable 'folding-top-regexp) 3218: (set (make-local-variable 'folding-bottom-regexp) 3221: (set (make-local-variable 'folding-regexp) 4495: (buffer-local-variables)) 4638: (make-local-variable 'minibuffer-local-isearch-map) 4686: (kill-local-variable 'minibuffer-local-isearch-map) -- ======= Javier "Kevin Rodgers" wrote in message news:3ECE5A50.6010709@yahoo.com... > Javier Oviedo wrote: > > > These errors did not start happening until recently... > > > > I byte compiled folding.el and I see the following in the *Messages* buffer: > > > > Compiling c:/data/joviedo/Emacs/site-lisp_21_2/folding.el... > > Folding buffer... done > > Folding buffer... done > > File local-variables error: (error "Local variables entry is missing the > > prefix") > > Compiling c:/data/joviedo/Emacs/site-lisp_21_2/folding.el...done > > Wrote c:/data/joviedo/Emacs/site-lisp_21_2/folding.elc > > Byte-Compile: 1 file. > > Well, what does the file-local variables section of folding.el look like? > > > -- > Kevin Rodgers >