# HG changeset patch # User Tom Tromey # Date 842547772 0 # Node ID 2e26cb0991def592251f444ac50461ea3953f4b0 # Parent fb8897dbca30ba4bb176f3ee23d3042eb8ff71b4 (tcl-indent-command): Use insert-tab, not self-insert-command. diff -r fb8897dbca30 -r 2e26cb0991de lisp/progmodes/tcl.el --- a/lisp/progmodes/tcl.el Wed Sep 11 23:30:32 1996 +0000 +++ b/lisp/progmodes/tcl.el Thu Sep 12 17:02:52 1996 +0000 @@ -6,7 +6,7 @@ ;; Author: Tom Tromey ;; Chris Lindblad ;; Keywords: languages tcl modes -;; Version: $Revision: 1.49 $ +;; Version: $Revision: 1.50 $ ;; This file is part of GNU Emacs. @@ -51,7 +51,7 @@ ;; LCD Archive Entry: ;; tcl|Tom Tromey|tromey@busco.lanl.gov| ;; Major mode for editing Tcl| -;; $Date: 1995/12/07 18:27:47 $|$Revision: 1.49 $|~/modes/tcl.el.Z| +;; $Date: 1996/03/23 05:14:50 $|$Revision: 1.50 $|~/modes/tcl.el.Z| ;; CUSTOMIZATION NOTES: ;; * tcl-proc-list can be used to customize a list of things that @@ -65,6 +65,9 @@ ;; Change log: ;; $Log: tcl.el,v $ +;; Revision 1.50 1996/03/23 05:14:50 tromey +;; (tcl-using-emacs-19): Work with XEmacs 20.0. From Ben Wing. +;; ;; Revision 1.49 1995/12/07 18:27:47 tromey ;; (add-log-tcl-defun): Don't use tcl-beginning-of-defun; just go to end ;; of line before searching. @@ -367,7 +370,7 @@ (require 'imenu)) ())) -(defconst tcl-version "$Revision: 1.49 $") +(defconst tcl-version "$Revision: 1.50 $") (defconst tcl-maintainer "Tom Tromey ") ;; @@ -1098,7 +1101,7 @@ ;; Indent if in indentation area, otherwise insert TAB. (if (<= (current-column) (current-indentation)) (tcl-indent-line) - (self-insert-command arg))) + (insert-tab arg))) ((eq tcl-tab-always-indent t) ;; Always indent. (tcl-indent-line))