annotate lisp/modes/pascal.el @ 151:59463afc5666 r20-3b2

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