csj <[EMAIL PROTECTED]> writes:

> General problem: The format of .emacs has me stumped. Where is it
> documented? Do I have to know lisp?

.emacs is evaluated as an Emacs Lisp program, so you have to know
at least basic Lisp in order to read or modify it.  There's basic
information on this in the Emacs manual under node "Init File".

> Specific problem: I want to start emacs with my margin already set to 65
> (instead of the factory default 70). What specific line do I put in
> ..emacs?

(set-default 'fill-column 65)
Or if you only want this to happen in, say, mail buffers, you
could use something like
(add-hook 'mail-setup-hook '(lambda () (setq fill-column 65)))

-- 
"Mon peu de succ�s pr�s des femmes est toujours venu de les trop aimer."
--Jean-Jacques Rousseau


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Reply via email to