From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Martin Fischer Newsgroups: gmane.emacs.help Subject: Re: Customization of language ADA Date: Tue, 31 Dec 2002 02:00:05 +0100 Organization: none Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1041297212 30233 80.91.224.249 (31 Dec 2002 01:13:32 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 31 Dec 2002 01:13:32 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18TAyH-0007rN-00 for ; Tue, 31 Dec 2002 02:13:29 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18TAvU-00058y-05 for gnu-help-gnu-emacs@m.gmane.org; Mon, 30 Dec 2002 20:10:36 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!fu-berlin.de!uni-berlin.de!dialin-145-254-192-220.arcor-ip.NET!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 33 Original-NNTP-Posting-Host: dialin-145-254-192-220.arcor-ip.net (145.254.192.220) Original-X-Trace: fu-berlin.de 1041296911 9715559 145.254.192.220 (16 [83374]) X-Shakespeare: "Conscience does make cowards of us all, And thus the native hue of resolution Is sicklied o'er with the pale cast of thought." -- Hamlet, III.1 Cancel-Lock: sha1:xy9I8kFpVeKWXAeYP2n3Fh2azZM= User-Agent: Emacs Gnus Original-Xref: shelby.stanford.edu gnu.emacs.help:108609 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:5138 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:5138 hi, if you saved the customization of some variable (ada-prj-default-debugger ?), your .emacs should contain lines similar to the folowing: (custom-set-variables ;; custom-set-variables was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. .... '(ada-prj-default-debugger "${cross_prefix}ddd") .... ) if you have more than just one call to custom-set-variables somewhere in the lisp code, which is executed starting emacs and ada-mode, the last one is valid. martin "J" == JOL <181873@cienz.unizar.es> writes: J> Date: Sat, 28 Dec 2002 18:36:32 +0100 J> Organization: Universidad de Zaragoza J> Newsgroups: gnu.emacs.help J> J> how to avoid that an option is modified from outside menus of J> customization? I modify an option, I record it for future uses J> but always appears another one when initiating emacs... J> In concrete one is the option to debugger in the language ADA. J> Always appears "ddd..." but I have saved "gvd....." J> DESPERADO J> Thanks...