ecl/src/clos/cmpinit.lsp
Matthew Mondor 8f07cd58d8 The ECL code no longer uses tabulator characters, they were replaced
by spaces.

A custom script was used to insert/replace Emacs and ViM per-file editor
settings according to their type and the new ECL coding style.
2015-09-03 07:35:47 -04:00

12 lines
485 B
Common Lisp

;;;; -*- Mode: Lisp; Syntax: Common-Lisp; indent-tabs-mode: nil; Package: CLOS -*-
;;;; vim: set filetype=lisp tabstop=8 shiftwidth=2 expandtab:
;;;;
(defvar std-compile (symbol-function 'compile-file))
(defun compile-file (file &key (output-file (make-pathname :type "o" :defaults file)))
(funcall std-compile
file
:c-file t :h-file t :data-file t :system-p t
:output-file nil))
;(setq compiler:*cc* (concatenate 'STRING compiler:*cc* " -I../h"))