1992-05-30 23:12:08 +00:00
|
|
|
|
;;; icon.el --- mode for editing Icon code
|
|
|
|
|
|
2012-01-05 09:46:05 +00:00
|
|
|
|
;; Copyright (C) 1989, 2001-2012 Free Software Foundation, Inc.
|
1992-07-22 04:22:30 +00:00
|
|
|
|
|
1995-08-21 14:30:34 +00:00
|
|
|
|
;; Author: Chris Smith <csmith@convex.com>
|
1992-07-16 21:47:34 +00:00
|
|
|
|
;; Created: 15 Feb 89
|
1992-07-17 08:15:29 +00:00
|
|
|
|
;; Keywords: languages
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 07:25:26 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1989-10-31 16:00:07 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 07:25:26 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 07:25:26 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1993-03-22 03:27:18 +00:00
|
|
|
|
;; A major mode for editing the Icon programming language.
|
1992-07-16 21:47:34 +00:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
|
|
(defvar icon-mode-abbrev-table nil
|
|
|
|
|
"Abbrev table in use in Icon-mode buffers.")
|
|
|
|
|
(define-abbrev-table 'icon-mode-abbrev-table ())
|
|
|
|
|
|
|
|
|
|
(defvar icon-mode-map ()
|
|
|
|
|
"Keymap used in Icon mode.")
|
|
|
|
|
(if icon-mode-map
|
|
|
|
|
()
|
1997-03-30 21:50:02 +00:00
|
|
|
|
(let ((map (make-sparse-keymap "Icon")))
|
|
|
|
|
(setq icon-mode-map (make-sparse-keymap))
|
|
|
|
|
(define-key icon-mode-map "{" 'electric-icon-brace)
|
|
|
|
|
(define-key icon-mode-map "}" 'electric-icon-brace)
|
|
|
|
|
(define-key icon-mode-map "\e\C-h" 'mark-icon-function)
|
|
|
|
|
(define-key icon-mode-map "\e\C-a" 'beginning-of-icon-defun)
|
|
|
|
|
(define-key icon-mode-map "\e\C-e" 'end-of-icon-defun)
|
|
|
|
|
(define-key icon-mode-map "\e\C-q" 'indent-icon-exp)
|
|
|
|
|
(define-key icon-mode-map "\177" 'backward-delete-char-untabify)
|
2003-02-04 13:24:35 +00:00
|
|
|
|
|
2000-10-08 17:39:40 +00:00
|
|
|
|
(define-key icon-mode-map [menu-bar] (make-sparse-keymap "Icon"))
|
1997-03-30 21:50:02 +00:00
|
|
|
|
(define-key icon-mode-map [menu-bar icon]
|
|
|
|
|
(cons "Icon" map))
|
|
|
|
|
(define-key map [beginning-of-icon-defun] '("Beginning of function" . beginning-of-icon-defun))
|
|
|
|
|
(define-key map [end-of-icon-defun] '("End of function" . end-of-icon-defun))
|
|
|
|
|
(define-key map [comment-region] '("Comment Out Region" . comment-region))
|
|
|
|
|
(define-key map [indent-region] '("Indent Region" . indent-region))
|
|
|
|
|
(define-key map [indent-line] '("Indent Line" . icon-indent-command))
|
|
|
|
|
(put 'eval-region 'menu-enable 'mark-active)
|
|
|
|
|
(put 'comment-region 'menu-enable 'mark-active)
|
|
|
|
|
(put 'indent-region 'menu-enable 'mark-active)))
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
|
|
(defvar icon-mode-syntax-table nil
|
|
|
|
|
"Syntax table in use in Icon-mode buffers.")
|
|
|
|
|
|
|
|
|
|
(if icon-mode-syntax-table
|
|
|
|
|
()
|
|
|
|
|
(setq icon-mode-syntax-table (make-syntax-table))
|
|
|
|
|
(modify-syntax-entry ?\\ "\\" icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?# "<" icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?\n ">" icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?$ "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?/ "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?* "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?+ "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?- "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?= "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?% "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?< "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?> "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?& "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?| "." icon-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?\' "\"" icon-mode-syntax-table))
|
|
|
|
|
|
1997-05-03 19:28:12 +00:00
|
|
|
|
(defgroup icon nil
|
|
|
|
|
"Mode for editing Icon code."
|
2005-11-17 07:40:11 +00:00
|
|
|
|
:link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
|
1997-05-03 19:28:12 +00:00
|
|
|
|
:group 'languages)
|
|
|
|
|
|
|
|
|
|
(defcustom icon-indent-level 4
|
2012-04-09 13:05:48 +00:00
|
|
|
|
"Indentation of Icon statements with respect to containing block."
|
1997-05-03 19:28:12 +00:00
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'icon)
|
|
|
|
|
|
|
|
|
|
(defcustom icon-brace-imaginary-offset 0
|
2012-04-09 13:05:48 +00:00
|
|
|
|
"Imagined indentation of a Icon open brace that actually follows a statement."
|
1997-05-03 19:28:12 +00:00
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'icon)
|
|
|
|
|
|
|
|
|
|
(defcustom icon-brace-offset 0
|
2012-04-09 13:05:48 +00:00
|
|
|
|
"Extra indentation for braces, compared with other text in same context."
|
1997-05-03 19:28:12 +00:00
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'icon)
|
|
|
|
|
|
|
|
|
|
(defcustom icon-continued-statement-offset 4
|
2012-04-09 13:05:48 +00:00
|
|
|
|
"Extra indent for Icon lines not starting new statements."
|
1997-05-03 19:28:12 +00:00
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'icon)
|
|
|
|
|
|
|
|
|
|
(defcustom icon-continued-brace-offset 0
|
2012-04-09 13:05:48 +00:00
|
|
|
|
"Extra indent for Icon substatements that start with open-braces.
|
1997-05-03 19:28:12 +00:00
|
|
|
|
This is in addition to `icon-continued-statement-offset'."
|
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'icon)
|
|
|
|
|
|
|
|
|
|
(defcustom icon-auto-newline nil
|
2012-04-09 13:05:48 +00:00
|
|
|
|
"Non-nil means automatically newline before and after braces Icon code.
|
1997-05-03 19:28:12 +00:00
|
|
|
|
This applies when braces are inserted."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'icon)
|
|
|
|
|
|
|
|
|
|
(defcustom icon-tab-always-indent t
|
2012-04-09 13:05:48 +00:00
|
|
|
|
"Non-nil means TAB in Icon mode should always reindent the current line.
|
1997-05-03 19:28:12 +00:00
|
|
|
|
It will then reindent, regardless of where in the line point is
|
|
|
|
|
when the TAB command is used."
|
1997-09-09 02:58:47 +00:00
|
|
|
|
:type 'boolean
|
1997-05-03 19:28:12 +00:00
|
|
|
|
:group 'icon)
|
1997-03-30 21:50:02 +00:00
|
|
|
|
|
|
|
|
|
(defvar icon-imenu-generic-expression
|
1997-06-16 23:13:12 +00:00
|
|
|
|
'((nil "^[ \t]*procedure[ \t]+\\(\\sw+\\)[ \t]*(" 1))
|
1997-05-03 19:28:12 +00:00
|
|
|
|
"Imenu expression for Icon mode. See `imenu-generic-expression'.")
|
1997-03-30 21:50:02 +00:00
|
|
|
|
|
|
|
|
|
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
1994-09-24 04:05:44 +00:00
|
|
|
|
;;;###autoload
|
Derive from prog-mode, use derived-mode-p, and fix up various
minor style issues in lisp/progmodes.
* lisp/progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
(vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
make-local-hook.
* lisp/progmodes/sh-script.el (sh-require-final-newline): Remove.
(sh-set-shell): Don't set require-final-newline since it's already done
by prog-mode.
* lisp/progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
since we never set it.
* lisp/progmodes/ebrowse.el (ebrowse-set-tree-indentation):
Use read-string and standard prompt.
* lisp/progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
* lisp/progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
(meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
(meta-common-mode-map): Rename from meta-mode-map.
Remove C-m binding, which is a user preference, not mode specific.
(meta-common-mode): New major mode; replace meta-common-initialization.
* lisp/progmodes/js.el (js-mode): Call syntax-propertize rather than messing
around with font-lock.
* lisp/progmodes/etags.el (select-tags-table-mode):
Derive from special-mode.
* lisp/progmodes/octave-mod.el (octave-mode):
* lisp/progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
(gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
(gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
Let define-derived-mode do its job.
* lisp/progmodes/cpp.el (cpp-edit-mode-map):
Move initialization into declaration.
(cpp-edit-mode): Use define-derived-mode.
(cpp-edit-load): Use derived-mode-p.
* lisp/progmodes/mixal-mode.el (mixal-mode):
* lisp/progmodes/f90.el (f90-mode):
* lisp/progmodes/cfengine.el (cfengine-mode): Don't bother setting
require-final-newline since prog-mode does it already.
* lisp/progmodes/cc-cmds.el (c-update-modeline): Use match-string.
* lisp/progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
* lisp/progmodes/antlr-mode.el: Require cc-mode upfront.
(antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
the declaration.
(antlr-directory-dependencies, antlr-show-makefile-rules):
Use derived-mode-p.
(antlr-language-option): Don't assume point-min==1.
(antlr-mode): Use define-derived-mode.
* lisp/progmodes/ada-mode.el: Use derived-mode-p.
(ada-mode): Use define-derived-mode.
Use hack-local-variables-hook.
* lisp/progmodes/vhdl-mode.el (vhdl-mode):
* lisp/progmodes/verilog-mode.el (verilog-mode):
* lisp/progmodes/vera-mode.el (vera-mode):
* lisp/progmodes/sql.el (sql-mode):
* lisp/progmodes/scheme.el (scheme-mode):
* lisp/progmodes/perl-mode.el (perl-mode):
* lisp/progmodes/octave-inf.el (inferior-octave-mode):
* lisp/progmodes/autoconf.el (autoconf-mode):
* lisp/progmodes/m4-mode.el (m4-mode):
* lisp/progmodes/inf-lisp.el (inferior-lisp-mode):
* lisp/progmodes/idlwave.el (idlwave-mode):
* lisp/progmodes/icon.el (icon-mode):
* lisp/progmodes/idlw-help.el (idlwave-help-mode):
* lisp/progmodes/dcl-mode.el (dcl-mode):
* lisp/progmodes/idlw-shell.el (idlwave-shell-mode):
* lisp/progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
(ebrowse-member-mode, ebrowse-electric-position-mode):
Use define-derived-mode.
* lisp/progmodes/xscheme.el (xscheme-start)
(local-set-scheme-interaction-buffer, scheme-interaction-mode):
* lisp/progmodes/which-func.el (which-function):
* lisp/progmodes/vhdl-mode.el (vhdl-set-style):
* lisp/progmodes/verilog-mode.el (verilog-set-compile-command)
(verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
(verilog-set-define, verilog-auto-reeval-locals):
* lisp/progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
* lisp/progmodes/simula.el (simula-mode):
* lisp/progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
* lisp/progmodes/python.el (python-check, python-mode):
* lisp/progmodes/prolog.el (prolog-mode-variables):
* lisp/progmodes/gud.el (gud-tooltip-activate-mouse-motions):
* lisp/progmodes/ebrowse.el (ebrowse-view-file-other-frame):
* lisp/progmodes/delphi.el (delphi-mode):
* lisp/progmodes/cc-styles.el (c-setup-paragraph-variables):
* lisp/progmodes/cc-mode.el (c-basic-common-init, c-common-init)
(c-font-lock-init): Move make-local-variable to their setq.
* lisp/progmodes/xscheme.el (exit-scheme-interaction-mode)
(xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
(xscheme-debugger-mode-p, xscheme-send-string-1):
* lisp/progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
(tcl-load-file, tcl-restart-with-file):
* lisp/progmodes/ps-mode.el (ps-run-running):
* lisp/progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
* lisp/progmodes/js.el (js--get-all-known-symbols):
* lisp/progmodes/inf-lisp.el (inferior-lisp-proc):
* lisp/progmodes/idlwave.el (idlwave-beginning-of-statement)
(idlwave-template, idlwave-update-buffer-routine-info)
(idlwave-update-current-buffer-info)
(idlwave-get-routine-info-from-buffers, idlwave-choose)
(idlwave-scan-class-info, idlwave-fix-keywords)
(idlwave-list-buffer-load-path-shadows):
* lisp/progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
(idlwave-toolbar-remove):
* lisp/progmodes/idlw-shell.el (idlwave-shell-save-and-action)
(idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
(idlwave-shell-menu-def):
* lisp/progmodes/idlw-complete-structtag.el
(idlwave-prepare-structure-tag-completion):
* lisp/progmodes/gud.el (gud-set-buffer):
* lisp/progmodes/f90.el (f90-backslash-not-special):
* lisp/progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
2010-12-10 20:00:25 +00:00
|
|
|
|
(define-derived-mode icon-mode prog-mode "Icon"
|
1989-10-31 16:00:07 +00:00
|
|
|
|
"Major mode for editing Icon code.
|
|
|
|
|
Expression and list commands understand all Icon brackets.
|
|
|
|
|
Tab indents for Icon code.
|
|
|
|
|
Paragraphs are separated by blank lines only.
|
|
|
|
|
Delete converts tabs to spaces as it moves back.
|
|
|
|
|
\\{icon-mode-map}
|
|
|
|
|
Variables controlling indentation style:
|
|
|
|
|
icon-tab-always-indent
|
|
|
|
|
Non-nil means TAB in Icon mode should always reindent the current line,
|
|
|
|
|
regardless of where in the line point is when the TAB command is used.
|
|
|
|
|
icon-auto-newline
|
|
|
|
|
Non-nil means automatically newline before and after braces
|
|
|
|
|
inserted in Icon code.
|
|
|
|
|
icon-indent-level
|
|
|
|
|
Indentation of Icon statements within surrounding block.
|
|
|
|
|
The surrounding block's indentation is the indentation
|
|
|
|
|
of the line on which the open-brace appears.
|
|
|
|
|
icon-continued-statement-offset
|
|
|
|
|
Extra indentation given to a substatement, such as the
|
|
|
|
|
then-clause of an if or body of a while.
|
|
|
|
|
icon-continued-brace-offset
|
|
|
|
|
Extra indentation given to a brace that starts a substatement.
|
1991-03-06 21:14:11 +00:00
|
|
|
|
This is in addition to `icon-continued-statement-offset'.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
icon-brace-offset
|
|
|
|
|
Extra indentation for line if it starts with an open brace.
|
|
|
|
|
icon-brace-imaginary-offset
|
|
|
|
|
An open brace following other text is treated as if it were
|
|
|
|
|
this far to the right of the start of its line.
|
|
|
|
|
|
1991-03-06 21:14:11 +00:00
|
|
|
|
Turning on Icon mode calls the value of the variable `icon-mode-hook'
|
|
|
|
|
with no args, if that value is non-nil."
|
Derive from prog-mode, use derived-mode-p, and fix up various
minor style issues in lisp/progmodes.
* lisp/progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
(vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
make-local-hook.
* lisp/progmodes/sh-script.el (sh-require-final-newline): Remove.
(sh-set-shell): Don't set require-final-newline since it's already done
by prog-mode.
* lisp/progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
since we never set it.
* lisp/progmodes/ebrowse.el (ebrowse-set-tree-indentation):
Use read-string and standard prompt.
* lisp/progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
* lisp/progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
(meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
(meta-common-mode-map): Rename from meta-mode-map.
Remove C-m binding, which is a user preference, not mode specific.
(meta-common-mode): New major mode; replace meta-common-initialization.
* lisp/progmodes/js.el (js-mode): Call syntax-propertize rather than messing
around with font-lock.
* lisp/progmodes/etags.el (select-tags-table-mode):
Derive from special-mode.
* lisp/progmodes/octave-mod.el (octave-mode):
* lisp/progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
(gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
(gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
Let define-derived-mode do its job.
* lisp/progmodes/cpp.el (cpp-edit-mode-map):
Move initialization into declaration.
(cpp-edit-mode): Use define-derived-mode.
(cpp-edit-load): Use derived-mode-p.
* lisp/progmodes/mixal-mode.el (mixal-mode):
* lisp/progmodes/f90.el (f90-mode):
* lisp/progmodes/cfengine.el (cfengine-mode): Don't bother setting
require-final-newline since prog-mode does it already.
* lisp/progmodes/cc-cmds.el (c-update-modeline): Use match-string.
* lisp/progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
* lisp/progmodes/antlr-mode.el: Require cc-mode upfront.
(antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
the declaration.
(antlr-directory-dependencies, antlr-show-makefile-rules):
Use derived-mode-p.
(antlr-language-option): Don't assume point-min==1.
(antlr-mode): Use define-derived-mode.
* lisp/progmodes/ada-mode.el: Use derived-mode-p.
(ada-mode): Use define-derived-mode.
Use hack-local-variables-hook.
* lisp/progmodes/vhdl-mode.el (vhdl-mode):
* lisp/progmodes/verilog-mode.el (verilog-mode):
* lisp/progmodes/vera-mode.el (vera-mode):
* lisp/progmodes/sql.el (sql-mode):
* lisp/progmodes/scheme.el (scheme-mode):
* lisp/progmodes/perl-mode.el (perl-mode):
* lisp/progmodes/octave-inf.el (inferior-octave-mode):
* lisp/progmodes/autoconf.el (autoconf-mode):
* lisp/progmodes/m4-mode.el (m4-mode):
* lisp/progmodes/inf-lisp.el (inferior-lisp-mode):
* lisp/progmodes/idlwave.el (idlwave-mode):
* lisp/progmodes/icon.el (icon-mode):
* lisp/progmodes/idlw-help.el (idlwave-help-mode):
* lisp/progmodes/dcl-mode.el (dcl-mode):
* lisp/progmodes/idlw-shell.el (idlwave-shell-mode):
* lisp/progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
(ebrowse-member-mode, ebrowse-electric-position-mode):
Use define-derived-mode.
* lisp/progmodes/xscheme.el (xscheme-start)
(local-set-scheme-interaction-buffer, scheme-interaction-mode):
* lisp/progmodes/which-func.el (which-function):
* lisp/progmodes/vhdl-mode.el (vhdl-set-style):
* lisp/progmodes/verilog-mode.el (verilog-set-compile-command)
(verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
(verilog-set-define, verilog-auto-reeval-locals):
* lisp/progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
* lisp/progmodes/simula.el (simula-mode):
* lisp/progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
* lisp/progmodes/python.el (python-check, python-mode):
* lisp/progmodes/prolog.el (prolog-mode-variables):
* lisp/progmodes/gud.el (gud-tooltip-activate-mouse-motions):
* lisp/progmodes/ebrowse.el (ebrowse-view-file-other-frame):
* lisp/progmodes/delphi.el (delphi-mode):
* lisp/progmodes/cc-styles.el (c-setup-paragraph-variables):
* lisp/progmodes/cc-mode.el (c-basic-common-init, c-common-init)
(c-font-lock-init): Move make-local-variable to their setq.
* lisp/progmodes/xscheme.el (exit-scheme-interaction-mode)
(xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
(xscheme-debugger-mode-p, xscheme-send-string-1):
* lisp/progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
(tcl-load-file, tcl-restart-with-file):
* lisp/progmodes/ps-mode.el (ps-run-running):
* lisp/progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
* lisp/progmodes/js.el (js--get-all-known-symbols):
* lisp/progmodes/inf-lisp.el (inferior-lisp-proc):
* lisp/progmodes/idlwave.el (idlwave-beginning-of-statement)
(idlwave-template, idlwave-update-buffer-routine-info)
(idlwave-update-current-buffer-info)
(idlwave-get-routine-info-from-buffers, idlwave-choose)
(idlwave-scan-class-info, idlwave-fix-keywords)
(idlwave-list-buffer-load-path-shadows):
* lisp/progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
(idlwave-toolbar-remove):
* lisp/progmodes/idlw-shell.el (idlwave-shell-save-and-action)
(idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
(idlwave-shell-menu-def):
* lisp/progmodes/idlw-complete-structtag.el
(idlwave-prepare-structure-tag-completion):
* lisp/progmodes/gud.el (gud-set-buffer):
* lisp/progmodes/f90.el (f90-backslash-not-special):
* lisp/progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
2010-12-10 20:00:25 +00:00
|
|
|
|
:abbrev-table icon-mode-abbrev-table
|
|
|
|
|
(set (make-local-variable 'paragraph-start) (concat "$\\|" page-delimiter))
|
|
|
|
|
(set (make-local-variable 'paragraph-separate) paragraph-start)
|
|
|
|
|
(set (make-local-variable 'indent-line-function) #'icon-indent-line)
|
|
|
|
|
(set (make-local-variable 'comment-start) "# ")
|
|
|
|
|
(set (make-local-variable 'comment-end) "")
|
|
|
|
|
(set (make-local-variable 'comment-start-skip) "# *")
|
|
|
|
|
(set (make-local-variable 'comment-indent-function) 'icon-comment-indent)
|
2000-11-03 23:05:16 +00:00
|
|
|
|
(set (make-local-variable 'indent-line-function) 'icon-indent-line)
|
1997-03-30 21:50:02 +00:00
|
|
|
|
;; font-lock support
|
Derive from prog-mode, use derived-mode-p, and fix up various
minor style issues in lisp/progmodes.
* lisp/progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
(vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
make-local-hook.
* lisp/progmodes/sh-script.el (sh-require-final-newline): Remove.
(sh-set-shell): Don't set require-final-newline since it's already done
by prog-mode.
* lisp/progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
since we never set it.
* lisp/progmodes/ebrowse.el (ebrowse-set-tree-indentation):
Use read-string and standard prompt.
* lisp/progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
* lisp/progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
(meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
(meta-common-mode-map): Rename from meta-mode-map.
Remove C-m binding, which is a user preference, not mode specific.
(meta-common-mode): New major mode; replace meta-common-initialization.
* lisp/progmodes/js.el (js-mode): Call syntax-propertize rather than messing
around with font-lock.
* lisp/progmodes/etags.el (select-tags-table-mode):
Derive from special-mode.
* lisp/progmodes/octave-mod.el (octave-mode):
* lisp/progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
(gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
(gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
Let define-derived-mode do its job.
* lisp/progmodes/cpp.el (cpp-edit-mode-map):
Move initialization into declaration.
(cpp-edit-mode): Use define-derived-mode.
(cpp-edit-load): Use derived-mode-p.
* lisp/progmodes/mixal-mode.el (mixal-mode):
* lisp/progmodes/f90.el (f90-mode):
* lisp/progmodes/cfengine.el (cfengine-mode): Don't bother setting
require-final-newline since prog-mode does it already.
* lisp/progmodes/cc-cmds.el (c-update-modeline): Use match-string.
* lisp/progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
* lisp/progmodes/antlr-mode.el: Require cc-mode upfront.
(antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
the declaration.
(antlr-directory-dependencies, antlr-show-makefile-rules):
Use derived-mode-p.
(antlr-language-option): Don't assume point-min==1.
(antlr-mode): Use define-derived-mode.
* lisp/progmodes/ada-mode.el: Use derived-mode-p.
(ada-mode): Use define-derived-mode.
Use hack-local-variables-hook.
* lisp/progmodes/vhdl-mode.el (vhdl-mode):
* lisp/progmodes/verilog-mode.el (verilog-mode):
* lisp/progmodes/vera-mode.el (vera-mode):
* lisp/progmodes/sql.el (sql-mode):
* lisp/progmodes/scheme.el (scheme-mode):
* lisp/progmodes/perl-mode.el (perl-mode):
* lisp/progmodes/octave-inf.el (inferior-octave-mode):
* lisp/progmodes/autoconf.el (autoconf-mode):
* lisp/progmodes/m4-mode.el (m4-mode):
* lisp/progmodes/inf-lisp.el (inferior-lisp-mode):
* lisp/progmodes/idlwave.el (idlwave-mode):
* lisp/progmodes/icon.el (icon-mode):
* lisp/progmodes/idlw-help.el (idlwave-help-mode):
* lisp/progmodes/dcl-mode.el (dcl-mode):
* lisp/progmodes/idlw-shell.el (idlwave-shell-mode):
* lisp/progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
(ebrowse-member-mode, ebrowse-electric-position-mode):
Use define-derived-mode.
* lisp/progmodes/xscheme.el (xscheme-start)
(local-set-scheme-interaction-buffer, scheme-interaction-mode):
* lisp/progmodes/which-func.el (which-function):
* lisp/progmodes/vhdl-mode.el (vhdl-set-style):
* lisp/progmodes/verilog-mode.el (verilog-set-compile-command)
(verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
(verilog-set-define, verilog-auto-reeval-locals):
* lisp/progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
* lisp/progmodes/simula.el (simula-mode):
* lisp/progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
* lisp/progmodes/python.el (python-check, python-mode):
* lisp/progmodes/prolog.el (prolog-mode-variables):
* lisp/progmodes/gud.el (gud-tooltip-activate-mouse-motions):
* lisp/progmodes/ebrowse.el (ebrowse-view-file-other-frame):
* lisp/progmodes/delphi.el (delphi-mode):
* lisp/progmodes/cc-styles.el (c-setup-paragraph-variables):
* lisp/progmodes/cc-mode.el (c-basic-common-init, c-common-init)
(c-font-lock-init): Move make-local-variable to their setq.
* lisp/progmodes/xscheme.el (exit-scheme-interaction-mode)
(xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
(xscheme-debugger-mode-p, xscheme-send-string-1):
* lisp/progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
(tcl-load-file, tcl-restart-with-file):
* lisp/progmodes/ps-mode.el (ps-run-running):
* lisp/progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
* lisp/progmodes/js.el (js--get-all-known-symbols):
* lisp/progmodes/inf-lisp.el (inferior-lisp-proc):
* lisp/progmodes/idlwave.el (idlwave-beginning-of-statement)
(idlwave-template, idlwave-update-buffer-routine-info)
(idlwave-update-current-buffer-info)
(idlwave-get-routine-info-from-buffers, idlwave-choose)
(idlwave-scan-class-info, idlwave-fix-keywords)
(idlwave-list-buffer-load-path-shadows):
* lisp/progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
(idlwave-toolbar-remove):
* lisp/progmodes/idlw-shell.el (idlwave-shell-save-and-action)
(idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
(idlwave-shell-menu-def):
* lisp/progmodes/idlw-complete-structtag.el
(idlwave-prepare-structure-tag-completion):
* lisp/progmodes/gud.el (gud-set-buffer):
* lisp/progmodes/f90.el (f90-backslash-not-special):
* lisp/progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
2010-12-10 20:00:25 +00:00
|
|
|
|
(set (make-local-variable 'font-lock-defaults)
|
|
|
|
|
'((icon-font-lock-keywords
|
|
|
|
|
icon-font-lock-keywords-1 icon-font-lock-keywords-2)
|
|
|
|
|
nil nil ((?_ . "w")) beginning-of-defun
|
|
|
|
|
;; Obsoleted by Emacs 19.35 parse-partial-sexp's COMMENTSTOP.
|
|
|
|
|
;;(font-lock-comment-start-regexp . "#")
|
|
|
|
|
(font-lock-mark-block-function . mark-defun)))
|
1997-03-30 21:50:02 +00:00
|
|
|
|
;; imenu support
|
Derive from prog-mode, use derived-mode-p, and fix up various
minor style issues in lisp/progmodes.
* lisp/progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
(vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
make-local-hook.
* lisp/progmodes/sh-script.el (sh-require-final-newline): Remove.
(sh-set-shell): Don't set require-final-newline since it's already done
by prog-mode.
* lisp/progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
since we never set it.
* lisp/progmodes/ebrowse.el (ebrowse-set-tree-indentation):
Use read-string and standard prompt.
* lisp/progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
* lisp/progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
(meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
(meta-common-mode-map): Rename from meta-mode-map.
Remove C-m binding, which is a user preference, not mode specific.
(meta-common-mode): New major mode; replace meta-common-initialization.
* lisp/progmodes/js.el (js-mode): Call syntax-propertize rather than messing
around with font-lock.
* lisp/progmodes/etags.el (select-tags-table-mode):
Derive from special-mode.
* lisp/progmodes/octave-mod.el (octave-mode):
* lisp/progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
(gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
(gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
Let define-derived-mode do its job.
* lisp/progmodes/cpp.el (cpp-edit-mode-map):
Move initialization into declaration.
(cpp-edit-mode): Use define-derived-mode.
(cpp-edit-load): Use derived-mode-p.
* lisp/progmodes/mixal-mode.el (mixal-mode):
* lisp/progmodes/f90.el (f90-mode):
* lisp/progmodes/cfengine.el (cfengine-mode): Don't bother setting
require-final-newline since prog-mode does it already.
* lisp/progmodes/cc-cmds.el (c-update-modeline): Use match-string.
* lisp/progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
* lisp/progmodes/antlr-mode.el: Require cc-mode upfront.
(antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
the declaration.
(antlr-directory-dependencies, antlr-show-makefile-rules):
Use derived-mode-p.
(antlr-language-option): Don't assume point-min==1.
(antlr-mode): Use define-derived-mode.
* lisp/progmodes/ada-mode.el: Use derived-mode-p.
(ada-mode): Use define-derived-mode.
Use hack-local-variables-hook.
* lisp/progmodes/vhdl-mode.el (vhdl-mode):
* lisp/progmodes/verilog-mode.el (verilog-mode):
* lisp/progmodes/vera-mode.el (vera-mode):
* lisp/progmodes/sql.el (sql-mode):
* lisp/progmodes/scheme.el (scheme-mode):
* lisp/progmodes/perl-mode.el (perl-mode):
* lisp/progmodes/octave-inf.el (inferior-octave-mode):
* lisp/progmodes/autoconf.el (autoconf-mode):
* lisp/progmodes/m4-mode.el (m4-mode):
* lisp/progmodes/inf-lisp.el (inferior-lisp-mode):
* lisp/progmodes/idlwave.el (idlwave-mode):
* lisp/progmodes/icon.el (icon-mode):
* lisp/progmodes/idlw-help.el (idlwave-help-mode):
* lisp/progmodes/dcl-mode.el (dcl-mode):
* lisp/progmodes/idlw-shell.el (idlwave-shell-mode):
* lisp/progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
(ebrowse-member-mode, ebrowse-electric-position-mode):
Use define-derived-mode.
* lisp/progmodes/xscheme.el (xscheme-start)
(local-set-scheme-interaction-buffer, scheme-interaction-mode):
* lisp/progmodes/which-func.el (which-function):
* lisp/progmodes/vhdl-mode.el (vhdl-set-style):
* lisp/progmodes/verilog-mode.el (verilog-set-compile-command)
(verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
(verilog-set-define, verilog-auto-reeval-locals):
* lisp/progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
* lisp/progmodes/simula.el (simula-mode):
* lisp/progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
* lisp/progmodes/python.el (python-check, python-mode):
* lisp/progmodes/prolog.el (prolog-mode-variables):
* lisp/progmodes/gud.el (gud-tooltip-activate-mouse-motions):
* lisp/progmodes/ebrowse.el (ebrowse-view-file-other-frame):
* lisp/progmodes/delphi.el (delphi-mode):
* lisp/progmodes/cc-styles.el (c-setup-paragraph-variables):
* lisp/progmodes/cc-mode.el (c-basic-common-init, c-common-init)
(c-font-lock-init): Move make-local-variable to their setq.
* lisp/progmodes/xscheme.el (exit-scheme-interaction-mode)
(xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
(xscheme-debugger-mode-p, xscheme-send-string-1):
* lisp/progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
(tcl-load-file, tcl-restart-with-file):
* lisp/progmodes/ps-mode.el (ps-run-running):
* lisp/progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
* lisp/progmodes/js.el (js--get-all-known-symbols):
* lisp/progmodes/inf-lisp.el (inferior-lisp-proc):
* lisp/progmodes/idlwave.el (idlwave-beginning-of-statement)
(idlwave-template, idlwave-update-buffer-routine-info)
(idlwave-update-current-buffer-info)
(idlwave-get-routine-info-from-buffers, idlwave-choose)
(idlwave-scan-class-info, idlwave-fix-keywords)
(idlwave-list-buffer-load-path-shadows):
* lisp/progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
(idlwave-toolbar-remove):
* lisp/progmodes/idlw-shell.el (idlwave-shell-save-and-action)
(idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
(idlwave-shell-menu-def):
* lisp/progmodes/idlw-complete-structtag.el
(idlwave-prepare-structure-tag-completion):
* lisp/progmodes/gud.el (gud-set-buffer):
* lisp/progmodes/f90.el (f90-backslash-not-special):
* lisp/progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
2010-12-10 20:00:25 +00:00
|
|
|
|
(set (make-local-variable 'imenu-generic-expression)
|
|
|
|
|
icon-imenu-generic-expression)
|
1997-03-30 21:50:02 +00:00
|
|
|
|
;; hideshow support
|
|
|
|
|
;; we start from the assertion that `hs-special-modes-alist' is autoloaded.
|
1997-06-16 23:13:12 +00:00
|
|
|
|
(unless (assq 'icon-mode hs-special-modes-alist)
|
|
|
|
|
(setq hs-special-modes-alist
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(cons '(icon-mode "\\<procedure\\>" "\\<end\\>" nil
|
1997-06-16 23:13:12 +00:00
|
|
|
|
icon-forward-sexp-function)
|
Derive from prog-mode, use derived-mode-p, and fix up various
minor style issues in lisp/progmodes.
* lisp/progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
(vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
make-local-hook.
* lisp/progmodes/sh-script.el (sh-require-final-newline): Remove.
(sh-set-shell): Don't set require-final-newline since it's already done
by prog-mode.
* lisp/progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
since we never set it.
* lisp/progmodes/ebrowse.el (ebrowse-set-tree-indentation):
Use read-string and standard prompt.
* lisp/progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
* lisp/progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
(meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
(meta-common-mode-map): Rename from meta-mode-map.
Remove C-m binding, which is a user preference, not mode specific.
(meta-common-mode): New major mode; replace meta-common-initialization.
* lisp/progmodes/js.el (js-mode): Call syntax-propertize rather than messing
around with font-lock.
* lisp/progmodes/etags.el (select-tags-table-mode):
Derive from special-mode.
* lisp/progmodes/octave-mod.el (octave-mode):
* lisp/progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
(gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
(gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
Let define-derived-mode do its job.
* lisp/progmodes/cpp.el (cpp-edit-mode-map):
Move initialization into declaration.
(cpp-edit-mode): Use define-derived-mode.
(cpp-edit-load): Use derived-mode-p.
* lisp/progmodes/mixal-mode.el (mixal-mode):
* lisp/progmodes/f90.el (f90-mode):
* lisp/progmodes/cfengine.el (cfengine-mode): Don't bother setting
require-final-newline since prog-mode does it already.
* lisp/progmodes/cc-cmds.el (c-update-modeline): Use match-string.
* lisp/progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
* lisp/progmodes/antlr-mode.el: Require cc-mode upfront.
(antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
the declaration.
(antlr-directory-dependencies, antlr-show-makefile-rules):
Use derived-mode-p.
(antlr-language-option): Don't assume point-min==1.
(antlr-mode): Use define-derived-mode.
* lisp/progmodes/ada-mode.el: Use derived-mode-p.
(ada-mode): Use define-derived-mode.
Use hack-local-variables-hook.
* lisp/progmodes/vhdl-mode.el (vhdl-mode):
* lisp/progmodes/verilog-mode.el (verilog-mode):
* lisp/progmodes/vera-mode.el (vera-mode):
* lisp/progmodes/sql.el (sql-mode):
* lisp/progmodes/scheme.el (scheme-mode):
* lisp/progmodes/perl-mode.el (perl-mode):
* lisp/progmodes/octave-inf.el (inferior-octave-mode):
* lisp/progmodes/autoconf.el (autoconf-mode):
* lisp/progmodes/m4-mode.el (m4-mode):
* lisp/progmodes/inf-lisp.el (inferior-lisp-mode):
* lisp/progmodes/idlwave.el (idlwave-mode):
* lisp/progmodes/icon.el (icon-mode):
* lisp/progmodes/idlw-help.el (idlwave-help-mode):
* lisp/progmodes/dcl-mode.el (dcl-mode):
* lisp/progmodes/idlw-shell.el (idlwave-shell-mode):
* lisp/progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
(ebrowse-member-mode, ebrowse-electric-position-mode):
Use define-derived-mode.
* lisp/progmodes/xscheme.el (xscheme-start)
(local-set-scheme-interaction-buffer, scheme-interaction-mode):
* lisp/progmodes/which-func.el (which-function):
* lisp/progmodes/vhdl-mode.el (vhdl-set-style):
* lisp/progmodes/verilog-mode.el (verilog-set-compile-command)
(verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
(verilog-set-define, verilog-auto-reeval-locals):
* lisp/progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
* lisp/progmodes/simula.el (simula-mode):
* lisp/progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
* lisp/progmodes/python.el (python-check, python-mode):
* lisp/progmodes/prolog.el (prolog-mode-variables):
* lisp/progmodes/gud.el (gud-tooltip-activate-mouse-motions):
* lisp/progmodes/ebrowse.el (ebrowse-view-file-other-frame):
* lisp/progmodes/delphi.el (delphi-mode):
* lisp/progmodes/cc-styles.el (c-setup-paragraph-variables):
* lisp/progmodes/cc-mode.el (c-basic-common-init, c-common-init)
(c-font-lock-init): Move make-local-variable to their setq.
* lisp/progmodes/xscheme.el (exit-scheme-interaction-mode)
(xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
(xscheme-debugger-mode-p, xscheme-send-string-1):
* lisp/progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
(tcl-load-file, tcl-restart-with-file):
* lisp/progmodes/ps-mode.el (ps-run-running):
* lisp/progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
* lisp/progmodes/js.el (js--get-all-known-symbols):
* lisp/progmodes/inf-lisp.el (inferior-lisp-proc):
* lisp/progmodes/idlwave.el (idlwave-beginning-of-statement)
(idlwave-template, idlwave-update-buffer-routine-info)
(idlwave-update-current-buffer-info)
(idlwave-get-routine-info-from-buffers, idlwave-choose)
(idlwave-scan-class-info, idlwave-fix-keywords)
(idlwave-list-buffer-load-path-shadows):
* lisp/progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
(idlwave-toolbar-remove):
* lisp/progmodes/idlw-shell.el (idlwave-shell-save-and-action)
(idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
(idlwave-shell-menu-def):
* lisp/progmodes/idlw-complete-structtag.el
(idlwave-prepare-structure-tag-completion):
* lisp/progmodes/gud.el (gud-set-buffer):
* lisp/progmodes/f90.el (f90-backslash-not-special):
* lisp/progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
2010-12-10 20:00:25 +00:00
|
|
|
|
hs-special-modes-alist))))
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
1991-03-06 21:14:11 +00:00
|
|
|
|
;; This is used by indent-for-comment to decide how much to
|
|
|
|
|
;; indent a comment in Icon code based on its context.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
(defun icon-comment-indent ()
|
2000-11-03 23:05:16 +00:00
|
|
|
|
(if (looking-at "^#") 0 comment-column))
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
|
|
(defun electric-icon-brace (arg)
|
|
|
|
|
"Insert character and correct line's indentation."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(let (insertpos)
|
|
|
|
|
(if (and (not arg)
|
|
|
|
|
(eolp)
|
|
|
|
|
(or (save-excursion
|
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
|
(bolp))
|
|
|
|
|
(if icon-auto-newline
|
|
|
|
|
(progn (icon-indent-line) (newline) t)
|
|
|
|
|
nil)))
|
|
|
|
|
(progn
|
2009-01-09 04:23:38 +00:00
|
|
|
|
(insert last-command-event)
|
1989-10-31 16:00:07 +00:00
|
|
|
|
(icon-indent-line)
|
|
|
|
|
(if icon-auto-newline
|
|
|
|
|
(progn
|
|
|
|
|
(newline)
|
|
|
|
|
;; (newline) may have done auto-fill
|
|
|
|
|
(setq insertpos (- (point) 2))
|
|
|
|
|
(icon-indent-line)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if insertpos (goto-char (1+ insertpos)))
|
|
|
|
|
(delete-char -1))))
|
|
|
|
|
(if insertpos
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char insertpos)
|
|
|
|
|
(self-insert-command (prefix-numeric-value arg)))
|
|
|
|
|
(self-insert-command (prefix-numeric-value arg)))))
|
|
|
|
|
|
|
|
|
|
(defun icon-indent-command (&optional whole-exp)
|
|
|
|
|
"Indent current line as Icon code, or in some cases insert a tab character.
|
1991-03-06 21:14:11 +00:00
|
|
|
|
If `icon-tab-always-indent' is non-nil (the default), always indent current
|
|
|
|
|
line. Otherwise, indent the current line only if point is at the left margin
|
1989-10-31 16:00:07 +00:00
|
|
|
|
or in the line's indentation; otherwise insert a tab.
|
|
|
|
|
|
1991-03-06 21:14:11 +00:00
|
|
|
|
A numeric argument, regardless of its value, means indent rigidly all the
|
|
|
|
|
lines of the expression starting after point so that this line becomes
|
|
|
|
|
properly indented. The relative indentation among the lines of the
|
|
|
|
|
expression are preserved."
|
2004-02-16 19:35:20 +00:00
|
|
|
|
(interactive "P")
|
1989-10-31 16:00:07 +00:00
|
|
|
|
(if whole-exp
|
|
|
|
|
;; If arg, always indent this line as Icon
|
|
|
|
|
;; and shift remaining lines of expression the same amount.
|
|
|
|
|
(let ((shift-amt (icon-indent-line))
|
|
|
|
|
beg end)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if icon-tab-always-indent
|
|
|
|
|
(beginning-of-line))
|
|
|
|
|
(setq beg (point))
|
|
|
|
|
(forward-sexp 1)
|
|
|
|
|
(setq end (point))
|
|
|
|
|
(goto-char beg)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(setq beg (point)))
|
|
|
|
|
(if (> end beg)
|
|
|
|
|
(indent-code-rigidly beg end shift-amt "#")))
|
|
|
|
|
(if (and (not icon-tab-always-indent)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
|
(not (bolp))))
|
|
|
|
|
(insert-tab)
|
|
|
|
|
(icon-indent-line))))
|
|
|
|
|
|
|
|
|
|
(defun icon-indent-line ()
|
|
|
|
|
"Indent current line as Icon code.
|
|
|
|
|
Return the amount the indentation changed by."
|
|
|
|
|
(let ((indent (calculate-icon-indent nil))
|
|
|
|
|
beg shift-amt
|
|
|
|
|
(case-fold-search nil)
|
|
|
|
|
(pos (- (point-max) (point))))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq beg (point))
|
|
|
|
|
(cond ((eq indent nil)
|
|
|
|
|
(setq indent (current-indentation)))
|
2000-08-18 06:29:14 +00:00
|
|
|
|
((looking-at "^#")
|
1989-10-31 16:00:07 +00:00
|
|
|
|
(setq indent 0))
|
|
|
|
|
(t
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(if (listp indent) (setq indent (car indent)))
|
|
|
|
|
(cond ((and (looking-at "else\\b")
|
|
|
|
|
(not (looking-at "else\\s_")))
|
|
|
|
|
(setq indent (save-excursion
|
|
|
|
|
(icon-backward-to-start-of-if)
|
|
|
|
|
(current-indentation))))
|
|
|
|
|
((or (= (following-char) ?})
|
|
|
|
|
(looking-at "end\\b"))
|
|
|
|
|
(setq indent (- indent icon-indent-level)))
|
|
|
|
|
((= (following-char) ?{)
|
|
|
|
|
(setq indent (+ indent icon-brace-offset))))))
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(setq shift-amt (- indent (current-column)))
|
|
|
|
|
(if (zerop shift-amt)
|
|
|
|
|
(if (> (- (point-max) pos) (point))
|
|
|
|
|
(goto-char (- (point-max) pos)))
|
|
|
|
|
(delete-region beg (point))
|
|
|
|
|
(indent-to indent)
|
|
|
|
|
;; If initial point was within line's indentation,
|
|
|
|
|
;; position after the indentation. Else stay at same point in text.
|
|
|
|
|
(if (> (- (point-max) pos) (point))
|
|
|
|
|
(goto-char (- (point-max) pos))))
|
|
|
|
|
shift-amt))
|
|
|
|
|
|
|
|
|
|
(defun calculate-icon-indent (&optional parse-start)
|
|
|
|
|
"Return appropriate indentation for current line as Icon code.
|
|
|
|
|
In usual case returns an integer: the column to indent to.
|
|
|
|
|
Returns nil if line starts inside a string, t if in a comment."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(let ((indent-point (point))
|
|
|
|
|
(case-fold-search nil)
|
|
|
|
|
state
|
|
|
|
|
containing-sexp
|
|
|
|
|
toplevel)
|
|
|
|
|
(if parse-start
|
|
|
|
|
(goto-char parse-start)
|
|
|
|
|
(setq toplevel (beginning-of-icon-defun)))
|
|
|
|
|
(while (< (point) indent-point)
|
|
|
|
|
(setq parse-start (point))
|
|
|
|
|
(setq state (parse-partial-sexp (point) indent-point 0))
|
|
|
|
|
(setq containing-sexp (car (cdr state))))
|
|
|
|
|
(cond ((or (nth 3 state) (nth 4 state))
|
|
|
|
|
;; return nil or t if should not change this line
|
|
|
|
|
(nth 4 state))
|
|
|
|
|
((and containing-sexp
|
|
|
|
|
(/= (char-after containing-sexp) ?{))
|
|
|
|
|
;; line is expression, not statement:
|
|
|
|
|
;; indent to just after the surrounding open.
|
|
|
|
|
(goto-char (1+ containing-sexp))
|
|
|
|
|
(current-column))
|
|
|
|
|
(t
|
|
|
|
|
(if toplevel
|
|
|
|
|
;; Outside any procedures.
|
|
|
|
|
(progn (icon-backward-to-noncomment (point-min))
|
|
|
|
|
(if (icon-is-continuation-line)
|
|
|
|
|
icon-continued-statement-offset 0))
|
|
|
|
|
;; Statement level.
|
|
|
|
|
(if (null containing-sexp)
|
|
|
|
|
(progn (beginning-of-icon-defun)
|
|
|
|
|
(setq containing-sexp (point))))
|
|
|
|
|
(goto-char indent-point)
|
|
|
|
|
;; Is it a continuation or a new statement?
|
|
|
|
|
;; Find previous non-comment character.
|
|
|
|
|
(icon-backward-to-noncomment containing-sexp)
|
|
|
|
|
;; Now we get the answer.
|
|
|
|
|
(if (icon-is-continuation-line)
|
|
|
|
|
;; This line is continuation of preceding line's statement;
|
|
|
|
|
;; indent icon-continued-statement-offset more than the
|
|
|
|
|
;; first line of the statement.
|
|
|
|
|
(progn
|
|
|
|
|
(icon-backward-to-start-of-continued-exp containing-sexp)
|
|
|
|
|
(+ icon-continued-statement-offset (current-column)
|
|
|
|
|
(if (save-excursion (goto-char indent-point)
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(eq (following-char) ?{))
|
|
|
|
|
icon-continued-brace-offset 0)))
|
|
|
|
|
;; This line starts a new statement.
|
|
|
|
|
;; Position following last unclosed open.
|
|
|
|
|
(goto-char containing-sexp)
|
|
|
|
|
;; Is line first statement after an open-brace?
|
|
|
|
|
(or
|
|
|
|
|
;; If no, find that first statement and indent like it.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if (looking-at "procedure\\s ")
|
|
|
|
|
(forward-sexp 3)
|
|
|
|
|
(forward-char 1))
|
|
|
|
|
(while (progn (skip-chars-forward " \t\n")
|
|
|
|
|
(looking-at "#"))
|
|
|
|
|
;; Skip over comments following openbrace.
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
;; The first following code counts
|
|
|
|
|
;; if it is before the line we want to indent.
|
|
|
|
|
(and (< (point) indent-point)
|
|
|
|
|
(current-column)))
|
|
|
|
|
;; If no previous statement,
|
|
|
|
|
;; indent it relative to line brace is on.
|
|
|
|
|
;; For open brace in column zero, don't let statement
|
|
|
|
|
;; start there too. If icon-indent-level is zero,
|
|
|
|
|
;; use icon-brace-offset + icon-continued-statement-offset
|
|
|
|
|
;; instead.
|
|
|
|
|
;; For open-braces not the first thing in a line,
|
|
|
|
|
;; add in icon-brace-imaginary-offset.
|
|
|
|
|
(+ (if (and (bolp) (zerop icon-indent-level))
|
|
|
|
|
(+ icon-brace-offset
|
|
|
|
|
icon-continued-statement-offset)
|
|
|
|
|
icon-indent-level)
|
|
|
|
|
;; Move back over whitespace before the openbrace.
|
|
|
|
|
;; If openbrace is not first nonwhite thing on the line,
|
|
|
|
|
;; add the icon-brace-imaginary-offset.
|
|
|
|
|
(progn (skip-chars-backward " \t")
|
|
|
|
|
(if (bolp) 0 icon-brace-imaginary-offset))
|
|
|
|
|
;; Get initial indentation of the line we are on.
|
|
|
|
|
(current-indentation))))))))))
|
|
|
|
|
|
|
|
|
|
;; List of words to check for as the last thing on a line.
|
|
|
|
|
;; If cdr is t, next line is a continuation of the same statement,
|
|
|
|
|
;; if cdr is nil, next line starts a new (possibly indented) statement.
|
|
|
|
|
|
|
|
|
|
(defconst icon-resword-alist
|
|
|
|
|
'(("by" . t) ("case" . t) ("create") ("do") ("dynamic" . t) ("else")
|
|
|
|
|
("every" . t) ("if" . t) ("global" . t) ("initial" . t)
|
|
|
|
|
("link" . t) ("local" . t) ("of") ("record" . t) ("repeat" . t)
|
|
|
|
|
("static" . t) ("then") ("to" . t) ("until" . t) ("while" . t)))
|
|
|
|
|
|
|
|
|
|
(defun icon-is-continuation-line ()
|
|
|
|
|
(let* ((ch (preceding-char))
|
|
|
|
|
(ch-syntax (char-syntax ch)))
|
|
|
|
|
(if (eq ch-syntax ?w)
|
|
|
|
|
(assoc (buffer-substring
|
|
|
|
|
(progn (forward-word -1) (point))
|
|
|
|
|
(progn (forward-word 1) (point)))
|
|
|
|
|
icon-resword-alist)
|
2000-08-18 06:29:14 +00:00
|
|
|
|
(not (memq ch '(0 ?\; ?\} ?\{ ?\) ?\] ?\" ?\' ?\# ?\, ?\. ?\n))))))
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
|
|
(defun icon-backward-to-noncomment (lim)
|
|
|
|
|
(let (opoint stop)
|
|
|
|
|
(while (not stop)
|
|
|
|
|
(skip-chars-backward " \t\n\f" lim)
|
|
|
|
|
(setq opoint (point))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(if (and (nth 5 (parse-partial-sexp (point) opoint))
|
|
|
|
|
(< lim (point)))
|
|
|
|
|
(search-backward "#")
|
|
|
|
|
(setq stop t)))))
|
|
|
|
|
|
|
|
|
|
(defun icon-backward-to-start-of-continued-exp (lim)
|
|
|
|
|
(if (memq (preceding-char) '(?\) ?\]))
|
|
|
|
|
(forward-sexp -1))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(cond
|
|
|
|
|
((<= (point) lim) (goto-char (1+ lim)))
|
|
|
|
|
((not (icon-is-continued-line)) 0)
|
|
|
|
|
((and (eq (char-syntax (following-char)) ?w)
|
|
|
|
|
(cdr
|
|
|
|
|
(assoc (buffer-substring (point)
|
|
|
|
|
(save-excursion (forward-word 1) (point)))
|
|
|
|
|
icon-resword-alist))) 0)
|
|
|
|
|
(t (end-of-line 0) (icon-backward-to-start-of-continued-exp lim))))
|
|
|
|
|
|
|
|
|
|
(defun icon-is-continued-line ()
|
|
|
|
|
(save-excursion
|
|
|
|
|
(end-of-line 0)
|
|
|
|
|
(icon-is-continuation-line)))
|
|
|
|
|
|
|
|
|
|
(defun icon-backward-to-start-of-if (&optional limit)
|
1991-03-06 21:14:11 +00:00
|
|
|
|
"Move to the start of the last \"unbalanced\" if."
|
1989-10-31 16:00:07 +00:00
|
|
|
|
(or limit (setq limit (save-excursion (beginning-of-icon-defun) (point))))
|
|
|
|
|
(let ((if-level 1)
|
|
|
|
|
(case-fold-search nil))
|
|
|
|
|
(while (not (zerop if-level))
|
|
|
|
|
(backward-sexp 1)
|
|
|
|
|
(cond ((looking-at "else\\b")
|
|
|
|
|
(setq if-level (1+ if-level)))
|
|
|
|
|
((looking-at "if\\b")
|
|
|
|
|
(setq if-level (1- if-level)))
|
|
|
|
|
((< (point) limit)
|
|
|
|
|
(setq if-level 0)
|
|
|
|
|
(goto-char limit))))))
|
|
|
|
|
|
|
|
|
|
(defun mark-icon-function ()
|
|
|
|
|
"Put mark at end of Icon function, point at beginning."
|
|
|
|
|
(interactive)
|
|
|
|
|
(push-mark (point))
|
|
|
|
|
(end-of-icon-defun)
|
|
|
|
|
(push-mark (point))
|
|
|
|
|
(beginning-of-line 0)
|
|
|
|
|
(beginning-of-icon-defun))
|
|
|
|
|
|
|
|
|
|
(defun beginning-of-icon-defun ()
|
|
|
|
|
"Go to the start of the enclosing procedure; return t if at top level."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (re-search-backward "^procedure\\s \\|^end[ \t\n]" (point-min) 'move)
|
|
|
|
|
(looking-at "e")
|
|
|
|
|
t))
|
|
|
|
|
|
|
|
|
|
(defun end-of-icon-defun ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (not (bobp)) (forward-char -1))
|
|
|
|
|
(re-search-forward "\\(\\s \\|^\\)end\\(\\s \\|$\\)" (point-max) 'move)
|
|
|
|
|
(forward-word -1)
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
|
|
|
|
|
(defun indent-icon-exp ()
|
|
|
|
|
"Indent each line of the Icon grouping following point."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((indent-stack (list nil))
|
|
|
|
|
(contain-stack (list (point)))
|
|
|
|
|
(case-fold-search nil)
|
2011-04-22 18:44:26 +00:00
|
|
|
|
outer-loop-done inner-loop-done state ostate
|
|
|
|
|
this-indent last-depth
|
|
|
|
|
at-else at-brace
|
1989-10-31 16:00:07 +00:00
|
|
|
|
(opoint (point))
|
|
|
|
|
(next-depth 0))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(forward-sexp 1))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(setq outer-loop-done nil)
|
|
|
|
|
(while (and (not (eobp)) (not outer-loop-done))
|
|
|
|
|
(setq last-depth next-depth)
|
|
|
|
|
;; Compute how depth changes over this line
|
|
|
|
|
;; plus enough other lines to get to one that
|
|
|
|
|
;; does not end inside a comment or string.
|
|
|
|
|
;; Meanwhile, do appropriate indentation on comment lines.
|
1997-05-27 17:02:18 +00:00
|
|
|
|
(setq inner-loop-done nil)
|
|
|
|
|
(while (and (not inner-loop-done)
|
1989-10-31 16:00:07 +00:00
|
|
|
|
(not (and (eobp) (setq outer-loop-done t))))
|
|
|
|
|
(setq ostate state)
|
|
|
|
|
(setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
|
|
|
|
|
nil nil state))
|
|
|
|
|
(setq next-depth (car state))
|
|
|
|
|
(if (or (nth 4 ostate))
|
|
|
|
|
(icon-indent-line))
|
|
|
|
|
(if (or (nth 3 state))
|
|
|
|
|
(forward-line 1)
|
1997-05-27 17:02:18 +00:00
|
|
|
|
(setq inner-loop-done t)))
|
1989-10-31 16:00:07 +00:00
|
|
|
|
(if (<= next-depth 0)
|
|
|
|
|
(setq outer-loop-done t))
|
|
|
|
|
(if outer-loop-done
|
|
|
|
|
nil
|
|
|
|
|
(while (> last-depth next-depth)
|
|
|
|
|
(setq indent-stack (cdr indent-stack)
|
|
|
|
|
contain-stack (cdr contain-stack)
|
|
|
|
|
last-depth (1- last-depth)))
|
|
|
|
|
(while (< last-depth next-depth)
|
|
|
|
|
(setq indent-stack (cons nil indent-stack)
|
|
|
|
|
contain-stack (cons nil contain-stack)
|
|
|
|
|
last-depth (1+ last-depth)))
|
|
|
|
|
(if (null (car contain-stack))
|
|
|
|
|
(setcar contain-stack (or (car (cdr state))
|
|
|
|
|
(save-excursion (forward-sexp -1)
|
|
|
|
|
(point)))))
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(if (eolp)
|
|
|
|
|
nil
|
|
|
|
|
(if (and (car indent-stack)
|
|
|
|
|
(>= (car indent-stack) 0))
|
|
|
|
|
;; Line is on an existing nesting level.
|
|
|
|
|
;; Lines inside parens are handled specially.
|
|
|
|
|
(if (/= (char-after (car contain-stack)) ?{)
|
|
|
|
|
(setq this-indent (car indent-stack))
|
|
|
|
|
;; Line is at statement level.
|
|
|
|
|
;; Is it a new statement? Is it an else?
|
|
|
|
|
;; Find last non-comment character before this line
|
|
|
|
|
(save-excursion
|
|
|
|
|
(setq at-else (looking-at "else\\W"))
|
|
|
|
|
(setq at-brace (= (following-char) ?{))
|
|
|
|
|
(icon-backward-to-noncomment opoint)
|
|
|
|
|
(if (icon-is-continuation-line)
|
|
|
|
|
;; Preceding line did not end in comma or semi;
|
|
|
|
|
;; indent this line icon-continued-statement-offset
|
|
|
|
|
;; more than previous.
|
|
|
|
|
(progn
|
|
|
|
|
(icon-backward-to-start-of-continued-exp (car contain-stack))
|
|
|
|
|
(setq this-indent
|
|
|
|
|
(+ icon-continued-statement-offset (current-column)
|
|
|
|
|
(if at-brace icon-continued-brace-offset 0))))
|
|
|
|
|
;; Preceding line ended in comma or semi;
|
|
|
|
|
;; use the standard indent for this level.
|
|
|
|
|
(if at-else
|
|
|
|
|
(progn (icon-backward-to-start-of-if opoint)
|
|
|
|
|
(setq this-indent (current-indentation)))
|
|
|
|
|
(setq this-indent (car indent-stack))))))
|
|
|
|
|
;; Just started a new nesting level.
|
|
|
|
|
;; Compute the standard indent for this level.
|
|
|
|
|
(let ((val (calculate-icon-indent
|
|
|
|
|
(if (car indent-stack)
|
|
|
|
|
(- (car indent-stack))))))
|
|
|
|
|
(setcar indent-stack
|
|
|
|
|
(setq this-indent val))))
|
|
|
|
|
;; Adjust line indentation according to its contents
|
|
|
|
|
(if (or (= (following-char) ?})
|
|
|
|
|
(looking-at "end\\b"))
|
|
|
|
|
(setq this-indent (- this-indent icon-indent-level)))
|
|
|
|
|
(if (= (following-char) ?{)
|
|
|
|
|
(setq this-indent (+ this-indent icon-brace-offset)))
|
|
|
|
|
;; Put chosen indentation into effect.
|
|
|
|
|
(or (= (current-column) this-indent)
|
|
|
|
|
(progn
|
|
|
|
|
(delete-region (point) (progn (beginning-of-line) (point)))
|
|
|
|
|
(indent-to this-indent)))
|
|
|
|
|
;; Indent any comment following the text.
|
|
|
|
|
(or (looking-at comment-start-skip)
|
Use line-end-position rather than end-of-line, etc.
* textmodes/texnfo-upd.el (texinfo-start-menu-description)
(texinfo-update-menu-region-beginning, texinfo-menu-first-node)
(texinfo-delete-existing-pointers, texinfo-find-pointer)
(texinfo-clean-up-node-line, texinfo-insert-node-lines)
(texinfo-multiple-files-update):
* textmodes/table.el (table--probe-cell-left-up)
(table--probe-cell-right-bottom):
* textmodes/picture.el (picture-tab-search):
* textmodes/page-ext.el (pages-copy-header-and-position)
(pages-directory-for-addresses):
* progmodes/vera-mode.el (vera-get-offset):
* progmodes/simula.el (simula-calculate-indent):
* progmodes/python.el (python-pdbtrack-overlay-arrow):
* progmodes/prolog.el (end-of-prolog-clause):
* progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
* progmodes/icon.el (indent-icon-exp):
* progmodes/etags.el (tag-re-match-p):
* progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
* progmodes/ebnf2ps.el (ebnf-begin-file):
* progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-save-local-variable):
* play/life.el (life-setup):
* play/gametree.el (gametree-looking-at-ply):
* nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* mail/sendmail.el (mail-mode-auto-fill):
* emacs-lisp/lisp-mode.el (calculate-lisp-indent):
* emacs-lisp/edebug.el (edebug-overlay-arrow):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
* woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
(woman-tab-to-tab-stop, WoMan-warn-ignored):
* type-break.el (type-break-file-keystroke-count):
* term.el (term-replace-by-expanded-history-before-point)
(term-skip-prompt, term-extract-string):
* speedbar.el (speedbar-edit-line, speedbar-expand-line)
(speedbar-contract-line, speedbar-toggle-line-expansion)
(speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
(speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
* sort.el (sort-skip-fields):
* skeleton.el (skeleton-internal-list):
* simple.el (line-move-finish, line-move-to-column):
* shell.el (shell-forward-command):
* misc.el (copy-from-above-command):
* makesum.el (double-column):
* ebuff-menu.el (electric-buffer-update-highlight):
* dired.el (dired-move-to-end-of-filename):
* dframe.el (dframe-popup-kludge):
* bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
* arc-mode.el (archive-get-lineno):
Use line-end-position and line-beginning-position.
* net/ange-ftp.el, progmodes/hideif.el, reposition.el:
Same, but only in comments.
2010-11-06 20:23:42 +00:00
|
|
|
|
(if (re-search-forward comment-start-skip (line-end-position) t)
|
1989-10-31 16:00:07 +00:00
|
|
|
|
(progn (indent-for-comment) (beginning-of-line))))))))))
|
|
|
|
|
|
1997-03-30 21:50:02 +00:00
|
|
|
|
(defconst icon-font-lock-keywords-1
|
|
|
|
|
(eval-when-compile
|
|
|
|
|
(list
|
|
|
|
|
;; Fontify procedure name definitions.
|
1997-06-17 19:34:56 +00:00
|
|
|
|
'("^[ \t]*\\(procedure\\)\\>[ \t]*\\(\\sw+\\)?"
|
1997-03-30 21:50:02 +00:00
|
|
|
|
(1 font-lock-builtin-face) (2 font-lock-function-name-face nil t))))
|
1997-06-16 23:13:12 +00:00
|
|
|
|
"Subdued level highlighting for Icon mode.")
|
1997-03-30 21:50:02 +00:00
|
|
|
|
|
|
|
|
|
(defconst icon-font-lock-keywords-2
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(append
|
1997-03-30 21:50:02 +00:00
|
|
|
|
icon-font-lock-keywords-1
|
|
|
|
|
(eval-when-compile
|
|
|
|
|
(list
|
|
|
|
|
;; Fontify all type specifiers.
|
2000-11-03 23:05:16 +00:00
|
|
|
|
(cons
|
|
|
|
|
(regexp-opt '("null" "string" "co-expression" "table" "integer"
|
|
|
|
|
"cset" "set" "real" "file" "list") 'words)
|
1997-06-08 20:20:56 +00:00
|
|
|
|
'font-lock-type-face)
|
1997-03-30 21:50:02 +00:00
|
|
|
|
;; Fontify all keywords.
|
1997-06-08 20:20:56 +00:00
|
|
|
|
;;
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(cons
|
|
|
|
|
(regexp-opt
|
|
|
|
|
'("break" "do" "next" "repeat" "to" "by" "else" "if" "not" "return"
|
|
|
|
|
"until" "case" "of" "while" "create" "every" "suspend" "default"
|
2000-11-03 23:05:16 +00:00
|
|
|
|
"fail" "record" "then") 'words)
|
1997-06-08 20:20:56 +00:00
|
|
|
|
'font-lock-keyword-face)
|
2003-02-04 13:24:35 +00:00
|
|
|
|
;; "end" "initial"
|
2000-11-03 23:05:16 +00:00
|
|
|
|
(cons (regexp-opt '("end" "initial") 'words)
|
1997-06-08 20:20:56 +00:00
|
|
|
|
'font-lock-builtin-face)
|
1997-03-30 21:50:02 +00:00
|
|
|
|
;; Fontify all system variables.
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(cons
|
|
|
|
|
(regexp-opt
|
|
|
|
|
'("&allocated" "&ascii" "&clock" "&col" "&collections" "&column"
|
1997-06-08 20:20:56 +00:00
|
|
|
|
"&control" "&cset" "¤t" "&date" "&dateline" "&digits" "&dump"
|
2003-02-04 13:24:35 +00:00
|
|
|
|
"&e" "&error" "&errornumber" "&errortext" "&errorvalue" "&errout"
|
|
|
|
|
"&eventcode" "&eventsource" "&eventvalue" "&fail" "&features"
|
|
|
|
|
"&file" "&host" "&input" "&interval" "&lcase" "&ldrag" "&letters"
|
|
|
|
|
"&level" "&line" "&lpress" "&lrelease" "&main" "&mdrag" "&meta"
|
|
|
|
|
"&mpress" "&mrelease" "&null" "&output" "&phi" "&pi" "&pos"
|
|
|
|
|
"&progname" "&random" "&rdrag" "®ions" "&resize" "&row"
|
|
|
|
|
"&rpress" "&rrelease" "&shift" "&source" "&storage" "&subject"
|
1997-06-08 20:20:56 +00:00
|
|
|
|
"&time" "&trace" "&ucase" "&version" "&window" "&x" "&y") t)
|
1998-02-20 14:58:27 +00:00
|
|
|
|
'font-lock-constant-face)
|
1997-06-08 20:20:56 +00:00
|
|
|
|
(cons ;; global local static declarations and link files
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(concat
|
1997-06-08 20:20:56 +00:00
|
|
|
|
"^[ \t]*"
|
|
|
|
|
(regexp-opt '("global" "link" "local" "static") t)
|
|
|
|
|
"\\(\\sw+\\>\\)*")
|
|
|
|
|
'((1 font-lock-builtin-face)
|
|
|
|
|
(font-lock-match-c-style-declaration-item-and-skip-to-next
|
|
|
|
|
(goto-char (or (match-beginning 2) (match-end 1))) nil
|
|
|
|
|
(1 (if (match-beginning 2)
|
|
|
|
|
font-lock-function-name-face
|
|
|
|
|
font-lock-variable-name-face)))))
|
|
|
|
|
|
1997-06-17 19:34:56 +00:00
|
|
|
|
(cons ;; $define $elif $ifdef $ifndef $undef
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(concat "^"
|
1997-06-16 23:13:12 +00:00
|
|
|
|
(regexp-opt'("$define" "$elif" "$ifdef" "$ifndef" "$undef") t)
|
|
|
|
|
"\\>[ \t]*\\([^ \t\n]+\\)?")
|
2003-02-04 13:24:35 +00:00
|
|
|
|
'((1 font-lock-builtin-face)
|
1997-06-08 20:20:56 +00:00
|
|
|
|
(4 font-lock-variable-name-face nil t)))
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(cons ;; $dump $endif $else $include
|
|
|
|
|
(concat
|
1997-06-08 20:20:56 +00:00
|
|
|
|
"^" (regexp-opt'("$dump" "$endif" "$else" "$include") t) "\\>" )
|
|
|
|
|
'font-lock-builtin-face)
|
|
|
|
|
(cons ;; $warning $error
|
1997-06-16 23:13:12 +00:00
|
|
|
|
(concat "^" (regexp-opt '("$warning" "$error") t)
|
|
|
|
|
"\\>[ \t]*\\(.+\\)?")
|
|
|
|
|
'((1 font-lock-builtin-face) (3 font-lock-warning-face nil t))))))
|
|
|
|
|
"Gaudy level highlighting for Icon mode.")
|
1997-03-30 21:50:02 +00:00
|
|
|
|
|
|
|
|
|
(defvar icon-font-lock-keywords icon-font-lock-keywords-1
|
|
|
|
|
"Default expressions to highlight in `icon-mode'.")
|
|
|
|
|
|
|
|
|
|
;;;used by hs-minor-mode
|
|
|
|
|
(defun icon-forward-sexp-function (arg)
|
1997-05-27 14:50:08 +00:00
|
|
|
|
(if (< arg 0)
|
|
|
|
|
(beginning-of-icon-defun)
|
|
|
|
|
(end-of-icon-defun)
|
|
|
|
|
(forward-char -1)))
|
1997-03-30 21:50:02 +00:00
|
|
|
|
|
1997-06-22 18:32:34 +00:00
|
|
|
|
(provide 'icon)
|
|
|
|
|
|
1992-05-30 23:12:08 +00:00
|
|
|
|
;;; icon.el ends here
|