octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #41978] hgload not finding correct *.ofig file


From: Massimiliano Fasi
Subject: [Octave-bug-tracker] [bug #41978] hgload not finding correct *.ofig file
Date: Fri, 28 Mar 2014 12:32:11 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:28.0) Gecko/20100101 Firefox/28.0

Follow-up Comment #4, bug #41978 (project octave):

Hi,

first of all, I noticed that I was using the version I submitted, that turned
out to be slightly different from the one that was committed. Indeed, I
checked the file existence using a not-so-Octave way


  ## Check file extension and existence
  [dir, name, ext, ver] = fileparts (filename);
  if (strcmp (ext, ""))
    warning ("hgload: no extension given, trying with .ofig");
    filename = strcat(filename, ".ofig");
  elseif (!strcmp(ext, ".ofig"))
    warning ("hgload: file extension should be .ofig");
  endif


that did not suffer from this bug. I think that the new version is better, but
I am a little bit suspicious about the fact that the existence of the file is
checked twice in two nested if. I think that these two solutions can be merged
and I'm trying to do it, I will update this thread soon (I hope).

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?41978>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]