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

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

[Octave-bug-tracker] [bug #32598] Wishlist : More C-like multi-line bloc


From: Rik
Subject: [Octave-bug-tracker] [bug #32598] Wishlist : More C-like multi-line block comments
Date: Fri, 25 Feb 2011 19:43:09 +0000
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101206 Ubuntu/9.10 (karmic) Firefox/3.6.13

URL:
  <http://savannah.gnu.org/bugs/?32598>

                 Summary: Wishlist : More C-like multi-line block comments
                 Project: GNU Octave
            Submitted by: rik5
            Submitted on: Fri 25 Feb 2011 11:43:08 AM PST
                Category: Interpreter
                Severity: 1 - Wish
                Priority: 5 - Normal
              Item Group: Feature Request
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: GNU/Linux

    _______________________________________________________

Details:

Octave already supports multi-line block comments using #{/#} pairs.  The
current parser expects the keywords to be alone on a single line.  It would be
nice if this behavior could be extended to be closer to C-stytle /* */
commenting which can appear anywhere in the line.  If this is at all tricky to
implement then it is not worth it and this issue can be closed.

Currently parser example:

#{
  cos (1);
  sin (1);
#}
  tan (1);


Desired parser example:

#{ cos (1);
  sin (1); #}
  tan (1);






    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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