From bf9f5c1753132946610f1ec201516ae71ab95578 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Fri, 3 Jan 2003 20:01:24 +0000 Subject: [PATCH] (auto-insert-alist): Add man page skeleton. --- lisp/autoinsert.el | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index ffac45d746a..4b0cd71306e 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -1,6 +1,6 @@ ;;; autoinsert.el --- automatic mode-dependent insertion of text into new files -;; Copyright (C) 1985, 86, 87, 94, 95, 98, 2000 Free Software Foundation, Inc. +;; Copyright (C) 1985, 86, 87, 94, 95, 98, 2000, 03 Free Software Foundation, Inc. ;; Author: Charlie Martin ;; Adapted-By: Daniel Pfeiffer @@ -133,6 +133,35 @@ If this contains a %s, that will be replaced by the matching rule." (ada-mode . ada-header) + (("\\.[1-9]\\'" . "Man page skeleton") + "Short description: " + ".\\\" Copyright (C), " (substring (current-time-string) -4) " " + (getenv "ORGANIZATION") | "Free Software Foundation, Inc." + " +.\\\" You may distribute this file under the terms of the GNU Free +.\\\" Documentation Licence. +.TH " (file-name-sans-extension (file-name-nondirectory (buffer-file-name))) + " " (file-name-extension (buffer-file-name)) + " " (format-time-string "%Y-%m-%d ") + "\n.SH NAME\n" + (file-name-sans-extension (file-name-nondirectory (buffer-file-name))) + " \\- " str + "\n.SH SYNOPSIS +.B " (file-name-sans-extension (file-name-nondirectory (buffer-file-name))) + "\n" + _ + " +.SH DESCRIPTION +.SH OPTIONS +.SH FILES +.SH \"SEE ALSO\" +.SH BUGS +.SH AUTHOR +" (user-full-name) + '(if (search-backward "&" (line-beginning-position) t) + (replace-match (capitalize (user-login-name)) t t)) + '(end-of-line 1) " <" (progn user-mail-address) ">\n") + (("\\.el\\'" . "Emacs Lisp header") "Short description: " ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str " -- 2.39.2