From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jambunathan K Newsgroups: gmane.emacs.help Subject: Re: custom: how do I augment an option? Date: Wed, 05 Sep 2012 23:57:48 +0530 Message-ID: <87harc8guz.fsf@gmail.com> References: <87zk5473qz.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1346869628 13562 80.91.229.3 (5 Sep 2012 18:27:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 5 Sep 2012 18:27:08 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: sds@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Sep 05 20:27:10 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1T9KJi-00083f-Fi for geh-help-gnu-emacs@m.gmane.org; Wed, 05 Sep 2012 20:27:10 +0200 Original-Received: from localhost ([::1]:54103 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T9KJf-0001Mj-IE for geh-help-gnu-emacs@m.gmane.org; Wed, 05 Sep 2012 14:27:07 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:42560) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T9KJb-0001Me-AG for help-gnu-emacs@gnu.org; Wed, 05 Sep 2012 14:27:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T9KJa-0000mC-C2 for help-gnu-emacs@gnu.org; Wed, 05 Sep 2012 14:27:03 -0400 Original-Received: from mail-pb0-f41.google.com ([209.85.160.41]:49245) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T9KJa-0000m5-5l; Wed, 05 Sep 2012 14:27:02 -0400 Original-Received: by pbbro12 with SMTP id ro12so1518646pbb.0 for ; Wed, 05 Sep 2012 11:27:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=KVFi0UwTsxoclmeU7sOeYCxbD7OAkKmyf9KKH06Ozrs=; b=0o9RdOtx/T1BJycxXhs4VvHcek/OnUEuhrKJYGEF1+K6j2QwNflYgfI1c6ywwIPKAq /3WG+XHBlWNG/JpPAGazAiLUZQanphlwI4tbp42aetFG8dO2eluStktLaCfuj5T23Snc pwQKYukQZEy4WpvLVPa4RrUuXKHaCqMh7CT+0qRRRCPvype3EtAufLcGywObnMUrWoNd Sc3XLcIe+SfZKEm7uaZzpE0AqH44/IbqgKF/mXB20223SCNQh/jVjjs216JfDwlCARlo tZQm5JVQ6olEpp/LbOJC53Fr782du8jp+hkIdZZPxGhQHKMwwAnJoAr6mpOEV4QJnNV7 EfGA== Original-Received: by 10.68.237.34 with SMTP id uz2mr56022248pbc.71.1346869621074; Wed, 05 Sep 2012 11:27:01 -0700 (PDT) Original-Received: from debian-6.05 ([101.62.116.24]) by mx.google.com with ESMTPS id st6sm1911249pbc.58.2012.09.05.11.26.56 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 05 Sep 2012 11:26:59 -0700 (PDT) In-Reply-To: <87zk5473qz.fsf@gnu.org> (Sam Steingold's message of "Wed, 05 Sep 2012 13:56:20 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.41 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:86661 Archived-At: Sam Steingold writes: > (custom-set-variables > '(message-syntax-checks (adjoin '(long-lines . disabled) > message-syntax-checks > :key 'equal))) > > will evaluate `message-syntax-checks' too early: I think the solution will involve using (get 'message-syntax-checks 'saved-value) See (info "(elisp) Applying Customizations"). --