# HG changeset patch # User Dave Love # Date 1041624084 0 # Node ID 417bead90660e54123974c94821927b70313190d # Parent 7b5daf445fbba02c2a6f0b30fbbb8e46da3dfa38 (auto-insert-alist): Add man page skeleton. diff -r 7b5daf445fbb -r 417bead90660 lisp/autoinsert.el --- a/lisp/autoinsert.el Fri Jan 03 16:05:51 2003 +0000 +++ b/lisp/autoinsert.el Fri Jan 03 20:01:24 2003 +0000 @@ -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 @@ (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 "