all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* file/local variables (and auctex?)
@ 2007-04-10 10:35 thorne
  2007-04-10 17:33 ` Ralf Angeli
  0 siblings, 1 reply; 6+ messages in thread
From: thorne @ 2007-04-10 10:35 UTC (permalink / raw)
  To: help-gnu-emacs


Hello.  I am working on a file and in its current incarnation it has a
file variables (first) line that looks like this:

% -*- fill-column: 60; -*- 

and a local variables (last) section that looks like this:

% Local Variables: %
% mode:latex %
% mode:longlines %
% tab-width:5 %
% tex-open-quote:"\"" %
% tex-close-quote:"\"" %
% indent-tabs-mode:nil %
% indent-line-function:insert-tab %
% End: % 

The problem:  latex mode and longlines do turn on and everything works
except setting fill-column and setting the tex open/close quote
string.  C-h v fill-column RET tells me it is set to 68 instead of
60.  Stranger, is that the tex open/close quote string tells me (when
i do C-h v) that they _are_ set correctly... yet when i acually type
a quote in the buffer, it inserts the default tex quotes.  I am
baffled.  Can anyone clue me in on what may be wrong?  

[This is GNU Emacs 22.0.92.1 (i686-pc-linux-gnu... )]

Thanks!

-- 
þ    theron tlåx    þ
(compose-mail (concat "thorne@" (rot13 "gvzoeny") ".net"))

^ permalink raw reply	[flat|nested] 6+ messages in thread
* Re: file/local variables (and auctex?)
@ 2007-04-11  5:53 martin rudalics
  0 siblings, 0 replies; 6+ messages in thread
From: martin rudalics @ 2007-04-11  5:53 UTC (permalink / raw)
  To: dev.null; +Cc: help-gnu-emacs

 >> % Local Variables: %
 >> % mode:latex %
 >> % mode:longlines %
 >> % tab-width:5 %
 >> % tex-open-quote:"\"" %
 >> % tex-close-quote:"\"" %
 >> % indent-tabs-mode:nil %
 >> % indent-line-function:insert-tab %
 >> % End: %
 >
 > There is some spurious whitespace at the end of the last line.  This
 > prevents the whole stanza from being processed since the suffixes do
 > not match.

That would have caused a "Local variables list is not properly
terminated" error.  In the particular case the suffix is " %" and
matches, the trailing space being ignored.

^ permalink raw reply	[flat|nested] 6+ messages in thread
[parent not found: <mailman.1938.1176270970.7795.help-gnu-emacs@gnu.org>]
* Re: file/local variables (and auctex?)
@ 2007-04-12  8:34 martin rudalics
  0 siblings, 0 replies; 6+ messages in thread
From: martin rudalics @ 2007-04-12  8:34 UTC (permalink / raw)
  To: dev.null; +Cc: help-gnu-emacs

 > I actually got this very error when copying the lines above to a file
 > and opening it.

Indeed - I was confused because the OP didn't mention it the first time.
It's due to the "$" in

	  (let ((suffix
		 (concat
		  (regexp-quote (buffer-substring (point)
						  (line-end-position)))
		  "$"))

and I stand corrected.  Maybe we should write

	  (let ((suffix
		 (concat
		  (regexp-quote (buffer-substring (point)
						  (line-end-position)))
		  "[ \t]*$"))

instead.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-04-12  8:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-10 10:35 file/local variables (and auctex?) thorne
2007-04-10 17:33 ` Ralf Angeli
2007-04-11  0:40   ` thorne
  -- strict thread matches above, loose matches on Subject: below --
2007-04-11  5:53 martin rudalics
     [not found] <mailman.1938.1176270970.7795.help-gnu-emacs@gnu.org>
2007-04-11 16:55 ` Ralf Angeli
2007-04-12  8:34 martin rudalics

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.