Mercurial > hg > xemacs-beta
view lisp/ilisp/ilisp-kcl.el @ 58:8b0bdfdf0cf0 r19-16-pre4
Import from CVS: tag r19-16-pre4
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:58:37 +0200 |
parents | b82b59fe008d |
children |
line wrap: on
line source
;;; -*- Mode: Emacs-Lisp -*- ;;; ilisp-kcl.el -- ;;; This file is part of ILISP. ;;; Version: 5.8 ;;; ;;; Copyright (C) 1990, 1991, 1992, 1993 Chris McConnell ;;; 1993, 1994 Ivan Vasquez ;;; 1994, 1995, 1996 Marco Antoniotti and Rick Busdiecker ;;; 1996 Marco Antoniotti and Rick Campbell ;;; ;;; Other authors' names for which this Copyright notice also holds ;;; may appear later in this file. ;;; ;;; Send mail to 'ilisp-request@naggum.no' to be included in the ;;; ILISP mailing list. 'ilisp@naggum.no' is the general ILISP ;;; mailing list were bugs and improvements are discussed. ;;; ;;; ILISP is freely redistributable under the terms found in the file ;;; COPYING. ;;; ;;; ILISP Kyoto Common Lisp dialect definition ;;; ;;;%%%KCL--these dialects by Tom Emerson ;;; kcl-check-prompt doesn't after the first break because the ;;; number of ">" characters doesn't increase. (defun kcl-check-prompt (old new) "Compare the break level printed at the beginning of the prompt." (let* ((was-in-break (and old (string-match ">+" old))) (old-level (if was-in-break (- (match-end 0) (match-beginning 0)) 0)) (is-in-break (string-match ">+" new)) (new-level (if is-in-break (- (match-end 0) (match-beginning 0)) 0))) (<= new-level old-level))) ;;; (defdialect kcl "Kyoto Common LISP" clisp (setq comint-prompt-regexp "^>+" ilisp-error-regexp "Error: [^\n]*" ilisp-binary-extension "o" ilisp-init-binary-extension "o" ilisp-binary-command "\"o\"" comint-fix-error ":q" comint-continue ":r" comint-prompt-status (function (lambda (old line) (comint-prompt-status old line 'kcl-check-prompt))))) (if (not kcl-program) (setq kcl-program "kcl")) ;;;%%%AKCL (defdialect akcl "Austin Kyoto Common LISP" kcl) (if (not akcl-program) (setq akcl-program "akcl")) ;;;%%%IBCL (defdialect ibcl "Ibuki Common LISP" kcl (setq comint-prompt-regexp "^[-A-Z]*>+\\|^[-A-Z]* ->" comint-interrupt-regexp ">>Condition: Terminal Interrupt" comint-continue ":q" ilisp-reset ":q!" ilisp-error-regexp ">>Error:[^\n]*")) (if (not ibcl-program) (setq ibcl-program "ibcl")) ;;; GCL and ECL (at least) have slightly different compilers and ;;; runtimes, hence we need to provide different extensions for their ;;; init files. ;;; Marco Antoniotti <marcoxa@icsi.berkeley.edu> 19951028. ;;; GCL -- I assume it is exactly as AKCL. ;;; Should check whether it is similar to IBUKI. (defdialect gcl "GNU Common LISP" akcl (setq comint-prompt-regexp "^>+" ilisp-binary-extension "o" ilisp-init-binary-extension "gcl.o" ilisp-binary-command "\"o\"" ilisp-init-binary-command "\"gcl.o\"" )) (if (not gcl-program) (setq gcl-program "gcl")) ;;; ECL -- Beppe Attardi's developments over AKCL (defdialect ecl "EcoLisp Common LISP" akcl (setq comint-prompt-regexp "^>+" ilisp-binary-extension "o" ilisp-init-binary-extension "ecl.o" ilisp-binary-command "\"o\"" ilisp-init-binary-command "\"ecl.o\"" )) (if (not ecl-program) (setq ecl-program "ecl")) ;;; end of file -- ilisp-kcl.el --