[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/progmodes/tcl.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/progmodes/tcl.el |
Date: |
Thu, 19 May 2005 15:06:23 -0400 |
Index: emacs/lisp/progmodes/tcl.el
diff -c emacs/lisp/progmodes/tcl.el:1.82 emacs/lisp/progmodes/tcl.el:1.83
*** emacs/lisp/progmodes/tcl.el:1.82 Tue Apr 5 13:01:58 2005
--- emacs/lisp/progmodes/tcl.el Thu May 19 19:06:19 2005
***************
*** 123,137 ****
(defcustom tcl-indent-level 4
"*Indentation of Tcl statements with respect to containing block."
! :type 'integer)
(defcustom tcl-continued-indent-level 4
"*Indentation of continuation line relative to first line of command."
! :type 'integer)
(defcustom tcl-auto-newline nil
"*Non-nil means automatically newline before and after braces you insert."
! :type 'boolean)
(defcustom tcl-tab-always-indent tab-always-indent
"*Control effect of TAB key.
--- 123,140 ----
(defcustom tcl-indent-level 4
"*Indentation of Tcl statements with respect to containing block."
! :type 'integer
! :group 'tcl)
(defcustom tcl-continued-indent-level 4
"*Indentation of continuation line relative to first line of command."
! :type 'integer
! :group 'tcl)
(defcustom tcl-auto-newline nil
"*Non-nil means automatically newline before and after braces you insert."
! :type 'boolean
! :group 'tcl)
(defcustom tcl-tab-always-indent tab-always-indent
"*Control effect of TAB key.
***************
*** 149,155 ****
6. Move backward to start of comment, indenting if necessary."
:type '(choice (const :tag "Always" t)
(const :tag "Beginning only" nil)
! (const :tag "Maybe move or make or delete comment" 'tcl)))
(defcustom tcl-electric-hash-style nil ;; 'smart
--- 152,159 ----
6. Move backward to start of comment, indenting if necessary."
:type '(choice (const :tag "Always" t)
(const :tag "Beginning only" nil)
! (const :tag "Maybe move or make or delete comment" 'tcl))
! :group 'tcl)
(defcustom tcl-electric-hash-style nil ;; 'smart
***************
*** 160,182 ****
made depending on the number of hashes inserted; or nil, meaning that
no quoting should be done. Any other value for this variable is
taken to mean `smart'. The default is nil."
! :type '(choice (const backslash) (const quote) (const smart) (const nil)))
(defcustom tcl-help-directory-list nil
"*List of topmost directories containing TclX help files."
! :type '(repeat directory))
(defcustom tcl-use-smart-word-finder t
"*If not nil, use smart way to find current word, for Tcl help feature."
! :type 'boolean)
(defcustom tcl-application "wish"
"*Name of Tcl program to run in inferior Tcl mode."
! :type 'string)
(defcustom tcl-command-switches nil
"*List of switches to supply to the `tcl-application' program."
! :type '(repeat string))
(defcustom tcl-prompt-regexp "^\\(% \\|\\)"
"*If not nil, a regexp that will match the prompt in the inferior process.
--- 164,191 ----
made depending on the number of hashes inserted; or nil, meaning that
no quoting should be done. Any other value for this variable is
taken to mean `smart'. The default is nil."
! :type '(choice (const backslash) (const quote) (const smart) (const nil))
! :group 'tcl)
(defcustom tcl-help-directory-list nil
"*List of topmost directories containing TclX help files."
! :type '(repeat directory)
! :group 'tcl)
(defcustom tcl-use-smart-word-finder t
"*If not nil, use smart way to find current word, for Tcl help feature."
! :type 'boolean
! :group 'tcl)
(defcustom tcl-application "wish"
"*Name of Tcl program to run in inferior Tcl mode."
! :type 'string
! :group 'tcl)
(defcustom tcl-command-switches nil
"*List of switches to supply to the `tcl-application' program."
! :type '(repeat string)
! :group 'tcl)
(defcustom tcl-prompt-regexp "^\\(% \\|\\)"
"*If not nil, a regexp that will match the prompt in the inferior process.
***************
*** 184,190 ****
The default is \"^\\(% \\|\\)\", which will match the default primary
and secondary prompts for tclsh and wish."
! :type 'regexp)
(defcustom inferior-tcl-source-command "source %s\n"
"*Format-string for building a Tcl command to load a file.
--- 193,200 ----
The default is \"^\\(% \\|\\)\", which will match the default primary
and secondary prompts for tclsh and wish."
! :type 'regexp
! :group 'tcl)
(defcustom inferior-tcl-source-command "source %s\n"
"*Format-string for building a Tcl command to load a file.
***************
*** 192,198 ****
and should result in a Tcl expression that will command the
inferior Tcl to load that file. The filename will be appropriately
quoted for Tcl."
! :type 'string)
(defface tcl-escaped-newline '((t :inherit font-lock-string-face))
"Face used for (non-escaped) backslash at end of a line in Tcl mode."
--- 202,209 ----
and should result in a Tcl expression that will command the
inferior Tcl to load that file. The filename will be appropriately
quoted for Tcl."
! :type 'string
! :group 'tcl)
(defface tcl-escaped-newline '((t :inherit font-lock-string-face))
"Face used for (non-escaped) backslash at end of a line in Tcl mode."
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] Changes to emacs/lisp/progmodes/tcl.el,
Juanma Barranquero <=