Changeset 64d729 in git for Singular/febase.inc


Ignore:
Timestamp:
Apr 15, 1999, 7:28:06 PM (25 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
dd9b83cb6123e79d811d45dd8b7d79c748f994e6
Parents:
1518b9cf23aa2598228863099857cedec82668c2
Message:
* hannes: introduced debugger (hook and first implementation)


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

Legend:

Unmodified
Added
Removed
  • Singular/febase.inc

    r1518b9 r64d729  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: febase.inc,v 1.20 1999-03-16 15:33:06 Singular Exp $ */
     4/* $Id: febase.inc,v 1.21 1999-04-15 17:28:02 Singular Exp $ */
    55/*
    66* ABSTRACT: handling of 'voices'
    77*/
    88#include <ctype.h>
     9#include "sdb.h"
     10
     11extern int blocknest; /* scaner.l internal */
    912
    1013int    yy_noeof=0;     // the scanner "state"
     
    154157    case BT_if:
    155158    case BT_else:
    156                      yylineno = yy_blocklineno;
    157                      break;
    158159    case BT_break:
    159160                     yylineno = yy_blocklineno-1;
     
    401402      else
    402403        Print("%s %3d%c ",currentVoice->filename,yylineno,prompt_char);
    403     }
     404     }
    404405    #ifdef HAVE_TCL
    405406    if(tclmode)
     
    426427    Print("{%d}",yylineno);
    427428    mflush();
     429  }
     430  if ((blocknest==0)
     431  && (currentVoice->pi!=NULL)
     432  && (currentVoice->pi->trace_flag&TRACE_BREAKPOINT))
     433  {
     434    sdb(currentVoice, anf, len_s);
    428435  }
    429436  prompt_char = '.';
Note: See TracChangeset for help on using the changeset viewer.