Changeset 7cdd73b in git


Ignore:
Timestamp:
May 19, 2000, 1:13:32 PM (24 years ago)
Author:
Tim Wichmann <wichmann@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
2fa4863e3dfc84f9599610cd5b782861db4d66cf
Parents:
cdd77863cfc99927aafd79a76fd6cc64982d1ff8
Message:
	* singular.el (singular-exec): Remove empty strings from SWITCHES


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

Legend:

Unmodified
Added
Removed
  • emacs/singular.el

    rcdd778 r7cdd73b  
    11;;; singular.el --- Emacs support for Computer Algebra System Singular
    22
    3 ;; $Id: singular.el,v 1.59 2000-05-17 13:07:26 obachman Exp $
     3;; $Id: singular.el,v 1.60 2000-05-19 11:13:32 wichmann Exp $
    44
    55;;; Commentary:
     
    39363936
    39373937Deletes any old processes running in that buffer.
     3938Removes any empty string in SWITCHES befor passing to Singular.
    39383939Moves point to the end of BUFFER.
    39393940Initializes all important markers and the simple sections.
     
    39503951
    39513952          ;; create new process
    3952           (singular-debug 'interactive (message "Starting new Singular: %s %s" executable switches))
    3953           (let ((process (comint-exec-1 name buffer executable switches)))
    3954 
     3953          (singular-debug 'interactive
     3954                          (message "Starting new Singular: %s %s"
     3955                                   executable switches))
     3956          ;; before passing SWITCHES to Singuar we remove any empty strings
     3957          ;; because otherwise Singular tries to open a file with an empty
     3958          ;; file name.
     3959          (let ((process (comint-exec-1 name buffer
     3960                                        executable (delete "" switches))))
    39553961            ;; set process filter and sentinel
    39563962            (set-process-filter process 'singular-output-filter)
Note: See TracChangeset for help on using the changeset viewer.