1 ;;; modula2.el --- Modula-2 editing support package
3 ;; Author: Michael Schmidt <michael@pbinfo.UUCP>
4 ;; Tom Perrine <Perrin@LOGICON.ARPA>
8 ;; The authors distributed this without a copyright notice
9 ;; back in 1988, so it is in the public domain. The original included
10 ;; the following credit:
13 ;; amended Peter Robinson
17 ;; A major mode for editing Modula-2 code. It provides convenient abbrevs
18 ;; for Modula-2 keywords, knows about the standard layout rules, and supports
19 ;; a native compile command.
24 "Major mode for editing Modula-2 code."
28 ;;; Added by Tom Perrine (TEP)
29 (defvar m2-mode-syntax-table nil
30 "Syntax table in use in Modula-2 buffers.")
32 (defcustom m2-compile-command
"m2c"
33 "Command to compile Modula-2 programs."
37 (defcustom m2-link-command
"m2l"
38 "Command to link Modula-2 programs."
42 (defcustom m2-link-name nil
43 "Name of the Modula-2 executable."
44 :type
'(choice (const nil
) string
)
47 (defcustom m2-end-comment-column
75
48 "*Column for aligning the end of a comment, in Modula-2."
52 (if m2-mode-syntax-table
54 (let ((table (make-syntax-table)))
55 (modify-syntax-entry ?
\\ "\\" table
)
56 (modify-syntax-entry ?\
( ". 1" table
)
57 (modify-syntax-entry ?\
) ". 4" table
)
58 (modify-syntax-entry ?
* ". 23" table
)
59 (modify-syntax-entry ?
+ "." table
)
60 (modify-syntax-entry ?-
"." table
)
61 (modify-syntax-entry ?
= "." table
)
62 (modify-syntax-entry ?%
"." table
)
63 (modify-syntax-entry ?
< "." table
)
64 (modify-syntax-entry ?
> "." table
)
65 (modify-syntax-entry ?
\' "\"" table
)
66 (setq m2-mode-syntax-table table
)))
69 (defvar m2-mode-map nil
70 "Keymap used in Modula-2 mode.")
73 (let ((map (make-sparse-keymap)))
74 (define-key map
"\^i" 'm2-tab
)
75 (define-key map
"\C-cb" 'm2-begin
)
76 (define-key map
"\C-cc" 'm2-case
)
77 (define-key map
"\C-cd" 'm2-definition
)
78 (define-key map
"\C-ce" 'm2-else
)
79 (define-key map
"\C-cf" 'm2-for
)
80 (define-key map
"\C-ch" 'm2-header
)
81 (define-key map
"\C-ci" 'm2-if
)
82 (define-key map
"\C-cm" 'm2-module
)
83 (define-key map
"\C-cl" 'm2-loop
)
84 (define-key map
"\C-co" 'm2-or
)
85 (define-key map
"\C-cp" 'm2-procedure
)
86 (define-key map
"\C-c\C-w" 'm2-with
)
87 (define-key map
"\C-cr" 'm2-record
)
88 (define-key map
"\C-cs" 'm2-stdio
)
89 (define-key map
"\C-ct" 'm2-type
)
90 (define-key map
"\C-cu" 'm2-until
)
91 (define-key map
"\C-cv" 'm2-var
)
92 (define-key map
"\C-cw" 'm2-while
)
93 (define-key map
"\C-cx" 'm2-export
)
94 (define-key map
"\C-cy" 'm2-import
)
95 (define-key map
"\C-c{" 'm2-begin-comment
)
96 (define-key map
"\C-c}" 'm2-end-comment
)
97 (define-key map
"\C-j" 'm2-newline
)
98 (define-key map
"\C-c\C-z" 'suspend-emacs
)
99 (define-key map
"\C-c\C-v" 'm2-visit
)
100 (define-key map
"\C-c\C-t" 'm2-toggle
)
101 (define-key map
"\C-c\C-l" 'm2-link
)
102 (define-key map
"\C-c\C-c" 'm2-compile
)
103 (setq m2-mode-map map
)))
105 (defcustom m2-indent
5
106 "*This variable gives the indentation in Modula-2-Mode."
111 (defun modula-2-mode ()
112 "This is a mode intended to support program development in Modula-2.
113 All control constructs of Modula-2 can be reached by typing C-c
114 followed by the first character of the construct.
116 \\[m2-begin] begin \\[m2-case] case
117 \\[m2-definition] definition \\[m2-else] else
118 \\[m2-for] for \\[m2-header] header
119 \\[m2-if] if \\[m2-module] module
120 \\[m2-loop] loop \\[m2-or] or
121 \\[m2-procedure] procedure Control-c Control-w with
122 \\[m2-record] record \\[m2-stdio] stdio
123 \\[m2-type] type \\[m2-until] until
124 \\[m2-var] var \\[m2-while] while
125 \\[m2-export] export \\[m2-import] import
126 \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
127 \\[suspend-emacs] suspend Emacs \\[m2-toggle] toggle
128 \\[m2-compile] compile \\[m2-next-error] next-error
131 `m2-indent' controls the number of spaces for each indentation.
132 `m2-compile-command' holds the command to compile a Modula-2 program.
133 `m2-link-command' holds the command to link a Modula-2 program."
135 (kill-all-local-variables)
136 (use-local-map m2-mode-map
)
137 (setq major-mode
'modula-2-mode
)
138 (setq mode-name
"Modula-2")
139 (make-local-variable 'comment-column
)
140 (setq comment-column
41)
141 (make-local-variable 'm2-end-comment-column
)
142 (set-syntax-table m2-mode-syntax-table
)
143 (make-local-variable 'paragraph-start
)
144 (setq paragraph-start
(concat "$\\|" page-delimiter
))
145 (make-local-variable 'paragraph-separate
)
146 (setq paragraph-separate paragraph-start
)
147 (make-local-variable 'paragraph-ignore-fill-prefix
)
148 (setq paragraph-ignore-fill-prefix t
)
149 ; (make-local-variable 'indent-line-function)
150 ; (setq indent-line-function 'c-indent-line)
151 (make-local-variable 'require-final-newline
)
152 (setq require-final-newline t
)
153 (make-local-variable 'comment-start
)
154 (setq comment-start
"(* ")
155 (make-local-variable 'comment-end
)
156 (setq comment-end
" *)")
157 (make-local-variable 'comment-column
)
158 (setq comment-column
41)
159 (make-local-variable 'comment-start-skip
)
160 (setq comment-start-skip
"/\\*+ *")
161 (make-local-variable 'comment-indent-function
)
162 (setq comment-indent-function
'c-comment-indent
)
163 (make-local-variable 'parse-sexp-ignore-comments
)
164 (setq parse-sexp-ignore-comments t
)
165 (make-local-variable 'font-lock-defaults
)
166 (setq font-lock-defaults
167 '((m3-font-lock-keywords
168 m3-font-lock-keywords-1 m3-font-lock-keywords-2
)
169 nil nil
((?_ .
"w") (?. .
"w") (?
< .
". 1") (?
> .
". 4")) nil
170 ;; Obsoleted by Emacs 19.35 parse-partial-sexp's COMMENTSTOP.
171 ;(font-lock-comment-start-regexp . "(\\*")
173 (run-hooks 'm2-mode-hook
))
175 ;; Regexps written with help from Ron Forrester <ron@orcad.com>
176 ;; and Spencer Allain <sallain@teknowledge.com>.
177 (defconst m3-font-lock-keywords-1
180 ;; Module definitions.
181 ("\\<\\(INTERFACE\\|MODULE\\|PROCEDURE\\)\\>[ \t]*\\(\\sw+\\)?"
182 (1 font-lock-keyword-face
) (2 font-lock-function-name-face nil t
))
184 ;; Import directives.
185 ("\\<\\(EXPORTS\\|FROM\\|IMPORT\\)\\>"
186 (1 font-lock-keyword-face
)
187 (font-lock-match-c-style-declaration-item-and-skip-to-next
188 nil
(goto-char (match-end 0))
189 (1 font-lock-constant-face
)))
191 ;; Pragmas as warnings.
192 ;; Spencer Allain <sallain@teknowledge.com> says do them as comments...
193 ;; ("<\\*.*\\*>" . font-lock-warning-face)
194 ;; ... but instead we fontify the first word.
195 ("<\\*[ \t]*\\(\\sw+\\)" 1 font-lock-warning-face prepend
)
197 "Subdued level highlighting for Modula-3 modes.")
199 (defconst m3-font-lock-keywords-2
200 (append m3-font-lock-keywords-1
204 '("INTEGER" "BITS" "BOOLEAN" "CARDINAL" "CHAR" "FLOAT" "REAL"
205 "LONGREAL" "REFANY" "ADDRESS" "ARRAY" "SET" "TEXT"
206 "MUTEX" "ROOT" "EXTENDED")))
209 '("AND" "ANY" "AS" "BEGIN" "BRANDED" "BY" "CASE" "CONST" "DIV"
210 "DO" "ELSE" "ELSIF" "EVAL" "EXCEPT" "EXIT" "FINALLY"
211 "FOR" "GENERIC" "IF" "IN" "LOCK" "LOOP" "METHODS" "MOD" "NOT"
212 "OBJECT" "OF" "OR" "OVERRIDES" "READONLY" "RECORD" "REF"
213 "REPEAT" "RETURN" "REVEAL" "THEN" "TO" "TRY"
214 "TYPE" "TYPECASE" "UNSAFE" "UNTIL" "UNTRACED" "VAR" "VALUE"
218 '("ABS" "ADR" "ADRSIZE" "BITSIZE" "BYTESIZE" "CEILING"
219 "DEC" "DISPOSE" "FIRST" "FLOOR" "INC" "ISTYPE" "LAST"
220 "LOOPHOLE" "MAX" "MIN" "NARROW" "NEW" "NUMBER" "ORD"
221 "ROUND" "SUBARRAY" "TRUNC" "TYPECODE" "VAL")))
225 ;; Keywords except those fontified elsewhere.
226 (concat "\\<\\(" m3-keywords
"\\)\\>")
229 (cons (concat "\\<\\(" m3-builtins
"\\)\\>") 'font-lock-builtin-face
)
232 (cons (concat "\\<\\(" m3-types
"\\)\\>") 'font-lock-type-face
)
234 ;; Fontify tokens as function names.
235 '("\\<\\(END\\|EXCEPTION\\|RAISES?\\)\\>[ \t{]*"
236 (1 font-lock-keyword-face
)
237 (font-lock-match-c-style-declaration-item-and-skip-to-next
238 nil
(goto-char (match-end 0))
239 (1 font-lock-function-name-face
)))
241 ;; Fontify constants as references.
242 '("\\<\\(FALSE\\|NIL\\|NULL\\|TRUE\\)\\>" . font-lock-constant-face
)
244 "Gaudy level highlighting for Modula-3 modes.")
246 (defvar m3-font-lock-keywords m3-font-lock-keywords-1
247 "Default expressions to highlight in Modula-3 modes.")
249 ;; We don't actually have different keywords for Modula-2. Volunteers?
250 (defconst m2-font-lock-keywords-1 m3-font-lock-keywords-1
251 "Subdued level highlighting for Modula-2 modes.")
253 (defconst m2-font-lock-keywords-2 m3-font-lock-keywords-2
254 "Gaudy level highlighting for Modula-2 modes.")
256 (defvar m2-font-lock-keywords m2-font-lock-keywords-1
257 "Default expressions to highlight in Modula-2 modes.")
260 "Insert a newline and indent following line like previous line."
262 (let ((hpos (current-indentation)))
267 "Indent to next tab stop."
269 (indent-to (* (1+ (/ (current-indentation) m2-indent
)) m2-indent
)))
272 "Insert a BEGIN keyword and indent for the next line."
279 "Build skeleton CASE statement, prompting for the <expression>."
281 (let ((name (read-string "Case-Expression: ")))
282 (insert "CASE " name
" OF")
285 (insert "END (* case " name
" *);"))
289 (defun m2-definition ()
290 "Build skeleton DEFINITION MODULE, prompting for the <module name>."
292 (insert "DEFINITION MODULE ")
293 (let ((name (read-string "Name: ")))
294 (insert name
";\n\n\n\nEND " name
".\n"))
298 "Insert ELSE keyword and indent for next line."
301 (backward-delete-char-untabify m2-indent
())
307 "Build skeleton FOR loop statement, prompting for the loop parameters."
310 (let ((name (read-string "Loop Initialiser: ")) limit by
)
312 (setq limit
(read-string "Limit: "))
314 (setq by
(read-string "Step: "))
315 (if (not (string-equal by
""))
320 (insert "END (* for " name
" to " limit
" *);"))
325 "Insert a comment block containing the module title, author, etc."
327 (insert "(*\n Title: \t")
328 (insert (read-string "Title: "))
329 (insert "\n Created:\t")
330 (insert (current-time-string))
331 (insert "\n Author: \t")
332 (insert (user-full-name))
333 (insert (concat "\n\t\t<" (user-login-name) "@" (system-name) ">\n"))
337 "Insert skeleton IF statement, prompting for <boolean-expression>."
340 (let ((thecondition (read-string "<boolean-expression>: ")))
341 (insert thecondition
" THEN")
344 (insert "END (* if " thecondition
" *);"))
349 "Build skeleton LOOP (with END)."
354 (insert "END (* loop *);")
359 "Build skeleton IMPLEMENTATION MODULE, prompting for <module-name>."
361 (insert "IMPLEMENTATION MODULE ")
362 (let ((name (read-string "Name: ")))
363 (insert name
";\n\n\n\nEND " name
".\n")
372 (insert " Module " name
" Initialisation Code "))
380 (backward-delete-char-untabify m2-indent
)
385 (defun m2-procedure ()
387 (insert "PROCEDURE ")
388 (let ((name (read-string "Name: " ))
391 (insert (read-string "Arguments: ") ")")
392 (setq args
(read-string "Result Type: "))
393 (if (not (string-equal args
""))
409 (let ((name (read-string "Record-Type: ")))
414 (insert "END (* with " name
" *);"))
423 (insert "END (* record *);")
431 WriteCHAR, ReadCHAR, WriteINTEGER, ReadINTEGER,
432 WriteCARDINAL, ReadCARDINAL, WriteBOOLEAN, ReadBOOLEAN,
433 WriteREAL, ReadREAL, WriteBITSET, ReadBITSET,
434 WriteBasedCARDINAL, ReadBasedCARDINAL, WriteChars, ReadChars,
435 WriteString, ReadString, WhiteSpace, EndOfLine;
437 FROM SysStreams IMPORT sysIn, sysOut, sysErr;
453 (insert (read-string "<boolean-expression>: ") ";")
467 (let ((name (read-string "<boolean-expression>: ")))
471 (insert "END (* while " name
" *);"))
477 (insert "EXPORT QUALIFIED "))
482 (insert (read-string "Module: "))
485 (defun m2-begin-comment ()
488 (indent-to comment-column
0))
491 (defun m2-end-comment ()
494 (indent-to m2-end-comment-column
))
499 (compile (concat m2-compile-command
" " (buffer-name))))
504 (compile (concat m2-link-command
" " m2-link-name
))
505 (compile (concat m2-link-command
" "
506 (setq m2-link-name
(read-string "Name of executable: "
509 (defun m2-execute-monitor-command (command)
510 (let* ((shell shell-file-name
)
511 (csh (equal (file-name-nondirectory shell
) "csh")))
512 (call-process shell nil t t
"-cf" (concat "exec " command
))))
521 (read-string "Module name: "))
522 (switch-to-buffer "*Command Execution*")
523 (m2-execute-monitor-command (concat "m2whereis " modulename
))
524 (goto-char (point-min))
526 (progn (re-search-forward "\\(.*\\.def\\) *$")
527 (setq deffile
(buffer-substring (match-beginning 1)
531 (progn (re-search-forward "\\(.*\\.mod\\) *$")
532 (setq modfile
(buffer-substring (match-beginning 1)
535 (if (not (or deffile modfile
))
536 (error "I can find neither definition nor implementation of %s"
542 (find-file modfile
))))
544 (find-file modfile
)))))
547 "Toggle between .mod and .def files for the module."
549 (cond ((string-equal (substring (buffer-name) -
4) ".def")
550 (find-file-other-window
551 (concat (substring (buffer-name) 0 -
4) ".mod")))
552 ((string-equal (substring (buffer-name) -
4) ".mod")
553 (find-file-other-window
554 (concat (substring (buffer-name) 0 -
4) ".def")))
555 ((string-equal (substring (buffer-name) -
3) ".mi")
556 (find-file-other-window
557 (concat (substring (buffer-name) 0 -
3) ".md")))
558 ((string-equal (substring (buffer-name) -
3) ".md")
559 (find-file-other-window
560 (concat (substring (buffer-name) 0 -
3) ".mi")))))
564 ;;; modula2.el ends here