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

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