[BACK]Return to ctrl.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / builtin

Diff for /OpenXM_contrib2/asir2000/builtin/ctrl.c between version 1.23 and 1.24

version 1.23, 2003/10/19 02:54:41 version 1.24, 2003/10/20 09:17:52
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/builtin/ctrl.c,v 1.22 2003/06/07 16:40:24 saito Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/ctrl.c,v 1.23 2003/10/19 02:54:41 ohara Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 58  struct ftab ctrl_tab[] = {
Line 58  struct ftab ctrl_tab[] = {
 };  };
   
 extern int prtime,nez,echoback,bigfloat;  extern int prtime,nez,echoback,bigfloat;
 extern int GC_free_space_numerator,GC_free_space_divisor,debug_up,no_prompt;  extern int GC_free_space_numerator,GC_free_space_divisor,debug_up;
 extern int GC_max_heap_size,Verbose,hideargs,hex_output,do_server_in_X11;  extern int GC_max_heap_size,Verbose,hideargs,hex_output,do_server_in_X11;
 extern int do_message;  extern int do_message;
 extern int ox_batch,ox_check,ox_exchange_mathcap;  extern int ox_batch,ox_check,ox_exchange_mathcap;
Line 74  extern int double_output;
Line 74  extern int double_output;
 extern int use_new_hensel;  extern int use_new_hensel;
 extern int print_quote;  extern int print_quote;
 extern int show_crossref;  extern int show_crossref;
   extern Obj user_defined_prompt;
   
 static struct {  static struct {
         char *key;          char *key;
Line 92  static struct {
Line 93  static struct {
         {"debug_window",&do_server_in_X11},          {"debug_window",&do_server_in_X11},
         {"message",&do_message},          {"message",&do_message},
         {"debug_up",&debug_up},          {"debug_up",&debug_up},
         {"no_prompt",&no_prompt},          {"no_prompt",&do_quiet},
         {"ox_batch",&ox_batch},          {"ox_batch",&ox_batch},
         {"ox_check",&ox_check},          {"ox_check",&ox_check},
         {"ox_exchange_mathcap",&ox_exchange_mathcap},          {"ox_exchange_mathcap",&ox_exchange_mathcap},
Line 115  void Pctrl(arg,rp)
Line 116  void Pctrl(arg,rp)
 NODE arg;  NODE arg;
 Q *rp;  Q *rp;
 {  {
         int t,i;          int t,i,n;
         N num,den;          N num,den;
         Q c;          Q c;
         char *key;          char *key;
         char buf[BUFSIZ];          char buf[BUFSIZ];
           char *str;
   
         if ( !arg ) {          if ( !arg ) {
                 *rp = 0;                  *rp = 0;
Line 141  Q *rp;
Line 143  Q *rp;
                         GC_free_space_numerator = BD(den)[0];                          GC_free_space_numerator = BD(den)[0];
                 }                  }
                 NDTOQ(num,den,1,*rp);                  NDTOQ(num,den,1,*rp);
                   return;
           } else if ( !strcmp(key,"prompt") ) {
                   /* special treatment is necessary for "prompt" */
                   if ( argc(arg) == 1 ) {
                           *rp = (Q)user_defined_prompt;
                   } else {
                           c = (Q)ARG1(arg);
                           if ( !c || OID(c) == O_STR ) {
                                   if ( OID(c) == O_STR ) {
                                           str = BDY((STRING)c);
                                           for ( i = 0, n = 0; str[i]; i++ )
                                                   if ( str[i] == '%' )
                                                           n++;
                                           if ( n >= 2 )
                                                   error("ctrl : prompt : invalid prompt specification");
                                   }
                                   do_quiet = 1;
                                   user_defined_prompt = (Obj)c;
                                   *rp = c;
                           } else if ( NUM(c) && RATN(c) && UNIQ(c) ) {
                                   user_defined_prompt = 0;
                                   do_quiet = 0;
                           } else {
                                   error("ctrl : prompt : invalid argument");
                           }
                   }
                 return;                  return;
         }          }
         for ( i = 0; ctrls[i].key; i++ )          for ( i = 0; ctrls[i].key; i++ )

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>