jao-skel-readme.el 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ;; Copyright (C) 2004, 2005, 2022 Jose Antonio Ortega Ruiz -*- lexical-binding: t; -*-
  2. ;; Author: Jose A Ortega Ruiz <jao@gnu.org>
  3. ;; Keywords: tools
  4. ;; This file is free software; you can redistribute it and/or modify
  5. ;; it under the terms of the GNU General Public License as published by
  6. ;; the Free Software Foundation; either version 2, or (at your option)
  7. ;; any later version.
  8. ;; This file is distributed in the hope that it will be useful,
  9. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. ;; GNU General Public License for more details.
  12. ;; You should have received a copy of the GNU General Public License
  13. ;; along with GNU Emacs; see the file COPYING. If not, write to
  14. ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. ;; Boston, MA 02111-1307, USA.
  16. ;;; Commentary:
  17. ;; Simple skeleton for README files.
  18. ;;; Code:
  19. (require 'jao-skel)
  20. (define-skeleton jao-skel-readme-file
  21. "README file header"
  22. "Brief description: "
  23. \n str
  24. \n "-----------------------------------------------------" \n
  25. _ \n \n \n
  26. "-----------------------------------------------------" \n
  27. (jao-skel-copyright-line "" "")
  28. \n \n
  29. "$Id" "$"
  30. \n)
  31. (add-to-list 'auto-insert-alist '("README" . jao-skel-readme-file))
  32. (provide 'jao-skel-readme)