annotate lisp/modes/pascal.el @ 153:25f70ba0133c r20-3b3

Import from CVS: tag r20-3b3
author cvs
date Mon, 13 Aug 2007 09:38:25 +0200
parents 59463afc5666
children 28f395d8dc7a
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 ;;; pascal.el - Major mode for editing pascal source in emacs.
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) 1993, 1994, 1995 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: Espen Skoglund (espensk@stud.cs.uit.no)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;;; Keywords: languages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
21 ;; along with XEmacs; see the file COPYING. If not, write to the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
23 ;; Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;;; Synched up with: FSF 19.30.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;;; USAGE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;;; =====
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;;; Emacs should enter Pascal mode when you find a Pascal source file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;;; When you have entered Pascal mode, you may get more info by pressing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;;; C-h m. You may also get online help describing various functions by:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;;; C-h f <Name of function you want described>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;;; If you want to customize Pascal mode to fit you better, you may add
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;;; these lines (the values of the variables presented here are the defaults):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;;; ;; User customization for Pascal mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;;; (setq pascal-indent-level 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;;; pascal-case-indent 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;;; pascal-auto-newline nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;;; pascal-tab-always-indent t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;;; pascal-auto-endcomments t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;;; pascal-auto-lineup '(all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;;; pascal-toggle-completions nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ;;; pascal-type-keywords '("array" "file" "packed" "char"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 ;;; "integer" "real" "string" "record")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;;; pascal-start-keywords '("begin" "end" "function" "procedure"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;;; "repeat" "until" "while" "read" "readln"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;;; "reset" "rewrite" "write" "writeln")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ;;; pascal-separator-keywords '("downto" "else" "mod" "div" "then"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ;;; KNOWN BUGS / BUGREPORTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ;;; =======================
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ;;; As far as I know, there are no bugs in the current version of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ;;; package. This may not be true however, since I never use this mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;;; myself and therefore would never notice them anyway. If you do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ;;; find any bugs, you may submit them to: espensk@stud.cs.uit.no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ;;; as well as to bug-gnu-emacs@prep.ai.mit.edu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (defconst pascal-mode-version "2.4"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 "Version of `pascal.el'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
68 (defgroup pascal nil
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
69 "Major mode for editing Pascal source in Emacs"
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
70 :group 'languages)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
71
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
72
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defvar pascal-mode-abbrev-table nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 "Abbrev table in use in Pascal-mode buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (define-abbrev-table 'pascal-mode-abbrev-table ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (defvar pascal-mode-map ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 "Keymap used in Pascal mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (if pascal-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (setq pascal-mode-map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (define-key pascal-mode-map ";" 'electric-pascal-semi-or-dot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (define-key pascal-mode-map "." 'electric-pascal-semi-or-dot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (define-key pascal-mode-map ":" 'electric-pascal-colon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (define-key pascal-mode-map "=" 'electric-pascal-equal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (define-key pascal-mode-map "#" 'electric-pascal-hash)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (define-key pascal-mode-map "\r" 'electric-pascal-terminate-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (define-key pascal-mode-map "\t" 'electric-pascal-tab)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (define-key pascal-mode-map "\M-\t" 'pascal-complete-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (define-key pascal-mode-map "\M-?" 'pascal-show-completions)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
91 ;; GDF - don't rebind the delete key.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
92 ;; (define-key pascal-mode-map "\177" 'backward-delete-char-untabify)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (define-key pascal-mode-map "\M-\C-h" 'pascal-mark-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (define-key pascal-mode-map "\C-c\C-b" 'pascal-insert-block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (define-key pascal-mode-map "\M-*" 'pascal-star-comment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (define-key pascal-mode-map "\C-c\C-c" 'pascal-comment-area)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (define-key pascal-mode-map "\C-c\C-u" 'pascal-uncomment-area)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (define-key pascal-mode-map "\M-\C-a" 'pascal-beg-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (define-key pascal-mode-map "\M-\C-e" 'pascal-end-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (define-key pascal-mode-map "\C-c\C-d" 'pascal-goto-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (define-key pascal-mode-map "\C-c\C-o" 'pascal-outline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 ;;; A command to change the whole buffer won't be used terribly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 ;;; often, so no need for a key binding.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 ; (define-key pascal-mode-map "\C-cd" 'pascal-downcase-keywords)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 ; (define-key pascal-mode-map "\C-cu" 'pascal-upcase-keywords)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 ; (define-key pascal-mode-map "\C-cc" 'pascal-capitalize-keywords)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 ;(defvar pascal-imenu-generic-expression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ; '("^[ \t]*\\(function\\|procedure\\)[ \t\n]+\\([a-zA-Z0-9_.:]+\\)" . (2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ; "Imenu expression for Pascal-mode. See `imenu-generic-expression'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (defvar pascal-keywords
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 '("and" "array" "begin" "case" "const" "div" "do" "downto" "else" "end"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 "file" "for" "function" "goto" "if" "in" "label" "mod" "nil" "not" "of"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 "or" "packed" "procedure" "program" "record" "repeat" "set" "then" "to"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 "type" "until" "var" "while" "with"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 ;; The following are not standard in pascal, but widely used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 "get" "put" "input" "output" "read" "readln" "reset" "rewrite" "write"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 "writeln"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 ;;; Regular expressions used to calculate indent, etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (defconst pascal-symbol-re "\\<[a-zA-Z_][a-zA-Z_0-9.]*\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (defconst pascal-beg-block-re "\\<\\(begin\\|case\\|record\\|repeat\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (defconst pascal-end-block-re "\\<\\(end\\|until\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (defconst pascal-declaration-re "\\<\\(const\\|label\\|type\\|var\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (defconst pascal-defun-re "\\<\\(function\\|procedure\\|program\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (defconst pascal-sub-block-re "\\<\\(if\\|else\\|for\\|while\\|with\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (defconst pascal-noindent-re "\\<\\(begin\\|end\\|until\\|else\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (defconst pascal-nosemi-re "\\<\\(begin\\|repeat\\|then\\|do\\|else\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (defconst pascal-autoindent-lines-re
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 "\\<\\(label\\|var\\|type\\|const\\|until\\|end\\|begin\\|repeat\\|else\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 ;;; Strings used to mark beginning and end of excluded text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (defconst pascal-exclude-str-start "{-----\\/----- EXCLUDED -----\\/-----")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (defconst pascal-exclude-str-end " -----/\\----- EXCLUDED -----/\\-----}")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (defvar pascal-mode-syntax-table nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 "Syntax table in use in Pascal-mode buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (if pascal-mode-syntax-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (setq pascal-mode-syntax-table (make-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (modify-syntax-entry ?\\ "." pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (modify-syntax-entry ?( "()1" pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (modify-syntax-entry ?) ")(4" pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (modify-syntax-entry ?* ". 23" pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (modify-syntax-entry ?{ "<" pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (modify-syntax-entry ?} ">" pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (modify-syntax-entry ?+ "." pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (modify-syntax-entry ?- "." pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (modify-syntax-entry ?= "." pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (modify-syntax-entry ?% "." pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (modify-syntax-entry ?< "." pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (modify-syntax-entry ?> "." pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (modify-syntax-entry ?& "." pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (modify-syntax-entry ?| "." pascal-mode-syntax-table)
151
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 134
diff changeset
160 (modify-syntax-entry ?_ "_" pascal-mode-syntax-table)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (modify-syntax-entry ?\' "\"" pascal-mode-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (defconst pascal-font-lock-keywords (purecopy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 '("^[ \t]*\\(function\\|pro\\(cedure\\|gram\\)\\)\\>[ \t]*\\(\\sw+\\)?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 1 font-lock-keyword-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 '("^[ \t]*\\(function\\|pro\\(cedure\\|gram\\)\\)\\>[ \t]*\\(\\sw+\\)?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 3 font-lock-function-name-face t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 ; ("type" "const" "real" "integer" "char" "boolean" "var"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 ; "record" "array" "file")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (cons (concat "\\<\\(array\\|boolean\\|c\\(har\\|onst\\)\\|file\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 "integer\\|re\\(al\\|cord\\)\\|type\\|var\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 'font-lock-type-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 '("\\<\\(label\\|external\\|forward\\)\\>" . font-lock-function-name-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 '("\\<\\([0-9]+\\)[ \t]*:" 1 font-lock-function-name-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 ; ("of" "to" "for" "if" "then" "else" "case" "while"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 ; "do" "until" "and" "or" "not" "in" "with" "repeat" "begin" "end")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (concat "\\<\\("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 "and\\|begin\\|case\\|do\\|e\\(lse\\|nd\\)\\|for\\|i[fn]\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 "not\\|o[fr]\\|repeat\\|t\\(hen\\|o\\)\\|until\\|w\\(hile\\|ith\\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 "\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 '("\\<\\(goto\\)\\>[ \t]*\\([0-9]+\\)?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 1 font-lock-keyword-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 '("\\<\\(goto\\)\\>[ \t]*\\([0-9]+\\)?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 2 font-lock-keyword-face t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 "Additional expressions to highlight in Pascal mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (put 'pascal-mode 'font-lock-defaults '(pascal-font-lock-keywords nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
189 (defcustom pascal-indent-level 3
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
190 "*Indentation of Pascal statements with respect to containing block."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
191 :type 'integer
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
192 :group 'pascal)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
194 (defcustom pascal-case-indent 2
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
195 "*Indentation for case statements."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
196 :type 'integer
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
197 :group 'pascal)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
199 (defcustom pascal-auto-newline nil
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
200 "*Non-nil means automatically newline after semicolons and the punctuation mark
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
201 after an end."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
202 :type 'boolean
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
203 :group 'pascal)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
205 (defcustom pascal-tab-always-indent t
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
206 "*Non-nil means TAB in Pascal mode should always reindent the current line,
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
207 regardless of where in the line point is when the TAB command is used."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
208 :type 'boolean
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
209 :group 'pascal)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
210
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
211 (defcustom pascal-auto-endcomments t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 "*Non-nil means a comment { ... } is set after the ends which ends cases and
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
213 functions. The name of the function or case will be set between the braces."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
214 :type 'boolean
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
215 :group 'pascal)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
217 (defcustom pascal-auto-lineup '(all)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 "*List of contexts where auto lineup of :'s or ='s should be done.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 Elements can be of type: 'paramlist', 'declaration' or 'case', which will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 do auto lineup in parameterlist, declarations or case-statements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 respectively. The word 'all' will do all lineups. '(case paramlist) for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 instance will do lineup in case-statements and parameterlist, while '(all)
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
223 will do all lineups."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
224 :type '(repeat (choice (const all)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
225 (const paramlist)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
226 (const declaration)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
227 (const case)))
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
228 :group 'pascal)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
230 (defcustom pascal-toggle-completions nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 "*Non-nil means that \\<pascal-mode-map>\\[pascal-complete-label] should \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 not display a completion buffer when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 the label couldn't be completed, but instead toggle the possible completions
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
234 with repeated \\[pascal-complete-label]'s."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
235 :type 'boolean
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
236 :group 'pascal)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
238 (defcustom pascal-type-keywords
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 '("array" "file" "packed" "char" "integer" "real" "string" "record")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 "*Keywords for types used when completing a word in a declaration or parmlist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 \(eg. integer, real, char.) The types defined within the Pascal program
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
242 will be completed runtime, and should not be added to this list."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
243 :type '(repeat (string :tag "Keyword"))
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
244 :group 'pascal)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
246 (defcustom pascal-start-keywords
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 '("begin" "end" "function" "procedure" "repeat" "until" "while"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 "read" "readln" "reset" "rewrite" "write" "writeln")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 "*Keywords to complete when standing at the first word of a statement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 \(eg. begin, repeat, until, readln.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 The procedures and variables defined within the Pascal program
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
252 will be completed runtime and should not be added to this list."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
253 :type '(repeat (string :tag "Keyword"))
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
254 :group 'pascal)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
256 (defcustom pascal-separator-keywords
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 '("downto" "else" "mod" "div" "then")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 "*Keywords to complete when NOT standing at the first word of a statement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 \(eg. downto, else, mod, then.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 Variables and function names defined within the
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
261 Pascal program are completed runtime and should not be added to this list."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
262 :type '(repeat (string :tag "Keyword"))
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 110
diff changeset
263 :group 'pascal)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 ;;; Macros
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (defsubst pascal-get-beg-of-line (&optional arg)
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 arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (defsubst pascal-get-end-of-line (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (end-of-line arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (defun pascal-declaration-end ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (let ((nest 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (while (and (> nest 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 "[:=]\\|\\(\\<record\\>\\)\\|\\(\\<end\\>\\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (save-excursion (end-of-line 2) (point)) t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (cond ((match-beginning 1) (setq nest (1+ nest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 ((match-beginning 2) (setq nest (1- nest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 ((looking-at "[^(\n]+)") (setq nest 0))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (defun pascal-declaration-beg ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 (let ((nest 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (while (and (> nest 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (re-search-backward "[:=]\\|\\<\\(type\\|var\\|label\\|const\\)\\>\\|\\(\\<record\\>\\)\\|\\(\\<end\\>\\)" (pascal-get-beg-of-line 0) t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (cond ((match-beginning 1) (setq nest 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 ((match-beginning 2) (setq nest (1- nest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 ((match-beginning 3) (setq nest (1+ nest)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (= nest 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (defsubst pascal-within-string ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (nth 3 (parse-partial-sexp (pascal-get-beg-of-line) (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (defun pascal-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 "Major mode for editing Pascal code. \\<pascal-mode-map>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 TAB indents for Pascal code. Delete converts tabs to spaces as it moves back.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 \\[pascal-complete-word] completes the word around current point with respect \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 to position in code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 \\[pascal-show-completions] shows all possible completions at this point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 Other useful functions are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 \\[pascal-mark-defun]\t- Mark function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 \\[pascal-insert-block]\t- insert begin ... end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 \\[pascal-star-comment]\t- insert (* ... *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 \\[pascal-comment-area]\t- Put marked area in a comment, fixing nested comments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 \\[pascal-uncomment-area]\t- Uncomment an area commented with \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 \\[pascal-comment-area].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 \\[pascal-beg-of-defun]\t- Move to beginning of current function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 \\[pascal-end-of-defun]\t- Move to end of current function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 \\[pascal-goto-defun]\t- Goto function prompted for in the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 \\[pascal-outline]\t- Enter pascal-outline-mode (see also pascal-outline).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 Variables controlling indentation/edit style:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 pascal-indent-level (default 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 Indentation of Pascal statements with respect to containing block.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 pascal-case-indent (default 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 Indentation for case statements.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 pascal-auto-newline (default nil)
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
334 Non-nil means automatically newline after semicolons and the punctuation mark
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 after an end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 pascal-tab-always-indent (default t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 Non-nil means TAB in Pascal mode should always reindent the current line,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 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
339 pascal-auto-endcomments (default t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 Non-nil means a comment { ... } is set after the ends which ends cases and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 functions. The name of the function or case will be set between the braces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 pascal-auto-lineup (default t)
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 70
diff changeset
343 List of contexts where auto lineup of :'s or ='s should be done.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 See also the user variables pascal-type-keywords, pascal-start-keywords and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 pascal-separator-keywords.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 Turning on Pascal mode calls the value of the variable pascal-mode-hook with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 no args, if that value is non-nil."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (use-local-map pascal-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (setq major-mode 'pascal-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (setq mode-name "Pascal")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (setq local-abbrev-table pascal-mode-abbrev-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (set-syntax-table pascal-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (make-local-variable 'indent-line-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (setq indent-line-function 'pascal-indent-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (setq comment-indent-function 'pascal-indent-comment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (make-local-variable 'comment-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (setq comment-start "{")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (make-local-variable 'parse-sexp-ignore-comments)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (setq parse-sexp-ignore-comments nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 (make-local-variable 'case-fold-search)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 (setq case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (make-local-variable 'comment-start-skip)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (setq comment-start-skip "(\\*+ *\\|{ *")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (make-local-variable 'comment-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 (setq comment-end "}")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 ; (make-local-variable 'imenu-generic-expression)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 ; (setq imenu-generic-expression pascal-imenu-generic-expression)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (run-hooks 'pascal-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 ;;; Electric functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (defun electric-pascal-terminate-line ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 "Terminate line and indent next line."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 ;; First, check if current line should be indented
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (if (looking-at pascal-autoindent-lines-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (pascal-indent-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (delete-horizontal-space) ; Removes trailing whitespaces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (newline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 ;; Indent next line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (pascal-indent-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 ;; Maybe we should set some endcomments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (if pascal-auto-endcomments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 (pascal-set-auto-comments))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 ;; Check if we shall indent inside comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (let ((setstar nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (forward-line -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 (cond ((looking-at "\\*[ \t]+)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 ;; Delete region between `*' and `)' if there is only whitespaces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (delete-horizontal-space))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 ((and (looking-at "(\\*\\|\\*[^)]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (not (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (search-forward "*)" (pascal-get-end-of-line) t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (setq setstar t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 ;; If last line was a star comment line then this one shall be too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 (if (null setstar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (pascal-indent-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (insert "* "))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (defun electric-pascal-semi-or-dot ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 "Insert `;' or `.' character and reindent the line."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 (insert last-command-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (pascal-indent-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (if pascal-auto-newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 (electric-pascal-terminate-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (defun electric-pascal-colon ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 "Insert `:' and do all indentions except line indent on this line."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (insert last-command-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 ;; Do nothing if within string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (if (pascal-within-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (pascal-indent-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (let ((pascal-tab-always-indent nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (pascal-indent-command))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (defun electric-pascal-equal ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 "Insert `=', and do indention if within type declaration."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 (insert last-command-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (if (eq (car (pascal-calculate-indent)) 'declaration)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 (let ((pascal-tab-always-indent nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 (pascal-indent-command))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (defun electric-pascal-hash ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 "Insert `#', and indent to coulmn 0 if this is a CPP directive."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (insert last-command-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (if (save-excursion (beginning-of-line) (looking-at "^[ \t]*#"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (save-excursion (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (delete-horizontal-space))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (defun electric-pascal-tab ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 "Function called when TAB is pressed in Pascal mode."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 ;; Do nothing if within a string or in a CPP directive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 (if (or (pascal-within-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (and (not (bolp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (save-excursion (beginning-of-line) (eq (following-char) ?#))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (insert "\t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 ;; If pascal-tab-always-indent, indent the beginning of the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (if pascal-tab-always-indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 (pascal-indent-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (if (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (skip-chars-backward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (bolp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 (pascal-indent-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (insert "\t")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 (pascal-indent-command)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 ;;; Interactive functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (defun pascal-insert-block ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 "Insert Pascal begin ... end; block in the code with right indentation."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (pascal-indent-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (insert "begin")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (electric-pascal-terminate-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 (electric-pascal-terminate-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (insert "end;")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 (pascal-indent-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 (defun pascal-star-comment ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 "Insert Pascal star comment at point."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (pascal-indent-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (insert "(*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (electric-pascal-terminate-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (electric-pascal-terminate-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (insert ")"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (insert " "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (defun pascal-mark-defun ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 "Mark the current pascal function (or procedure).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 This puts the mark at the end, and point at the beginning."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 (push-mark (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 (pascal-end-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (push-mark (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (pascal-beg-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (if (fboundp 'zmacs-activate-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 (zmacs-activate-region)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 (defun pascal-comment-area (start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 "Put the region into a Pascal comment.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 The comments that are in this area are \"deformed\":
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 `*)' becomes `!(*' and `}' becomes `!{'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 These deformed comments are returned to normal if you use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 \\[pascal-uncomment-area] to undo the commenting.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 The commented area starts with `pascal-exclude-str-start', and ends with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 `pascal-include-str-end'. But if you change these variables,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 \\[pascal-uncomment-area] won't recognize the comments."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (interactive "r")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 ;; Insert start and endcomments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (if (and (save-excursion (skip-chars-forward " \t") (eolp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (not (save-excursion (skip-chars-backward " \t") (bolp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (beginning-of-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (insert pascal-exclude-str-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (setq end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (newline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (insert pascal-exclude-str-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (newline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 ;; Replace end-comments within commented area
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (while (re-search-backward "\\*)" start t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 (replace-match "!(*" t t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (while (re-search-backward "}" start t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (replace-match "!{" t t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (defun pascal-uncomment-area ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 "Uncomment a commented area; change deformed comments back to normal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 This command does nothing if the pointer is not in a commented
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 area. See also `pascal-comment-area'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (let ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 (end (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 ;; Find the boundaries of the comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 (setq start (progn (search-backward pascal-exclude-str-start nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (setq end (progn (search-forward pascal-exclude-str-end nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 ;; Check if we're really inside a comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (if (or (equal start (point)) (<= end (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (message "Not standing within commented area.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 ;; Remove endcomment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 (let ((pos (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 (delete-region pos (1+ (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 ;; Change comments back to normal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (while (re-search-backward "!{" start t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 (replace-match "}" t t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 (while (re-search-backward "!(\\*" start t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 (replace-match "*)" t t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 ;; Remove startcomment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 (let ((pos (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 (delete-region pos (1+ (point)))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 (defun pascal-beg-of-defun ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 "Move backward to the beginning of the current function or procedure."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 (catch 'found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 (if (not (looking-at (concat "\\s \\|\\s)\\|" pascal-defun-re)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 (forward-sexp 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (let ((nest 0) (max -1) (func 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 (reg (concat pascal-beg-block-re "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 pascal-end-block-re "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 pascal-defun-re)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (while (re-search-backward reg nil 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 (cond ((let ((state (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 (parse-partial-sexp (point-min) (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (or (nth 3 state) (nth 4 state))) ; Inside string or comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 ((match-end 1) ; begin|case|record|repeat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (if (and (looking-at "\\<record\\>") (>= max 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 (setq func (1- func)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (setq nest (1+ nest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 max (max nest max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 ((match-end 2) ; end|until
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 (if (and (= nest max) (>= max 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 (setq func (1+ func)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 (setq nest (1- nest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 ((match-end 3) ; function|procedure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 (if (= 0 func)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 (throw 'found t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 (setq func (1- func)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (defun pascal-end-of-defun ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 "Move forward to the end of the current function or procedure."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 (if (looking-at "\\s ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (forward-sexp 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (if (not (looking-at pascal-defun-re))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (pascal-beg-of-defun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (let ((nest 0) (func 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (reg (concat pascal-beg-block-re "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 pascal-end-block-re "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 pascal-defun-re)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (while (and (/= func 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (re-search-forward reg nil 'move))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 (cond ((let ((state (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (parse-partial-sexp (point-min) (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 (or (nth 3 state) (nth 4 state))) ; Inside string or comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 ((match-end 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 (setq nest (1+ nest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (if (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (goto-char (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (looking-at "\\<record\\>"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (setq func (1+ func))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 ((match-end 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (setq nest (1- nest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 (if (= nest 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 (setq func (1- func))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 ((match-end 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 (setq func (1+ func))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (defun pascal-end-of-statement ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 "Move forward to end of current statement."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 (let ((parse-sexp-ignore-comments t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (nest 0) pos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (regexp (concat "\\(" pascal-beg-block-re "\\)\\|\\("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 pascal-end-block-re "\\)")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (if (not (looking-at "[ \t\n]")) (forward-sexp -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (or (looking-at pascal-beg-block-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 ;; Skip to end of statement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 (setq pos (catch 'found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (while t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (forward-sexp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (cond ((looking-at "[ \t]*;")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (skip-chars-forward "^;")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (throw 'found (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 ((save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 (forward-sexp -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 (looking-at pascal-beg-block-re))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (goto-char (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (throw 'found nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 ((eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 (throw 'found (point))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 (if (not pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 ;; Skip a whole block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 (catch 'found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 (while t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 (re-search-forward regexp nil 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 (setq nest (if (match-end 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 (1+ nest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 (1- nest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 (cond ((eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 (throw 'found (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 ((= 0 nest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 (throw 'found (pascal-end-of-statement))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 pos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (defun pascal-downcase-keywords ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 "Downcase all Pascal keywords in the buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (pascal-change-keywords 'downcase-word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (defun pascal-upcase-keywords ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 "Upcase all Pascal keywords in the buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 (pascal-change-keywords 'upcase-word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 (defun pascal-capitalize-keywords ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 "Capitalize all Pascal keywords in the buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 (pascal-change-keywords 'capitalize-word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 ;; Change the keywords according to argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (defun pascal-change-keywords (change-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 (let ((keyword-re (concat "\\<\\("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (mapconcat 'identity pascal-keywords "\\|")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 "\\)\\>")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 (while (re-search-forward keyword-re nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (funcall change-word -1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 ;;; Other functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (defun pascal-set-auto-comments ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 "Insert `{ case }' or `{ NAME }' on this line if appropriate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 Insert `{ case }' if there is an `end' on the line which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 ends a case block. Insert `{ NAME }' if there is an `end'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 on the line which ends a function or procedure named NAME."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (forward-line -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 (if (and (looking-at "\\<end;")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 (not (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 (search-backward "{" (pascal-get-beg-of-line) t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 (let ((type (car (pascal-calculate-indent))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 (if (eq type 'declaration)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 (if (eq type 'case)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 ;; This is a case block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 (insert " { case }"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 (let ((nest 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 ;; Check if this is the end of a function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 (while (not (or (looking-at pascal-defun-re) (bobp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 (backward-sexp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 (cond ((looking-at pascal-beg-block-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (setq nest (1- nest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 ((looking-at pascal-end-block-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 (setq nest (1+ nest)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 (if (bobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 (setq nest 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 (if (zerop nest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 (insert " { ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 (let (b e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 (setq b (progn (pascal-beg-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 (skip-chars-forward "^ \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 e (progn (skip-chars-forward "a-zA-Z0-9_")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (insert-buffer-substring (current-buffer) b e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 (insert " }"))))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 ;;; Indentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 (defconst pascal-indent-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 '((block . (+ ind pascal-indent-level))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 (case . (+ ind pascal-case-indent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 (caseblock . ind) (cpp . 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (declaration . (+ ind pascal-indent-level))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (paramlist . (pascal-indent-paramlist t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 (comment . (pascal-indent-comment t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 (defun . ind) (contexp . ind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 (unknown . 0) (string . 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 (defun pascal-indent-command ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 "Indent for special part of code."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 (let* ((indent-str (pascal-calculate-indent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 (type (car indent-str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 (ind (car (cdr indent-str))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 (cond ((and (eq type 'paramlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 (or (memq 'all pascal-auto-lineup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 (memq 'paramlist pascal-auto-lineup)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 (pascal-indent-paramlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 (pascal-indent-paramlist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 ((and (eq type 'declaration)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 (or (memq 'all pascal-auto-lineup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 (memq 'declaration pascal-auto-lineup)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 (pascal-indent-declaration))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 ((and (eq type 'case) (not (looking-at "^[ \t]*$"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 (or (memq 'all pascal-auto-lineup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (memq 'case pascal-auto-lineup)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (pascal-indent-case)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 (if (looking-at "[ \t]+$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 (skip-chars-forward " \t"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 (defun pascal-indent-line ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 "Indent current line as a Pascal statement."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 (let* ((indent-str (pascal-calculate-indent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 (type (car indent-str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 (ind (car (cdr indent-str))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 (if (looking-at "^[0-9a-zA-Z]+[ \t]*:[^=]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 (search-forward ":" nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 ;; Some things should not be indented
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 (if (or (and (eq type 'declaration) (looking-at pascal-declaration-re))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 (eq type 'cpp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (looking-at pascal-defun-re))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 ;; Other things should have no extra indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 (if (looking-at pascal-noindent-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 (indent-to ind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 ;; But most lines are treated this way:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 (indent-to (eval (cdr (assoc type pascal-indent-alist))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 ))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 (defun pascal-calculate-indent ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 "Calculate the indent of the current Pascal line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 Return a list of two elements: (INDENT-TYPE INDENT-LEVEL)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 (let* ((parse-sexp-ignore-comments t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (oldpos (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 (state (save-excursion (parse-partial-sexp (point-min) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 (nest 0) (par 0) (complete (looking-at "[ \t]*end\\>"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 (elsed (looking-at "[ \t]*else\\>"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 (type (catch 'nesting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 ;; Check if inside a string, comment or parenthesis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 (cond ((nth 3 state) (throw 'nesting 'string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 ((nth 4 state) (throw 'nesting 'comment))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 ((> (car state) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 (goto-char (scan-lists (point) -1 (car state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 (setq par (1+ (current-column))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 ((save-excursion (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 (eq (following-char) ?#))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 (throw 'nesting 'cpp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 ;; Loop until correct indent is found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 (while t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 (backward-sexp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 (cond (;--Escape from case statements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 (and (looking-at "[A-Za-z0-9]+[ \t]*:[^=]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 (not complete)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 (save-excursion (skip-chars-backward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 (bolp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 (= (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 (end-of-line) (backward-sexp) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 (> (save-excursion (goto-char oldpos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 (throw 'nesting 'caseblock))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 (;--Nest block outwards
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 (looking-at pascal-beg-block-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 (if (= nest 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 (cond ((looking-at "case\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 (throw 'nesting 'case))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 ((looking-at "record\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (throw 'nesting 'declaration))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 (t (throw 'nesting 'block)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (setq nest (1- nest))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 (;--Nest block inwards
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 (looking-at pascal-end-block-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 (if (and (looking-at "end\\s ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 elsed (not complete))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 (throw 'nesting 'block))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (setq complete t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 nest (1+ nest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 (;--Defun (or parameter list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 (looking-at pascal-defun-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (if (= 0 par)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 (throw 'nesting 'defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (setq par 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 (let ((n 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 (while (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 "\\(\\<record\\>\\)\\|\\<end\\>"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 oldpos t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 (if (match-end 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (setq n (1+ n)) (setq n (1- n))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 (if (> n 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 (throw 'nesting 'declaration)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (throw 'nesting 'paramlist)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 (;--Declaration part
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 (looking-at pascal-declaration-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 (if (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 (goto-char oldpos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 (forward-line -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 (looking-at "^[ \t]*$"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 (throw 'nesting 'unknown)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 (throw 'nesting 'declaration)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 (;--If, else or while statement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 (and (not complete)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 (looking-at pascal-sub-block-re))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 (throw 'nesting 'block))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 (;--Found complete statement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 (save-excursion (forward-sexp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 (= (following-char) ?\;))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 (setq complete t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 (;--No known statements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 (bobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 (throw 'nesting 'unknown))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 )))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 ;; Return type of block and indent level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 (if (> par 0) ; Unclosed Parenthesis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (list 'contexp par)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (list type (pascal-indent-level))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (defun pascal-indent-level ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 "Return the indent-level the current statement has.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 Do not count labels, case-statements or records."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 (if (looking-at "[ \t]*[0-9a-zA-Z]+[ \t]*:[^=]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 (search-forward ":" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 (if (looking-at ".*=[ \t]*record\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 (search-forward "=" nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 (defun pascal-indent-comment (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 "Indent current line as comment.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 If optional arg is non-nil, just return the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 column number the line should be indented to."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 (let* ((stcol (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 (re-search-backward "(\\*\\|{" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (1+ (current-column)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 (if arg stcol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (indent-to stcol))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 (defun pascal-indent-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 "Indent within case statements."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 (let ((savepos (point-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 (end (prog2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 (point-marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 (re-search-backward "\\<case\\>" nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 (beg (point)) oldpos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 (ind 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 ;; Get right indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 (while (< (point) (marker-position end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 (if (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 "^[ \t]*[^ \t,:]+[ \t]*\\(,[ \t]*[^ \t,:]+[ \t]*\\)*:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 (marker-position end) 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 (forward-char -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (if (< (point) (marker-position end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 (if (> (current-column) ind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 (setq ind (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 (pascal-end-of-statement))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 (goto-char beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 (setq oldpos (marker-position end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 ;; Indent all case statements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 (while (< (point) (marker-position end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 (if (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 "^[ \t]*[^][ \t,\\.:]+[ \t]*\\(,[ \t]*[^ \t,:]+[ \t]*\\)*:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 (marker-position end) 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 (forward-char -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 (indent-to (1+ ind))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 (if (/= (following-char) ?:)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 (insert " "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 (setq oldpos (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 (pascal-end-of-statement))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 (goto-char savepos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (defun pascal-indent-paramlist (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 "Indent current line in parameterlist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 If optional arg is non-nil, just return the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 indent of the current line in parameterlist."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 (let* ((oldpos (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 (stpos (progn (goto-char (scan-lists (point) -1 1)) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 (stcol (1+ (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 (edpos (progn (pascal-declaration-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 (search-backward ")" (pascal-get-beg-of-line) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 (usevar (re-search-backward "\\<var\\>" stpos t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 (if arg (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 ;; If arg, just return indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 (goto-char oldpos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 (if (or (not usevar) (looking-at "[ \t]*var\\>"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 stcol (+ 4 stcol)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 (goto-char stpos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 (if (and usevar (not (looking-at "var\\>")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 (indent-to (+ 4 stcol)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 (pascal-indent-declaration nil stpos edpos)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 (defun pascal-indent-declaration (&optional arg start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 "Indent current lines as declaration, lining up the `:'s or `='s."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 (let ((pos (point-marker)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 (if (and (not (or arg start)) (not (pascal-declaration-beg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 (let ((lineup (if (or (looking-at "\\<var\\>\\|\\<record\\>") arg start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 ":" "="))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 (stpos (if start start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 (forward-word 2) (backward-word 1) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 (edpos (set-marker (make-marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 (if end end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 (max (progn (pascal-declaration-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 pos))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 ind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 (goto-char stpos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 ;; Indent lines in record block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 (if arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 (while (<= (point) (marker-position edpos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 (if (looking-at "end\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 (indent-to arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 (indent-to (+ arg pascal-indent-level)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 (forward-line 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 ;; Do lineup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 (setq ind (pascal-get-lineup-indent stpos edpos lineup))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 (goto-char stpos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 (while (<= (point) (marker-position edpos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 (if (search-forward lineup (pascal-get-end-of-line) 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 (forward-char -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 (indent-to ind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 (if (not (looking-at lineup))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 (forward-line 1) ; No more indent if there is no : or =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 (delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 (insert " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 ;; Indent record block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 (if (looking-at "record\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 (pascal-indent-declaration (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 (forward-line 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 ;; If arg - move point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 (if arg (forward-line -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 (goto-char (marker-position pos)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 ; "Return the indent level that will line up several lines within the region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 ;from b to e nicely. The lineup string is str."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 (defun pascal-get-lineup-indent (b e str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 (let ((ind 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 (reg (concat str "\\|\\(\\<record\\>\\)"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 nest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 (goto-char b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 ;; Get rightmost position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 (while (< (point) e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 (setq nest 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 (if (re-search-forward reg (min e (pascal-get-end-of-line 2)) 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 ;; Skip record blocks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 (if (match-beginning 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 (pascal-declaration-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 (goto-char (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 (skip-chars-backward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 (if (> (current-column) ind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 (setq ind (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 (goto-char (match-end 0)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 ;; In case no lineup was found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 (if (> ind 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 (1+ ind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 ;; No lineup-string found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 (goto-char b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 (skip-chars-backward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 (1+ (current-column))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 ;;; Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 (defvar pascal-str nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 (defvar pascal-all nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 (defvar pascal-pred nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 (defvar pascal-buffer-to-use nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 (defvar pascal-flag nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 (defun pascal-string-diff (str1 str2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 "Return index of first letter where STR1 and STR2 differs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 (catch 'done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 (let ((diff 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 (while t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 (if (or (> (1+ diff) (length str1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 (> (1+ diff) (length str2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 (throw 'done diff))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 (or (equal (aref str1 diff) (aref str2 diff))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 (throw 'done diff))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 (setq diff (1+ diff))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 ;; Calculate all possible completions for functions if argument is `function',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 ;; completions for procedures if argument is `procedure' or both functions and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 ;; procedures otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 (defun pascal-func-completion (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 ;; Build regular expression for function/procedure names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 (if (string= pascal-str "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 (setq pascal-str "[a-zA-Z_]"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 (let ((pascal-str (concat (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 ((eq type 'procedure) "\\<\\(procedure\\)\\s +")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 ((eq type 'function) "\\<\\(function\\)\\s +")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 (t "\\<\\(function\\|procedure\\)\\s +"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 "\\<\\(" pascal-str "[a-zA-Z0-9_.]*\\)\\>"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 match)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 (if (not (looking-at "\\<\\(function\\|procedure\\)\\>"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 (re-search-backward "\\<\\(function\\|procedure\\)\\>" nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 ;; Search through all reachable functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 (while (pascal-beg-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 (if (re-search-forward pascal-str (pascal-get-end-of-line) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 (progn (setq match (buffer-substring (match-beginning 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 (match-end 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 (if (or (null pascal-pred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 (funcall pascal-pred match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 (setq pascal-all (cons match pascal-all)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 (goto-char (match-beginning 0)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 (defun pascal-get-completion-decl ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 ;; Macro for searching through current declaration (var, type or const)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 ;; for matches of `str' and adding the occurence tp `all'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 (let ((end (save-excursion (pascal-declaration-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 match)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 ;; Traverse lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 (while (< (point) end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 (if (re-search-forward "[:=]" (pascal-get-end-of-line) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 ;; Traverse current line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 (while (and (re-search-backward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 (concat "\\((\\|\\<\\(var\\|type\\|const\\)\\>\\)\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 pascal-symbol-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 (pascal-get-beg-of-line) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 (not (match-end 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 (setq match (buffer-substring (match-beginning 0) (match-end 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 (if (string-match (concat "\\<" pascal-str) match)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 (if (or (null pascal-pred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 (funcall pascal-pred match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 (setq pascal-all (cons match pascal-all))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 (if (re-search-forward "\\<record\\>" (pascal-get-end-of-line) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 (pascal-declaration-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 (forward-line 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 (defun pascal-type-completion ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 "Calculate all possible completions for types."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 (let ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 goon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 ;; Search for all reachable type declarations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 (while (or (pascal-beg-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 (setq goon (not goon)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 (if (and (< start (prog1 (save-excursion (pascal-end-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 (forward-char 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 "\\<type\\>\\|\\<\\(begin\\|function\\|procedure\\)\\>"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 start t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 (not (match-end 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 ;; Check current type declaration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 (pascal-get-completion-decl))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 (defun pascal-var-completion ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 "Calculate all possible completions for variables (or constants)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 (let ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 goon twice)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 ;; Search for all reachable var declarations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 (while (or (pascal-beg-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 (setq goon (not goon)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 (if (> start (prog1 (save-excursion (pascal-end-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 () ; Declarations not reacable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 (if (search-forward "(" (pascal-get-end-of-line) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 ;; Check parameterlist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 (pascal-get-completion-decl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 (setq twice 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 (while (>= (setq twice (1- twice)) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 (cond ((and (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 (concat "\\<\\(var\\|const\\)\\>\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 "\\<\\(begin\\|function\\|procedure\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 start t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 (not (match-end 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 ;; Check var/const declarations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 (pascal-get-completion-decl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 ((match-end 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 (setq twice 0)))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 (defun pascal-keyword-completion (keyword-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 "Give list of all possible completions of keywords in KEYWORD-LIST."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (mapcar '(lambda (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 (if (string-match (concat "\\<" pascal-str) s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 (if (or (null pascal-pred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 (funcall pascal-pred s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 (setq pascal-all (cons s pascal-all)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 keyword-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 ;; Function passed to completing-read, try-completion or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 ;; all-completions to get completion on STR. If predicate is non-nil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 ;; it must be a function to be called for every match to check if this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 ;; should really be a match. If flag is t, the function returns a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 ;; of all possible completions. If it is nil it returns a string, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 ;; longest possible completion, or t if STR is an exact match. If flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 ;; is 'lambda, the function returns t if STR is an exact match, nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 ;; otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 (defun pascal-completion (pascal-str pascal-pred pascal-flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 (let ((pascal-all nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 ;; Set buffer to use for searching labels. This should be set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 ;; within functins which use pascal-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 (set-buffer pascal-buffer-to-use)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 ;; Determine what should be completed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 (let ((state (car (pascal-calculate-indent))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 (cond (;--Within a declaration or parameterlist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 (or (eq state 'declaration) (eq state 'paramlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 (and (eq state 'defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 (re-search-backward ")[ \t]*:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 (pascal-get-beg-of-line) t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 (if (or (eq state 'paramlist) (eq state 'defun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 (pascal-beg-of-defun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 (pascal-type-completion)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 (pascal-keyword-completion pascal-type-keywords))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 (;--Starting a new statement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 (and (not (eq state 'contexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 (skip-chars-backward "a-zA-Z0-9_.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 (backward-sexp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 (or (looking-at pascal-nosemi-re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 (forward-sexp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 (looking-at "\\s *\\(;\\|:[^=]\\)")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 (save-excursion (pascal-var-completion))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 (pascal-func-completion 'procedure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 (pascal-keyword-completion pascal-start-keywords))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 (t;--Anywhere else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 (save-excursion (pascal-var-completion))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 (pascal-func-completion 'function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 (pascal-keyword-completion pascal-separator-keywords))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 ;; Now we have built a list of all matches. Give response to caller
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 (pascal-completion-response))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 (defun pascal-completion-response ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 (cond ((or (equal pascal-flag 'lambda) (null pascal-flag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 ;; This was not called by all-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 (if (null pascal-all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 ;; Return nil if there was no matching label
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 ;; Get longest string common in the labels
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 (let* ((elm (cdr pascal-all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 (match (car pascal-all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 (min (length match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 exact tmp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 (if (string= match pascal-str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 ;; Return t if first match was an exact match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 (setq match t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 (while (not (null elm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 ;; Find longest common string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 (if (< (setq tmp (pascal-string-diff match (car elm))) min)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 (setq min tmp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 (setq match (substring match 0 min))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 ;; Terminate with match=t if this is an exact match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 (if (string= (car elm) pascal-str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 (setq match t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 (setq elm nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 (setq elm (cdr elm)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 ;; If this is a test just for exact match, return nil ot t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 (if (and (equal pascal-flag 'lambda) (not (equal match 't)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 match))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 ;; If flag is t, this was called by all-completions. Return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 ;; list of all possible completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 (pascal-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 pascal-all)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 (defvar pascal-last-word-numb 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 (defvar pascal-last-word-shown nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 (defvar pascal-last-completions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 (defun pascal-complete-word ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 "Complete word at current point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 \(See also `pascal-toggle-completions', `pascal-type-keywords',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 `pascal-start-keywords' and `pascal-separator-keywords'.)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 (let* ((b (save-excursion (skip-chars-backward "a-zA-Z0-9_") (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 (e (save-excursion (skip-chars-forward "a-zA-Z0-9_") (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 (pascal-str (buffer-substring b e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 ;; The following variable is used in pascal-completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 (pascal-buffer-to-use (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 (allcomp (if (and pascal-toggle-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 (string= pascal-last-word-shown pascal-str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 pascal-last-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 (all-completions pascal-str 'pascal-completion)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 (match (if pascal-toggle-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 "" (try-completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 pascal-str (mapcar '(lambda (elm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 (cons elm 0)) allcomp)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 ;; Delete old string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 (delete-region b e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 ;; Toggle-completions inserts whole labels
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 (if pascal-toggle-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 ;; Update entry number in list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 (setq pascal-last-completions allcomp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 pascal-last-word-numb
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 (if (>= pascal-last-word-numb (1- (length allcomp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 (1+ pascal-last-word-numb)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 (setq pascal-last-word-shown (elt allcomp pascal-last-word-numb))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 ;; Display next match or same string if no match was found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 (if (not (null allcomp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 (insert "" pascal-last-word-shown)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 (insert "" pascal-str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 (message "(No match)")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 ;; The other form of completion does not necessarly do that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 ;; Insert match if found, or the original string if no match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 (if (or (null match) (equal match 't))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 (progn (insert "" pascal-str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 (message "(No match)"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 (insert "" match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 ;; Give message about current status of completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 (cond ((equal match 't)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 (if (not (null (cdr allcomp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 (message "(Complete but not unique)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 (message "(Sole completion)")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 ;; Display buffer if the current completion didn't help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 ;; on completing the label.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 ((and (not (null (cdr allcomp))) (= (length pascal-str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 (length match)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 (with-output-to-temp-buffer "*Completions*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 (display-completion-list allcomp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 ;; Wait for a keypress. Then delete *Completion* window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 (momentary-string-display "" (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 (delete-window (get-buffer-window (get-buffer "*Completions*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 )))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 (defun pascal-show-completions ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 "Show all possible completions at current point."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 (let* ((b (save-excursion (skip-chars-backward "a-zA-Z0-9_") (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 (e (save-excursion (skip-chars-forward "a-zA-Z0-9_") (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 (pascal-str (buffer-substring b e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 ;; The following variable is used in pascal-completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 (pascal-buffer-to-use (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 (allcomp (if (and pascal-toggle-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 (string= pascal-last-word-shown pascal-str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 pascal-last-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 (all-completions pascal-str 'pascal-completion))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 ;; Show possible completions in a temporary buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 (with-output-to-temp-buffer "*Completions*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 (display-completion-list allcomp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 ;; Wait for a keypress. Then delete *Completion* window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 (momentary-string-display "" (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 (delete-window (get-buffer-window (get-buffer "*Completions*")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 (defun pascal-get-default-symbol ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 "Return symbol around current point as a string."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 (buffer-substring (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 (skip-chars-backward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 (skip-chars-backward "a-zA-Z0-9_")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 (skip-chars-forward "a-zA-Z0-9_")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 (defun pascal-build-defun-re (str &optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 "Return function/procedure starting with STR as regular expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 With optional second arg non-nil, STR is the complete name of the instruction."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 (if arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 (concat "^\\(function\\|procedure\\)[ \t]+\\(" str "\\)\\>")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 (concat "^\\(function\\|procedure\\)[ \t]+\\(" str "[a-zA-Z0-9_]*\\)\\>")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 ;; Function passed to completing-read, try-completion or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 ;; all-completions to get completion on any function name. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 ;; predicate is non-nil, it must be a function to be called for every
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 ;; match to check if this should really be a match. If flag is t, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 ;; function returns a list of all possible completions. If it is nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 ;; it returns a string, the longest possible completion, or t if STR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 ;; is an exact match. If flag is 'lambda, the function returns t if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 ;; STR is an exact match, nil otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 (defun pascal-comp-defun (pascal-str pascal-pred pascal-flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 (let ((pascal-all nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 match)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 ;; Set buffer to use for searching labels. This should be set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 ;; within functins which use pascal-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 (set-buffer pascal-buffer-to-use)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 (let ((pascal-str pascal-str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 ;; Build regular expression for functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 (if (string= pascal-str "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 (setq pascal-str (pascal-build-defun-re "[a-zA-Z_]"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 (setq pascal-str (pascal-build-defun-re pascal-str)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 ;; Build a list of all possible completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 (while (re-search-forward pascal-str nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 (setq match (buffer-substring (match-beginning 2) (match-end 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 (if (or (null pascal-pred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 (funcall pascal-pred match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 (setq pascal-all (cons match pascal-all)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 ;; Now we have built a list of all matches. Give response to caller
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 (pascal-completion-response))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 (defun pascal-goto-defun ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 "Move to specified Pascal function/procedure.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 The default is a name found in the buffer around point."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 (let* ((default (pascal-get-default-symbol))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 ;; The following variable is used in pascal-comp-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 (pascal-buffer-to-use (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 (default (if (pascal-comp-defun default nil 'lambda)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 default ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 (label (if (not (string= default ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 ;; Do completion with default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 (completing-read (concat "Label: (default " default ") ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 'pascal-comp-defun nil t "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 ;; There is no default value. Complete without it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 (completing-read "Label: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 'pascal-comp-defun nil t ""))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 ;; If there was no response on prompt, use default value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 (if (string= label "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 (setq label default))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 ;; Goto right place in buffer if label is not an empty string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 (or (string= label "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 (re-search-forward (pascal-build-defun-re label t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 (beginning-of-line)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 ;;; Pascal-outline-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 (defvar pascal-outline-map nil "Keymap used in Pascal Outline mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 (if pascal-outline-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 (if (boundp 'set-keymap-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 (set-keymap-name pascal-outline-map 'pascal-outline-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 (if (not (boundp 'set-keymap-parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 (setq pascal-outline-map (copy-keymap pascal-mode-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 (setq pascal-outline-map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 (set-keymap-parent pascal-outline-map pascal-mode-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 (define-key pascal-outline-map "\M-\C-a" 'pascal-outline-prev-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 (define-key pascal-outline-map "\M-\C-e" 'pascal-outline-next-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 (define-key pascal-outline-map "\C-c\C-d" 'pascal-outline-goto-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 (define-key pascal-outline-map "\C-c\C-s" 'pascal-show-all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 (define-key pascal-outline-map "\C-c\C-h" 'pascal-hide-other-defuns))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 (defvar pascal-outline-mode nil "Non-nil while using Pascal Outline mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 (make-variable-buffer-local 'pascal-outline-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 (set-default 'pascal-outline-mode nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 (if (not (assoc 'pascal-outline-mode minor-mode-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 (setq minor-mode-alist (append minor-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 (list '(pascal-outline-mode " Outl")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 (defun pascal-outline (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 "Outline-line minor mode for Pascal mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 When in Pascal Outline mode, portions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 of the text being edited may be made invisible. \\<pascal-outline-map>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 Pascal Outline mode provides some additional commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 \\[pascal-outline-prev-defun]\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 \t- Move to previous function/procedure, hiding everything else.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 \\[pascal-outline-next-defun]\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 \t- Move to next function/procedure, hiding everything else.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 \\[pascal-outline-goto-defun]\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 \t- Goto function/procedure prompted for in minibuffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 \t hide all other functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 \\[pascal-show-all]\t- Show the whole buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 \\[pascal-hide-other-defuns]\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 \t- Hide everything but the current function (function under the cursor).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 \\[pascal-outline]\t- Leave pascal-outline-mode."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 (setq pascal-outline-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 (if (null arg) (not pascal-outline-mode) t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 (if (boundp 'redraw-mode-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 (redraw-mode-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 (if pascal-outline-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 (setq selective-display t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 (use-local-map pascal-outline-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 (setq selective-display nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 (pascal-show-all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 (use-local-map pascal-mode-map))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 (defun pascal-outline-change (b e pascal-flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 (let ((modp (buffer-modified-p)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 (subst-char-in-region b e (if (= pascal-flag ?\n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 ?\^M ?\n) pascal-flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 (set-buffer-modified-p modp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 (defun pascal-show-all ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 "Show all of the text in the buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 (pascal-outline-change (point-min) (point-max) ?\n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 (defun pascal-hide-other-defuns ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 "Show only the current defun."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 (let ((beg (progn (if (not (looking-at "\\(function\\|procedure\\)\\>"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 (pascal-beg-of-defun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 (end (progn (pascal-end-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 (backward-sexp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 (search-forward "\n\\|\^M" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 (opoint (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 ;; Hide all functions before current function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 (while (re-search-forward "^\\(function\\|procedure\\)\\>" beg 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 (pascal-outline-change opoint (1- (match-beginning 0)) ?\^M)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 (setq opoint (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 ;; Functions may be nested
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 (if (> (progn (pascal-end-of-defun) (point)) beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 (goto-char opoint)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 (if (> beg opoint)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 (pascal-outline-change opoint (1- beg) ?\^M))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 ;; Show current function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 (pascal-outline-change beg end ?\n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 ;; Hide nested functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 (while (re-search-forward "^\\(function\\|procedure\\)\\>" end 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 (setq opoint (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 (pascal-end-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 (pascal-outline-change opoint (point) ?\^M))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 (setq opoint end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 ;; Hide all function after current function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 (while (re-search-forward "^\\(function\\|procedure\\)\\>" nil 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 (pascal-outline-change opoint (1- (match-beginning 0)) ?\^M)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 (setq opoint (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 (pascal-end-of-defun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 (pascal-outline-change opoint (point-max) ?\^M)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 ;; Hide main program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 (if (< (progn (forward-line -1) (point)) end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 (goto-char beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 (pascal-end-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 (backward-sexp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 (pascal-outline-change (point) (point-max) ?\^M))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 (defun pascal-outline-next-defun ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 "Move to next function/procedure, hiding all others."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 (pascal-end-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 (pascal-hide-other-defuns))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 (defun pascal-outline-prev-defun ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 "Move to previous function/procedure, hiding all others."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 (pascal-beg-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 (pascal-hide-other-defuns))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 (defun pascal-outline-goto-defun ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 "Move to specified function/procedure, hiding all others."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 (pascal-goto-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 (pascal-hide-other-defuns))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 ;;; pascal.el ends here