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

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

[Octave-bug-tracker] [bug #47837] Segmentation fault with missing warnin


From: Guillaume
Subject: [Octave-bug-tracker] [bug #47837] Segmentation fault with missing warning state "all"
Date: Tue, 03 May 2016 17:54:20 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0

Follow-up Comment #7, bug #47837 (project octave):

To my surprise:


>> warning ('off', 'not-existing')
Error using warning
Unknown setting or incorrect message identifier 'not-existing'.
 
>> warning ('query', 'not-existing')
Error using warning
Unknown setting or incorrect message identifier 'not-existing'.


but, actually, the error is due to the identifier itself: according to
Matlab's doc, it can only contain alphanumerics (A–Z, a–z, 0–9) and
underscores, starting with a letter. It then works as I would expect:


>> warning ('off', 'Octave:not_existing') 
>> warning ('query', 'Octave:not_existing')
The state of warning 'Octave:not_existing' is 'off'.


So you can ignore my comment #5.

    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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