mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-20 19:42:30 -08:00
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.
11 lines
363 B
Common Lisp
11 lines
363 B
Common Lisp
;;;; -*- Mode: Lisp; Syntax: Common-Lisp; indent-tabs-mode: nil; Package: SYSTEM -*-
|
|
;;;; vim: set filetype=lisp tabstop=8 shiftwidth=2 expandtab:
|
|
|
|
;;;;
|
|
|
|
(in-package "SYSTEM")
|
|
|
|
;;; Disable PDE facilities within LISP kernel:
|
|
(setq *features* (delete ':pde *features*))
|
|
;;; Disable record-source-pathname within LISP kernel:
|
|
(defmacro record-source-pathname (x y))
|