Changeset c656484 in git for Singular/scanner.l


Ignore:
Timestamp:
Apr 7, 1998, 10:30:32 AM (26 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
cd2f5e2948555e751112c93ee435bc8faeb7025f
Parents:
f5581d242f4bb41b28e320ce50de190b7dffe936
Message:
* hannes: fixed scanner bug: ignoring { and } in <block> (scanner.l)


git-svn-id: file:///usr/local/Singular/svn/trunk@1344 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/scanner.l

    rf5581d rc656484  
    33*  Computer Algebra System SINGULAR     *
    44****************************************/
    5 /* $Id: scanner.l,v 1.11 1998-04-01 19:00:49 Singular Exp $ */
     5/* $Id: scanner.l,v 1.12 1998-04-07 08:30:32 Singular Exp $ */
    66#include <stdio.h>
    77#include <string.h>
     
    188188                         }
    189189<block>[^\{\}\"]*        { yymore(); }
     190<block>\/\/[^\n]*        { yymore(); }
    190191<block>"{"               { blocknest++; yymore(); }
    191192<block>"}"               {
Note: See TracChangeset for help on using the changeset viewer.