From maintainers-request at octave dot org Thu Feb 10 04:34:35 2005 Subject: Re: strace of exist function for a variable From: David Bateman To: maintainers at octave dot org Cc: Mohamed kamoun Date: Thu, 10 Feb 2005 11:36:43 +0100 This is a multi-part message in MIME format. --------------060905050709020600030700 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Forget the last patch, it was wrong.. The correct one is attached. Same changelog D. -- David Bateman David dot Bateman at motorola dot com Motorola Labs - Paris +33 1 69 35 48 04 (Ph) Parc Les Algorithmes, Commune de St Aubin +33 1 69 35 77 01 (Fax) 91193 Gif-Sur-Yvette FRANCE The information contained in this communication has been classified as: [x] General Business Information [ ] Motorola Internal Use Only [ ] Motorola Confidential Proprietary --------------060905050709020600030700 Content-Type: text/plain; name="patch-exist_20050210-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-exist_20050210-1" *** src/variables.cc~ 2004-12-28 02:59:05.000000000 +0100 --- src/variables.cc 2005-02-10 11:28:14.524458880 +0100 *************** *** 823,829 **** } } ! if (! retval) { string_vector names (2); --- 823,829 ---- } } ! if (type != "var" && type != "builtin" && ! retval) { string_vector names (2); *************** *** 846,852 **** } } ! if (! retval) { std::string file_name = file_in_path (name, ""); --- 846,852 ---- } } ! if (type != "var" && type != "builtin" && ! retval) { std::string file_name = file_in_path (name, ""); --------------060905050709020600030700--