Changeset ad4bc9 in git for Singular/grammar.y


Ignore:
Timestamp:
May 6, 1999, 6:53:35 PM (25 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
c59d88ee06883f262adb708e6846ac13d54018e3
Parents:
8d4732632f41e8c44b6ae3e871af2513fba44823
Message:
* hannes: Debugger-changes, typo fixes


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

Legend:

Unmodified
Added
Removed
  • Singular/grammar.y

    r8d4732 rad4bc9  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: grammar.y,v 1.59 1999-04-16 07:53:32 obachman Exp $ */
     4/* $Id: grammar.y,v 1.60 1999-05-06 16:53:23 Singular Exp $ */
    55/*
    66* ABSTRACT: SINGULAR shell grammatik
     
    3939#include "ipshell.h"
    4040#include "ipconv.h"
     41#include "sdb.h"
    4142#include "ideals.h"
    4243#include "numbers.h"
     
    121122  if ((currentVoice!=NULL)
    122123  && (currentVoice->prev!=NULL)
    123   && (myynest>0))
     124  && (myynest>0)
     125  && ((sdb_flags &1)==0))
    124126  {
    125127    Werror("leaving %s",VoiceName());
     
    323325            #endif
    324326            prompt_char = '>';
     327            if (sdb_flags & 2) { sdb_flags=0; YYERROR; }
    325328            if(siCntrlc)
    326329            {
     
    377380            yyerror("");
    378381            yyerrok;
     382            if ((sdb_flags & 1) && currentVoice->pi!=NULL)
     383            {
     384              currentVoice->pi->trace_flag |=1;
     385            }
     386            else
    379387            if (myynest>0)
    380388            {
     
    391399              exitVoice();
    392400            }
     401            if (sdb_flags &2) sdb_flags=1;
    393402          }
    394403        ;
Note: See TracChangeset for help on using the changeset viewer.