From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8336 invoked by alias); 21 Feb 2002 21:59:46 -0000 Mailing-List: contact sourcenav-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: sourcenav-owner@sources.redhat.com Received: (qmail 8245 invoked from network); 21 Feb 2002 21:59:45 -0000 Received: from unknown (HELO shell4.bayarea.net) (209.128.82.1) by sources.redhat.com with SMTP; 21 Feb 2002 21:59:45 -0000 Received: from modrick (209-128-79-218.BAYAREA.NET [209.128.79.218]) by shell4.bayarea.net (8.9.3/8.9.3) with SMTP id NAA27301 for ; Thu, 21 Feb 2002 13:59:44 -0800 (envelope-from supermo@bayarea.net) Date: Thu, 21 Feb 2002 14:01:00 -0000 From: Mo DeJong To: sourcenav Subject: Patch to fix encoding error. Message-Id: <20020221135845.6401b50b.supermo@bayarea.net> Organization: House of Mirth X-Mailer: Sylpheed version 0.4.99cvs6 (GTK+ 1.2.7; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SW-Source: 2002-q1/txt/msg00097.txt.bz2 Here is a really simple patch that fixes the preferences dialog. You can reproduce the error in the CVS version by opening up the project prefs and clicking on the project tab. Since this is a small change I assume it will be covered by the "Small changes can be accepted without a copyright assignment form on file" text from the contrib webpage. cheers Mo 2002-02-21 Mo DeJong * gui/preferences.tcl (AddProject): Change [info encodings] call to [encoding names]. The info subcommand was a local Tcl modification that did not survive the 8.3 upgrade process. Index: gui/preferences.tcl =================================================================== RCS file: /cvs/sourcenav/src/snavigator/gui/preferences.tcl,v retrieving revision 1.1.1.1 diff -u -0 -r1.1.1.1 preferences.tcl --- preferences.tcl 2001/09/25 22:51:10 1.1.1.1 +++ preferences.tcl 2002/02/21 21:56:05 @@ -354 +354 @@ - -contents [info encodings] -entryvariable sn_options(opt_def,encoding) + -contents [encoding names] -entryvariable sn_options(opt_def,encoding)