From bf94b3f00b45794aa4ca70b665efde7ca205d8c8 Mon Sep 17 00:00:00 2001 From: jao Date: Sun, 13 Mar 2022 00:27:29 +0000 Subject: skels: all files jao-prefixed --- lib/skels/asdf-skel.el | 52 -------------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 lib/skels/asdf-skel.el (limited to 'lib/skels/asdf-skel.el') diff --git a/lib/skels/asdf-skel.el b/lib/skels/asdf-skel.el deleted file mode 100644 index 939eb8d..0000000 --- a/lib/skels/asdf-skel.el +++ /dev/null @@ -1,52 +0,0 @@ -;;; asdf-skel.el --- Skels for ASDF system definition files - -;; Copyright (C) 2007 Jose Antonio Ortega Ruiz - -;; Author: Jose Antonio Ortega Ruiz -;; Keywords: lisp - -;; This file is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 2, or (at your option) -;; any later version. - -;; This file is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to -;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -;; Boston, MA 02110-1301, USA. - -;;; Code: - -(require 'common-skel) - -(define-skeleton jao-skel-asdf-file - "ASDF file header" - "Description: " - '(setq sys (jao-basename)) - '(lisp-mode) - ";; -*- lisp -*- " sys " definition" - \n \n - "(defpackage " sys "-system" \n " (:use :common-lisp :asdf))" - \n \n - "(in-package " sys "-system)" - \n \n - "(defsystem " sys - > \n ":description \"" str "\"" - > \n ":version \"0.1\"" - > \n ":author \"" (user-full-name) " <" user-mail-address ">\"" - > \n ":maintainer \"" (user-full-name) " <" user-mail-address ">\"" - > \n ":licence \"GPL\"" - > \n ":depends-on ()" - > \n ":components ((:file \"packages\")))" - \n \n) - -(add-to-list 'auto-insert-alist '("\\.asd\\'" . jao-skel-asdf-file)) - - -(provide 'asdf-skel) -;;; asdf-skel.el ends here -- cgit v1.2.3