From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Ville =?ISO-8859-1?Q?Skytt=E4?= Newsgroups: gmane.emacs.bugs Subject: tcl.el typo fixes Date: 28 Mar 2002 17:55:41 +0200 Sender: bug-gnu-emacs-admin@gnu.org Message-ID: <1017330941.3707.20.camel@bobcat.ods.org> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-R71x/m9BOn69zHYwdaqc" X-Trace: main.gmane.org 1017331052 8725 127.0.0.1 (28 Mar 2002 15:57:32 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 28 Mar 2002 15:57:32 +0000 (UTC) Original-Received: from fencepost.gnu.org ([199.232.76.164]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16qcHM-0002Gc-00 for ; Thu, 28 Mar 2002 16:57:32 +0100 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16qcHJ-0003jo-00; Thu, 28 Mar 2002 10:57:29 -0500 Original-Received: from posti.pp.htv.fi ([212.90.64.50]) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16qcFW-0003hQ-00 for ; Thu, 28 Mar 2002 10:55:38 -0500 Original-Received: from cs78130147.pp.htv.fi ([62.78.130.147]) by posti.pp.htv.fi (8.11.1/8.11.1) with ESMTP id g2SFtYI23573 for ; Thu, 28 Mar 2002 17:55:34 +0200 (EET) Original-To: bug-gnu-emacs@gnu.org X-Mailer: Ximian Evolution 1.0.3 Errors-To: bug-gnu-emacs-admin@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.0.5 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.bugs:267 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:267 --=-R71x/m9BOn69zHYwdaqc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hello, here's a couple of typo fixes for tcl.el. --=20 Ville Skytt=E4 ville.skytta@xemacs.org --=-R71x/m9BOn69zHYwdaqc Content-Disposition: attachment; filename=tcl-typos.patch Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; name=tcl-typos.patch; charset=ISO-8859-1 --- tcl.el.1.66 Thu Mar 28 17:41:42 2002 +++ tcl.el Thu Mar 28 17:44:39 2002 @@ -76,7 +76,7 @@ ;; middle of a defun, or between defuns. should notice if point is ;; on first line of defun (or maybe even in comments before defun). ;; * Allow continuation lines to be indented under the first argument -;; of the preceeding line, like this: +;; of the preceding line, like this: ;; [list something \ ;; something-else] ;; * There is a request that indentation work like this: @@ -988,7 +988,7 @@ ;; =20 (defun tcl-imenu-create-index-function () - "Generate alist of indices for imenu." + "Generate alist of indices for `imenu'." (let ((re (concat tcl-proc-regexp "\\([^ \t\n{]+\\)")) alist prev-pos) (goto-char (point-min)) @@ -1189,7 +1189,7 @@ "Return t if point is just after the `#' beginning a real comment. Does not check to see if previous char is actually `#'. A real comment is either at the beginning of the buffer, -preceeded only by whitespace on the line, or has a preceeding +preceded only by whitespace on the line, or has a preceding semicolon, opening brace, or opening bracket on the same line." (save-excursion (backward-char) --=-R71x/m9BOn69zHYwdaqc--