annotate lisp/modes/pascal.el @ 177:6075d714658b r20-3b15

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