annotate lisp/modes/icon.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children ac2d302a0011
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; icon.el --- mode for editing Icon code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1989 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author: Chris Smith <csmith@convex.com>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Created: 15 Feb 89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Keywords: languages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;; A major mode for editing the Icon programming language.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 (defvar icon-mode-abbrev-table nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 "Abbrev table in use in Icon-mode buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 (define-abbrev-table 'icon-mode-abbrev-table ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (defvar icon-mode-map ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 "Keymap used in Icon mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (if icon-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (setq icon-mode-map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 (define-key icon-mode-map "{" 'electric-icon-brace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (define-key icon-mode-map "}" 'electric-icon-brace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (define-key icon-mode-map "\e\C-h" 'mark-icon-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 (define-key icon-mode-map "\e\C-a" 'beginning-of-icon-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (define-key icon-mode-map "\e\C-e" 'end-of-icon-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (define-key icon-mode-map "\e\C-q" 'indent-icon-exp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 (define-key icon-mode-map "\177" 'backward-delete-char-untabify)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (define-key icon-mode-map "\t" 'icon-indent-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (defvar icon-mode-syntax-table nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 "Syntax table in use in Icon-mode buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (if icon-mode-syntax-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (setq icon-mode-syntax-table (make-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (modify-syntax-entry ?\\ "\\" icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (modify-syntax-entry ?# "<" icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (modify-syntax-entry ?\n ">" icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (modify-syntax-entry ?$ "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (modify-syntax-entry ?/ "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (modify-syntax-entry ?* "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (modify-syntax-entry ?+ "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (modify-syntax-entry ?- "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (modify-syntax-entry ?= "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (modify-syntax-entry ?% "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (modify-syntax-entry ?< "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (modify-syntax-entry ?> "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (modify-syntax-entry ?& "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (modify-syntax-entry ?| "." icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (modify-syntax-entry ?\' "\"" icon-mode-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (defvar icon-indent-level 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 "*Indentation of Icon statements with respect to containing block.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defvar icon-brace-imaginary-offset 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 "*Imagined indentation of a Icon open brace that actually follows a statement.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (defvar icon-brace-offset 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 "*Extra indentation for braces, compared with other text in same context.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (defvar icon-continued-statement-offset 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 "*Extra indent for lines not starting new statements.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (defvar icon-continued-brace-offset 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 "*Extra indent for substatements that start with open-braces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 This is in addition to icon-continued-statement-offset.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (defvar icon-auto-newline nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 "*Non-nil means automatically newline before and after braces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 inserted in Icon code.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (defvar icon-tab-always-indent t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 "*Non-nil means TAB in Icon mode should always reindent the current line,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 regardless of where in the line point is when the TAB command is used.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (defun icon-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 "Major mode for editing Icon code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Expression and list commands understand all Icon brackets.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Tab indents for Icon code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 Paragraphs are separated by blank lines only.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 Delete converts tabs to spaces as it moves back.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 \\{icon-mode-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 Variables controlling indentation style:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 icon-tab-always-indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 Non-nil means TAB in Icon mode should always reindent the current line,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 regardless of where in the line point is when the TAB command is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 icon-auto-newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 Non-nil means automatically newline before and after braces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 inserted in Icon code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 icon-indent-level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 Indentation of Icon statements within surrounding block.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 The surrounding block's indentation is the indentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 of the line on which the open-brace appears.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 icon-continued-statement-offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 Extra indentation given to a substatement, such as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 then-clause of an if or body of a while.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 icon-continued-brace-offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 Extra indentation given to a brace that starts a substatement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 This is in addition to `icon-continued-statement-offset'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 icon-brace-offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 Extra indentation for line if it starts with an open brace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 icon-brace-imaginary-offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 An open brace following other text is treated as if it were
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 this far to the right of the start of its line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 Turning on Icon mode calls the value of the variable `icon-mode-hook'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 with no args, if that value is non-nil."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (use-local-map icon-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (setq major-mode 'icon-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (setq mode-name "Icon")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (setq local-abbrev-table icon-mode-abbrev-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (set-syntax-table icon-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (make-local-variable 'paragraph-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (setq paragraph-start (concat "$\\|" page-delimiter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (make-local-variable 'paragraph-separate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (setq paragraph-separate paragraph-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (make-local-variable 'indent-line-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (setq indent-line-function 'icon-indent-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (make-local-variable 'require-final-newline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (setq require-final-newline t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (make-local-variable 'comment-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (setq comment-start "# ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (make-local-variable 'comment-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (setq comment-end "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (make-local-variable 'comment-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (setq comment-column 32)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (make-local-variable 'comment-start-skip)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (setq comment-start-skip "# *")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (make-local-variable 'comment-indent-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (setq comment-indent-function 'icon-comment-indent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (run-hooks 'icon-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 ;; This is used by indent-for-comment to decide how much to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 ;; indent a comment in Icon code based on its context.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (defun icon-comment-indent ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (if (looking-at "^#")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (skip-chars-backward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (max (if (bolp) 0 (1+ (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 comment-column))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (defun electric-icon-brace (arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 "Insert character and correct line's indentation."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (let (insertpos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (if (and (not arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (eolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (or (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (skip-chars-backward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (bolp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (if icon-auto-newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (progn (icon-indent-line) (newline) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (insert last-command-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (icon-indent-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (if icon-auto-newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (newline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 ;; (newline) may have done auto-fill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (setq insertpos (- (point) 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (icon-indent-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (if insertpos (goto-char (1+ insertpos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (delete-char -1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (if insertpos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (goto-char insertpos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (self-insert-command (prefix-numeric-value arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (self-insert-command (prefix-numeric-value arg)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (defun icon-indent-command (&optional whole-exp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 "Indent current line as Icon code, or in some cases insert a tab character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 If `icon-tab-always-indent' is non-nil (the default), always indent current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 line. Otherwise, indent the current line only if point is at the left margin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 or in the line's indentation; otherwise insert a tab.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 A numeric argument, regardless of its value, means indent rigidly all the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 lines of the expression starting after point so that this line becomes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 properly indented. The relative indentation among the lines of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 expression are preserved."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (if whole-exp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 ;; If arg, always indent this line as Icon
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 ;; and shift remaining lines of expression the same amount.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (let ((shift-amt (icon-indent-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 beg end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 (if icon-tab-always-indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (beginning-of-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (setq beg (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (forward-sexp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (setq end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (goto-char beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (setq beg (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (if (> end beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (indent-code-rigidly beg end shift-amt "#")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (if (and (not icon-tab-always-indent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (skip-chars-backward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (not (bolp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (insert-tab)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (icon-indent-line))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (defun icon-indent-line ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 "Indent current line as Icon code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 Return the amount the indentation changed by."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (let ((indent (calculate-icon-indent nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 beg shift-amt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (pos (- (point-max) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (setq beg (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (cond ((eq indent nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (setq indent (current-indentation)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 ((eq indent t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 (setq indent (calculate-icon-indent-within-comment)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 ((looking-at "[ \t]*#")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (setq indent 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (if (listp indent) (setq indent (car indent)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (cond ((and (looking-at "else\\b")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (not (looking-at "else\\s_")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (setq indent (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (icon-backward-to-start-of-if)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (current-indentation))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 ((or (= (following-char) ?})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (looking-at "end\\b"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (setq indent (- indent icon-indent-level)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 ((= (following-char) ?{)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (setq indent (+ indent icon-brace-offset))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (setq shift-amt (- indent (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (if (zerop shift-amt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 (if (> (- (point-max) pos) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (goto-char (- (point-max) pos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (delete-region beg (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (indent-to indent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 ;; If initial point was within line's indentation,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 ;; position after the indentation. Else stay at same point in text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (if (> (- (point-max) pos) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (goto-char (- (point-max) pos))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 shift-amt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (defun calculate-icon-indent (&optional parse-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 "Return appropriate indentation for current line as Icon code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 In usual case returns an integer: the column to indent to.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 Returns nil if line starts inside a string, t if in a comment."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (let ((indent-point (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 containing-sexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 toplevel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (if parse-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (goto-char parse-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (setq toplevel (beginning-of-icon-defun)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (while (< (point) indent-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (setq parse-start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (setq state (parse-partial-sexp (point) indent-point 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (setq containing-sexp (car (cdr state))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (cond ((or (nth 3 state) (nth 4 state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 ;; return nil or t if should not change this line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (nth 4 state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 ((and containing-sexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (/= (char-after containing-sexp) ?{))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 ;; line is expression, not statement:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 ;; indent to just after the surrounding open.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 (goto-char (1+ containing-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (current-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (if toplevel
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 ;; Outside any procedures.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (progn (icon-backward-to-noncomment (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (if (icon-is-continuation-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 icon-continued-statement-offset 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 ;; Statement level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (if (null containing-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (progn (beginning-of-icon-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (setq containing-sexp (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (goto-char indent-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 ;; Is it a continuation or a new statement?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 ;; Find previous non-comment character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (icon-backward-to-noncomment containing-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 ;; Now we get the answer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (if (icon-is-continuation-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 ;; This line is continuation of preceding line's statement;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 ;; indent icon-continued-statement-offset more than the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 ;; first line of the statement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (icon-backward-to-start-of-continued-exp containing-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (+ icon-continued-statement-offset (current-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (if (save-excursion (goto-char indent-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (eq (following-char) ?{))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 icon-continued-brace-offset 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 ;; This line starts a new statement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 ;; Position following last unclosed open.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (goto-char containing-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 ;; Is line first statement after an open-brace?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 ;; If no, find that first statement and indent like it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (if (looking-at "procedure\\s ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (forward-sexp 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (forward-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (while (progn (skip-chars-forward " \t\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (looking-at "#"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 ;; Skip over comments following openbrace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 ;; The first following code counts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 ;; if it is before the line we want to indent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (and (< (point) indent-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 ;; If no previous statement,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 ;; indent it relative to line brace is on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 ;; For open brace in column zero, don't let statement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 ;; start there too. If icon-indent-level is zero,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 ;; use icon-brace-offset + icon-continued-statement-offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 ;; instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 ;; For open-braces not the first thing in a line,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 ;; add in icon-brace-imaginary-offset.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (+ (if (and (bolp) (zerop icon-indent-level))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 (+ icon-brace-offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 icon-continued-statement-offset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 icon-indent-level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 ;; Move back over whitespace before the openbrace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 ;; If openbrace is not first nonwhite thing on the line,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 ;; add the icon-brace-imaginary-offset.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (progn (skip-chars-backward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (if (bolp) 0 icon-brace-imaginary-offset))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 ;; Get initial indentation of the line we are on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (current-indentation))))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 ;; List of words to check for as the last thing on a line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 ;; If cdr is t, next line is a continuation of the same statement,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 ;; if cdr is nil, next line starts a new (possibly indented) statement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (defconst icon-resword-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 '(("by" . t) ("case" . t) ("create") ("do") ("dynamic" . t) ("else")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 ("every" . t) ("if" . t) ("global" . t) ("initial" . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 ("link" . t) ("local" . t) ("of") ("record" . t) ("repeat" . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 ("static" . t) ("then") ("to" . t) ("until" . t) ("while" . t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (defun icon-is-continuation-line ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (let* ((ch (preceding-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 (ch-syntax (char-syntax ch)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (if (eq ch-syntax ?w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 (assoc (buffer-substring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (progn (forward-word -1) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 (progn (forward-word 1) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 icon-resword-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (not (memq ch '(0 ?\; ?\} ?\{ ?\) ?\] ?\" ?\' ?\n))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (defun icon-backward-to-noncomment (lim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (let (opoint stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (while (not stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 (skip-chars-backward " \t\n\f" lim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (setq opoint (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (if (and (nth 5 (parse-partial-sexp (point) opoint))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (< lim (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (search-backward "#")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (setq stop t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (defun icon-backward-to-start-of-continued-exp (lim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (if (memq (preceding-char) '(?\) ?\]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (forward-sexp -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 ((<= (point) lim) (goto-char (1+ lim)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 ((not (icon-is-continued-line)) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 ((and (eq (char-syntax (following-char)) ?w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (cdr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (assoc (buffer-substring (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (save-excursion (forward-word 1) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 icon-resword-alist))) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (t (end-of-line 0) (icon-backward-to-start-of-continued-exp lim))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (defun icon-is-continued-line ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (end-of-line 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (icon-is-continuation-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (defun icon-backward-to-start-of-if (&optional limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 "Move to the start of the last \"unbalanced\" if."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (or limit (setq limit (save-excursion (beginning-of-icon-defun) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (let ((if-level 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (case-fold-search nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (while (not (zerop if-level))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (backward-sexp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 (cond ((looking-at "else\\b")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (setq if-level (1+ if-level)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 ((looking-at "if\\b")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (setq if-level (1- if-level)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 ((< (point) limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (setq if-level 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (goto-char limit))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (defun mark-icon-function ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 "Put mark at end of Icon function, point at beginning."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (push-mark (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (end-of-icon-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (push-mark (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (beginning-of-line 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (beginning-of-icon-defun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 (defun beginning-of-icon-defun ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 "Go to the start of the enclosing procedure; return t if at top level."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (if (re-search-backward "^procedure\\s \\|^end[ \t\n]" (point-min) 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (looking-at "e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (defun end-of-icon-defun ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (if (not (bobp)) (forward-char -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 (re-search-forward "\\(\\s \\|^\\)end\\(\\s \\|$\\)" (point-max) 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 (forward-word -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (defun indent-icon-exp ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 "Indent each line of the Icon grouping following point."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (let ((indent-stack (list nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (contain-stack (list (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 restart outer-loop-done inner-loop-done state ostate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 this-indent last-sexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 at-else at-brace at-do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (opoint (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 (next-depth 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (forward-sexp 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (setq outer-loop-done nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 (while (and (not (eobp)) (not outer-loop-done))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (setq last-depth next-depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 ;; Compute how depth changes over this line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 ;; plus enough other lines to get to one that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 ;; does not end inside a comment or string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 ;; Meanwhile, do appropriate indentation on comment lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (setq innerloop-done nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (while (and (not innerloop-done)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 (not (and (eobp) (setq outer-loop-done t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (setq ostate state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 nil nil state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (setq next-depth (car state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (if (and (car (cdr (cdr state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (>= (car (cdr (cdr state))) 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (setq last-sexp (car (cdr (cdr state)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 (if (or (nth 4 ostate))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (icon-indent-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (if (or (nth 3 state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (setq innerloop-done t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (if (<= next-depth 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (setq outer-loop-done t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (if outer-loop-done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (if (/= last-depth next-depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 (setq last-sexp nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 (while (> last-depth next-depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (setq indent-stack (cdr indent-stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 contain-stack (cdr contain-stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 last-depth (1- last-depth)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (while (< last-depth next-depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (setq indent-stack (cons nil indent-stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 contain-stack (cons nil contain-stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 last-depth (1+ last-depth)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (if (null (car contain-stack))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (setcar contain-stack (or (car (cdr state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (save-excursion (forward-sexp -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (if (eolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (if (and (car indent-stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 (>= (car indent-stack) 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 ;; Line is on an existing nesting level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 ;; Lines inside parens are handled specially.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (if (/= (char-after (car contain-stack)) ?{)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (setq this-indent (car indent-stack))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 ;; Line is at statement level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 ;; Is it a new statement? Is it an else?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 ;; Find last non-comment character before this line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (setq at-else (looking-at "else\\W"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 (setq at-brace (= (following-char) ?{))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (icon-backward-to-noncomment opoint)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 (if (icon-is-continuation-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 ;; Preceding line did not end in comma or semi;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 ;; indent this line icon-continued-statement-offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 ;; more than previous.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (icon-backward-to-start-of-continued-exp (car contain-stack))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (setq this-indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (+ icon-continued-statement-offset (current-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 (if at-brace icon-continued-brace-offset 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 ;; Preceding line ended in comma or semi;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 ;; use the standard indent for this level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (if at-else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (progn (icon-backward-to-start-of-if opoint)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (setq this-indent (current-indentation)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (setq this-indent (car indent-stack))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 ;; Just started a new nesting level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 ;; Compute the standard indent for this level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 (let ((val (calculate-icon-indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (if (car indent-stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (- (car indent-stack))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (setcar indent-stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 (setq this-indent val))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 ;; Adjust line indentation according to its contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 (if (or (= (following-char) ?})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (looking-at "end\\b"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 (setq this-indent (- this-indent icon-indent-level)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 (if (= (following-char) ?{)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (setq this-indent (+ this-indent icon-brace-offset)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 ;; Put chosen indentation into effect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 (or (= (current-column) this-indent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (delete-region (point) (progn (beginning-of-line) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 (indent-to this-indent)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 ;; Indent any comment following the text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (or (looking-at comment-start-skip)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 (if (re-search-forward comment-start-skip (save-excursion (end-of-line) (point)) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (progn (indent-for-comment) (beginning-of-line))))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 ;;; icon.el ends here