From: Sam Steingold <sds@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: custom: how do I augment an option?
Date: Wed, 05 Sep 2012 15:18:03 -0400 [thread overview]
Message-ID: <87ehmgcm8k.fsf@gnu.org> (raw)
In-Reply-To: 87zk5473qz.fsf@gnu.org
> * Sam Steingold <fqf@tah.bet> [2012-09-05 13:56:20 -0400]:
>
> (custom-set-variables
> '(message-syntax-checks (adjoin '(long-lines . disabled)
> message-syntax-checks
> :key 'equal)))
> will evaluate `message-syntax-checks' too early:
The "solution" is
--8<---------------cut here---------------start------------->8---
(custom-set-variables
'(message-syntax-checks
(adjoin '(long-lines . disabled)
(eval (car (get 'message-syntax-checks 'standard-value)))
:test 'equal)))
--8<---------------cut here---------------end--------------->8---
which uses `eval' on top of `adjoin'.
So, what is the official method?
--
Sam Steingold (http://sds.podval.org/) on Ubuntu 12.04 (precise) X 11.0.11103000
http://www.childpsy.net/ http://dhimmi.com http://jihadwatch.org
http://honestreporting.com http://iris.org.il http://thereligionofpeace.com
Save your burned out bulbs for me, I'm building my own dark room.
next prev parent reply other threads:[~2012-09-05 19:18 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-05 17:56 custom: how do I augment an option? Sam Steingold
2012-09-05 18:27 ` Jambunathan K
2012-09-05 19:18 ` Sam Steingold [this message]
2012-09-05 20:04 ` Drew Adams
2012-09-05 20:45 ` Sam Steingold
2012-09-05 21:15 ` Drew Adams
2012-09-05 21:27 ` Drew Adams
[not found] ` <mailman.8164.1346872698.855.help-gnu-emacs@gnu.org>
2012-09-06 13:14 ` Stefan Monnier
2012-09-06 13:37 ` Drew Adams
2012-09-06 18:20 ` Sam Steingold
2012-10-26 18:21 ` Stefan Monnier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87ehmgcm8k.fsf@gnu.org \
--to=sds@gnu.org \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.