Changeset 6e0c129 in git


Ignore:
Timestamp:
Aug 25, 1999, 10:34:39 PM (25 years ago)
Author:
Tim Wichmann <wichmann@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
877dd1e9964903bb7264044c4c32d043fc5d0b20
Parents:
ba268720cf39a2b4c332fd5d4b4546ed4f01cc8e
Message:
*wichmann:
 + emacs option "-q" changed to "-no-init-file" (see comment)
 + use (list) instead of (quote) for singular-other
 + Use "singular" instead of "Singular" as buffer name


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

Legend:

Unmodified
Added
Removed
  • Singular/emacs.cc

    rba2687 r6e0c129  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: emacs.cc,v 1.2 1999-08-25 15:55:32 obachman Exp $ */
     4/* $Id: emacs.cc,v 1.3 1999-08-25 20:34:39 wichmann Exp $ */
    55/*
    66* ABSTRACT: Esingular main file
     
    203203  getcwd(cwd, MAXPATHLEN);
    204204
    205   sprintf(syscall, "%s %seval '(setq singular-emacs-home-directory \"%s\")' %sq %sl %s %seval '(singular-other \"%s\" \"%s\" (quote ",
     205  // Note: option -no-init-file should be equivalent to -q. Anyhow,
     206  // xemacs-20.4 sometimes crashed on startup when using -q. DonŽt know why.
     207  sprintf(syscall, "%s %seval '(setq singular-emacs-home-directory \"%s\")' %sno-init-file %sl %s %seval '(singular-other \"%s\" \"%s\" (list ",
    206208          emacs, prefix, emacs_dir, prefix, prefix, emacs_load, prefix,
    207209          singular, cwd);
     
    220222    }
    221223  }
    222   strcat(syscall, "\"-t\" \"-emacs\") \"Singular\")'");
     224  strcat(syscall, ") \"singular\")'");
    223225 
    224226  if (no_emacs_call)
Note: See TracChangeset for help on using the changeset viewer.