From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Re: byte compiling defcustom Date: Sat, 17 Nov 2007 14:05:47 -0600 (CST) Message-ID: <200711172005.lAHK5lxY024912@jane.dms.auburn.edu> References: <200711171647.lAHGlHqH024027@jane.dms.auburn.edu> NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1195331910 20566 80.91.229.12 (17 Nov 2007 20:38:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 17 Nov 2007 20:38:30 +0000 (UTC) Cc: monnier@iro.umontreal.ca, rms@gnu.org, emacs-devel@gnu.org To: dann@ics.uci.edu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Nov 17 21:38:35 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1ItUR0-0007r6-F8 for ged-emacs-devel@m.gmane.org; Sat, 17 Nov 2007 21:38:35 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ItUQm-00011r-Ge for ged-emacs-devel@m.gmane.org; Sat, 17 Nov 2007 15:38:20 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ItUQk-00011k-0C for emacs-devel@gnu.org; Sat, 17 Nov 2007 15:38:18 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ItUQf-000114-Iv for emacs-devel@gnu.org; Sat, 17 Nov 2007 15:38:17 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ItUQf-000111-GI for emacs-devel@gnu.org; Sat, 17 Nov 2007 15:38:13 -0500 Original-Received: from manatee.dms.auburn.edu ([131.204.53.104]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA1:24) (Exim 4.60) (envelope-from ) id 1ItTx3-0000Iu-1Q; Sat, 17 Nov 2007 15:07:37 -0500 Original-Received: from jane.dms.auburn.edu (jane.dms.auburn.edu [131.204.53.201]) by manatee.dms.auburn.edu (8.13.7+Sun/8.13.7) with ESMTP id lAHK7ZMk015499; Sat, 17 Nov 2007 14:07:35 -0600 (CST) Original-Received: from jane.dms.auburn.edu (localhost [127.0.0.1]) by jane.dms.auburn.edu (8.13.4+Sun/8.13.4) with ESMTP id lAHK5lFm024915; Sat, 17 Nov 2007 14:05:47 -0600 (CST) Original-Received: (from teirllm@localhost) by jane.dms.auburn.edu (8.13.4+Sun/8.13.3/Submit) id lAHK5lxY024912; Sat, 17 Nov 2007 14:05:47 -0600 (CST) X-Authentication-Warning: jane.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f In-reply-to: (message from Dan Nicolaescu on Sat, 17 Nov 2007 11:06:00 -0800) X-detected-kernel: by monty-python.gnu.org: Solaris 10 (beta) 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 Xref: news.gmane.org gmane.emacs.devel:83472 Archived-At: I wouldn't want to speculate, how can one check for that? I don't know how to use "Show Saved Lisp Expression", and it seems that the "Custom" menu in a customize buffer does not work Maybe much better example than the one I gave before (I am not really that familiar with byte optimization): (defcustom stupid (if t (+ 1 1)) "Silly doc") With this example the shown value should be 2, but "Show Saved Lisp Expression" should show the value as: (if t (+ 1 1)) Sincerely, Luc Teirlinck.