From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Re: customize-rouge output with emacs -q --no-site-file Date: Fri, 4 Feb 2005 19:56:58 -0600 (CST) Message-ID: <200502050156.j151uw114160@raven.dms.auburn.edu> References: <00cb01c50ad3$5f978570$0200a8c0@sedrcw11488> <010101c50aed$d57b4640$0200a8c0@sedrcw11488> <004501c50b07$6690f620$0200a8c0@sedrcw11488> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1107569462 3162 80.91.229.2 (5 Feb 2005 02:11:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 5 Feb 2005 02:11:02 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Feb 05 03:11:01 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1CxFPW-0004SJ-4A for ged-emacs-devel@m.gmane.org; Sat, 05 Feb 2005 03:10:58 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CxFd9-0006oa-7a for ged-emacs-devel@m.gmane.org; Fri, 04 Feb 2005 21:25:03 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1CxFbY-00062b-Hp for emacs-devel@gnu.org; Fri, 04 Feb 2005 21:23:27 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1CxFbO-0005yG-Va for emacs-devel@gnu.org; Fri, 04 Feb 2005 21:23:16 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CxFbO-0005vB-BR for emacs-devel@gnu.org; Fri, 04 Feb 2005 21:23:14 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CxFDH-0008UT-JB for emacs-devel@gnu.org; Fri, 04 Feb 2005 20:58:19 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.10/8.12.10) with ESMTP id j151wI9N007219; Fri, 4 Feb 2005 19:58:19 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id j151uw114160; Fri, 4 Feb 2005 19:56:58 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: lennart.borgman.073@student.lu.se In-reply-to: <004501c50b07$6690f620$0200a8c0@sedrcw11488> (lennart.borgman.073@student.lu.se) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: main.gmane.org gmane.emacs.devel:32894 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:32894 Lennart Borgman wrote: (defun startup-set-standard-value (symbol) "Set the current value of SYMBOL as the standard value for Customize." (when (boundp symbol) (put symbol 'standard-value (list symbol)))) (startup-set-standard-value 'baud-rate) Does that code not mean that the saved-value of baud-rate is always going to be '(baud-rate), I mean the list containing the _symbol_ baud-rate, _not_ the value of baud-rate which you tried to record? That is the bug I encountered when copying that code into a mapatoms (and which I warned about earlier.) Sincerely, Luc.