[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Why didn't setq work here?
From: |
Tassilo Horn |
Subject: |
Re: Why didn't setq work here? |
Date: |
Fri, 07 Jan 2011 15:26:11 +0100 |
User-agent: |
Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) |
Eric Lilja <mindcooler@gmail.com> writes:
> I have one final question though. fill-column does seem to be a
> variable.
It is.
> It can be described using C-h v and set using M-x
> set-variable. However, if I replace (set-fill-column 76) with (setq
> fill-column 76) the variable value is never changed (and no byte
> compiler warning btw).
I presume, your observation is false. In fact, `set-fill-column' does
nothing except reading its argument and then doing (setq fill-column
arg) itself.
Bye,
Tassilo