Changeset ebcfd1f in git


Ignore:
Timestamp:
Dec 3, 1999, 12:10:19 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
caa8e6acf436c3f1afc45aa776a9230ee6926ea0
Parents:
9f3e9bef10a5b0f7fd4ed74bc83407329b62b4a6
Message:
* added action restart on C-c C-c


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

Legend:

Unmodified
Added
Removed
  • emacs/singular.el

    r9f3e9b rebcfd1f  
    11;;; singular.el --- Emacs support for Computer Algebra System Singular
    22
    3 ;; $Id: singular.el,v 1.49 1999-12-03 08:08:50 wichmann Exp $
     3;; $Id: singular.el,v 1.50 1999-12-03 11:10:19 obachman Exp $
    44
    55;;; Commentary:
     
    38803880     (while (not answer)
    38813881       (setq answer (read-from-minibuffer
    3882                    "(a)bort current command, (q)uit Singular or (c)ontinue? "))
     3882                   "(a)bort current command, (q)uit, (r)estart Singular or (c)ontinue? "))
    38833883       (setq answer
    38843884             (cond ((equal answer "a") 'abort)
    38853885                   ((equal answer "c") 'continue)
     3886                   ((equal answer "r") 'restart)
    38863887                   ((equal answer "q") 'quit)
    38873888                   ((equal answer "") 'continue) ; default: continue
     
    38903891   (cond
    38913892    ((eq mode 'quit) (singular-kill-singular))
     3893    ((eq mode 'restart) (singular-restart))
    38923894    ((eq mode 'abort) (interrupt-process (singular-process)))))
    38933895
Note: See TracChangeset for help on using the changeset viewer.