From xemacs-m  Thu Mar 13 11:58:06 1997
Received: from canker.atype.com (jsc@canker.atype.com [137.103.200.167])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id LAA03960
	for <xemacs-beta@xemacs.org>; Thu, 13 Mar 1997 11:58:05 -0600 (CST)
Received: (from jsc@localhost)
	by canker.atype.com (8.8.5/8.8.5) id NAA00660;
	Thu, 13 Mar 1997 13:02:57 -0500
Date: Thu, 13 Mar 1997 13:02:57 -0500
Message-Id: <199703131802.NAA00660@canker.atype.com>
From: "Jin S. Choi" <jsc@atype.com>
To: xemacs-beta@xemacs.org
Subject: better default indentation for HTML helper
Reply-to: jsc@atype.com
Mime-Version: 1.0 (generated by tm-edit 7.105)
Content-Type: text/plain; charset=US-ASCII

A minor nit that I found annoying. HTML helper mode inserts some
default header text if you open up an empty .html file, but the
indentation of the boilerplate text doesn't match up to the
indentation that HTML mode itself uses. Here's a patch.

--- psgml-html.el~	Sun Feb 23 20:14:15 1997
+++ psgml-html.el	Thu Mar 13 13:00:17 1997
@@ -76,10 +76,10 @@
     "  </head>\n"
     "\n"
     "  <body>\n"
-    "      <h1>" (s title) "</h1>\n\n"
+    "    <h1>" (s title) "</h1>\n\n"
     p
-    "\n\n      <hr>\n"
-    "      <address>" html-helper-address-string "</address>\n"
+    "\n\n    <hr>\n"
+    "    <address>" html-helper-address-string "</address>\n"
     (html-helper-return-created-string)
     html-helper-timestamp-start
     html-helper-timestamp-end

