(scheme-font-lock-keywords-1): Fontify SCWM/Guile
[bpt/emacs.git] / lisp / progmodes / scheme.el
CommitLineData
1367ff3a 1;;; scheme.el --- Scheme (and DSSSL) editing mode.
c88ab9ce 2
22dcd0d1 3;; Copyright (C) 1986, 87, 88, 97, 1998 Free Software Foundation, Inc.
3a801d0c 4
4228277d 5;; Author: Bill Rozas <jinx@martigny.ai.mit.edu>
d575e99d 6;; Adapted-by: Dave Love <d.love@dl.ac.uk>
d7b4d18f 7;; Keywords: languages, lisp
e5167999 8
ac5b21ac
RS
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
e5167999 13;; the Free Software Foundation; either version 2, or (at your option)
ac5b21ac
RS
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
ac5b21ac 25
e5167999 26;;; Commentary:
ac5b21ac 27
1367ff3a
RS
28;; The major mode for editing Scheme-type Lisp code, very similar to
29;; the Lisp mode documented in the Emacs manual. `dsssl-mode' is a
30;; variant of scheme-mode for editing DSSSL specifications for SGML
31;; documents. [As of Apr 1997, some pointers for DSSSL may be found,
32;; for instance, at <URL:http://www.sil.org/sgml/related.html#dsssl>.]
33;; All these Lisp-ish modes vary basically in details of the language
34;; syntax they highlight/indent/index, but dsssl-mode uses "^;;;" as
35;; the page-delimiter since ^L isn't normally a legal SGML character.
36;;
37;; For interacting with a Scheme interpreter See also `run-scheme' in
38;; the `cmuscheme' package and also the implementation-specific
39;; `xscheme' package.
ac5b21ac 40
2b20743d
DL
41;; Here's a recipe to generate a TAGS file for DSSSL, by the way:
42;; etags --lang=scheme --regex='/[ \t]*(\(mode\|element\)[ \t
43;; ]+\([^ \t(
44;; ]+\)/\2/' --regex='/[ \t]*(element[ \t
45;; ]*([^)]+[ \t
46;; ]+\([^)]+\)[ \t
47;; ]*)/\1/' --regex='/(declare[^ \t
48;; ]*[ \t
49;; ]+\([^ \t
50;; ]+\)/\1/' "$@"
51
e5167999 52;;; Code:
ac5b21ac 53\f
1367ff3a
RS
54(require 'lisp-mode)
55
ac5b21ac
RS
56(defvar scheme-mode-syntax-table nil "")
57(if (not scheme-mode-syntax-table)
58 (let ((i 0))
59 (setq scheme-mode-syntax-table (make-syntax-table))
60 (set-syntax-table scheme-mode-syntax-table)
61
62 ;; Default is atom-constituent.
63 (while (< i 256)
64 (modify-syntax-entry i "_ ")
65 (setq i (1+ i)))
66
67 ;; Word components.
68 (setq i ?0)
69 (while (<= i ?9)
70 (modify-syntax-entry i "w ")
71 (setq i (1+ i)))
72 (setq i ?A)
73 (while (<= i ?Z)
74 (modify-syntax-entry i "w ")
75 (setq i (1+ i)))
76 (setq i ?a)
77 (while (<= i ?z)
78 (modify-syntax-entry i "w ")
79 (setq i (1+ i)))
80
81 ;; Whitespace
82 (modify-syntax-entry ?\t " ")
83 (modify-syntax-entry ?\n "> ")
84 (modify-syntax-entry ?\f " ")
85 (modify-syntax-entry ?\r " ")
86 (modify-syntax-entry ? " ")
87
88 ;; These characters are delimiters but otherwise undefined.
89 ;; Brackets and braces balance for editing convenience.
1367ff3a
RS
90 (modify-syntax-entry ?\[ "(] ")
91 (modify-syntax-entry ?\] ")[ ")
ac5b21ac
RS
92 (modify-syntax-entry ?{ "(} ")
93 (modify-syntax-entry ?} "){ ")
94 (modify-syntax-entry ?\| " 23")
95
96 ;; Other atom delimiters
97 (modify-syntax-entry ?\( "() ")
98 (modify-syntax-entry ?\) ")( ")
99 (modify-syntax-entry ?\; "< ")
100 (modify-syntax-entry ?\" "\" ")
101 (modify-syntax-entry ?' " p")
102 (modify-syntax-entry ?` " p")
103
104 ;; Special characters
105 (modify-syntax-entry ?, "_ p")
106 (modify-syntax-entry ?@ "_ p")
107 (modify-syntax-entry ?# "_ p14")
108 (modify-syntax-entry ?\\ "\\ ")))
109\f
110(defvar scheme-mode-abbrev-table nil "")
111(define-abbrev-table 'scheme-mode-abbrev-table ())
112
1367ff3a
RS
113(defvar scheme-imenu-generic-expression
114 '((nil
d575e99d 115 "^(define\\(\\|-\\(generic\\(\\|-procedure\\)\\|method\\)\\)*\\s-+(?\\(\\sw+\\)" 4)
93a7d76f 116 ("Types"
d575e99d 117 "^(define-class\\s-+(?\\(\\sw+\\)" 1)
93a7d76f 118 ("Macros"
d575e99d 119 "^(\\(defmacro\\|define-macro\\|define-syntax\\)\\s-+(?\\(\\sw+\\)" 2))
1367ff3a
RS
120 "Imenu generic expression for Scheme mode. See `imenu-generic-expression'.")
121
ac5b21ac
RS
122(defun scheme-mode-variables ()
123 (set-syntax-table scheme-mode-syntax-table)
124 (setq local-abbrev-table scheme-mode-abbrev-table)
125 (make-local-variable 'paragraph-start)
53e84345 126 (setq paragraph-start (concat "$\\|" page-delimiter))
ac5b21ac
RS
127 (make-local-variable 'paragraph-separate)
128 (setq paragraph-separate paragraph-start)
129 (make-local-variable 'paragraph-ignore-fill-prefix)
130 (setq paragraph-ignore-fill-prefix t)
1367ff3a
RS
131 (make-local-variable 'fill-paragraph-function)
132 (setq fill-paragraph-function 'lisp-fill-paragraph)
133 ;; Adaptive fill mode gets in the way of auto-fill,
134 ;; and should make no difference for explicit fill
135 ;; because lisp-fill-paragraph should do the job.
136 (make-local-variable 'adaptive-fill-mode)
137 (setq adaptive-fill-mode nil)
761aea38
RS
138 (make-local-variable 'normal-auto-fill-function)
139 (setq normal-auto-fill-function 'lisp-mode-auto-fill)
ac5b21ac 140 (make-local-variable 'indent-line-function)
1367ff3a 141 (setq indent-line-function 'lisp-indent-line)
446e6a14
KH
142 (make-local-variable 'parse-sexp-ignore-comments)
143 (setq parse-sexp-ignore-comments t)
1367ff3a
RS
144 (make-local-variable 'outline-regexp)
145 (setq outline-regexp ";;; \\|(....")
ac5b21ac
RS
146 (make-local-variable 'comment-start)
147 (setq comment-start ";")
148 (make-local-variable 'comment-start-skip)
a24c42f7
MB
149 ;; Look within the line for a ; following an even number of backslashes
150 ;; after either a non-backslash or the line beginning.
151 (setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+[ \t]*")
ac5b21ac
RS
152 (make-local-variable 'comment-column)
153 (setq comment-column 40)
e41b2db1 154 (make-local-variable 'comment-indent-function)
1367ff3a 155 (setq comment-indent-function 'lisp-comment-indent)
2441d53d
RS
156 (make-local-variable 'parse-sexp-ignore-comments)
157 (setq parse-sexp-ignore-comments t)
1367ff3a
RS
158 (make-local-variable 'lisp-indent-function)
159 (set lisp-indent-function 'scheme-indent-function)
160 (setq mode-line-process '("" scheme-mode-line-process))
d575e99d
DL
161 (make-local-variable 'imenu-case-fold-search)
162 (setq imenu-case-fold-search t)
1367ff3a 163 (make-local-variable 'imenu-generic-expression)
c0b08eb0 164 (setq imenu-generic-expression scheme-imenu-generic-expression)
d575e99d 165 (make-local-variable 'imenu-syntax-alist)
22dcd0d1
DL
166 (setq imenu-syntax-alist '(("+-*/.<>=?!$%_&~^:" . "w")))
167 (make-local-variable 'font-lock-defaults)
168 (setq font-lock-defaults
169 '((scheme-font-lock-keywords
170 scheme-font-lock-keywords-1 scheme-font-lock-keywords-2)
171 nil t (("+-*/.<>=!?$%_&~^:" . "w")) beginning-of-defun
172 (font-lock-mark-block-function . mark-defun))))
ac5b21ac
RS
173
174(defvar scheme-mode-line-process "")
175
1367ff3a
RS
176(defvar scheme-mode-map nil
177 "Keymap for Scheme mode.
178All commands in `shared-lisp-mode-map' are inherited by this map.")
179
180(if scheme-mode-map
181 ()
182 (let ((map (make-sparse-keymap "Scheme")))
183 (setq scheme-mode-map
184 (nconc (make-sparse-keymap) shared-lisp-mode-map))
1367ff3a
RS
185 (define-key scheme-mode-map [menu-bar] (make-sparse-keymap))
186 (define-key scheme-mode-map [menu-bar scheme]
187 (cons "Scheme" map))
188 (define-key map [run-scheme] '("Run Inferior Scheme" . run-scheme))
2b20743d
DL
189 (define-key map [uncomment-region]
190 '("Uncomment Out Region" . (lambda (beg end)
191 (interactive "r")
192 (comment-region beg end '(4)))))
1367ff3a
RS
193 (define-key map [comment-region] '("Comment Out Region" . comment-region))
194 (define-key map [indent-region] '("Indent Region" . indent-region))
195 (define-key map [indent-line] '("Indent Line" . lisp-indent-line))
196 (put 'comment-region 'menu-enable 'mark-active)
2b20743d 197 (put 'uncomment-region 'menu-enable 'mark-active)
1367ff3a
RS
198 (put 'indent-region 'menu-enable 'mark-active)))
199
200;; Used by cmuscheme
ac5b21ac 201(defun scheme-mode-commands (map)
48879301 202 ;;(define-key map "\t" 'indent-for-tab-command) ; default
ac5b21ac 203 (define-key map "\177" 'backward-delete-char-untabify)
48879301 204 (define-key map "\e\C-q" 'indent-sexp))
ac5b21ac 205\f
e2ab0aa6 206;;;###autoload
ac5b21ac
RS
207(defun scheme-mode ()
208 "Major mode for editing Scheme code.
209Editing commands are similar to those of lisp-mode.
210
211In addition, if an inferior Scheme process is running, some additional
212commands will be defined, for evaluating expressions and controlling
213the interpreter, and the state of the process will be displayed in the
214modeline of all Scheme buffers. The names of commands that interact
215with the Scheme process start with \"xscheme-\". For more information
216see the documentation for xscheme-interaction-mode.
217
218Commands:
219Delete converts tabs to spaces as it moves back.
220Blank lines separate paragraphs. Semicolons start comments.
221\\{scheme-mode-map}
222Entry to this mode calls the value of scheme-mode-hook
223if that value is non-nil."
224 (interactive)
225 (kill-all-local-variables)
226 (scheme-mode-initialize)
227 (scheme-mode-variables)
228 (run-hooks 'scheme-mode-hook))
229
230(defun scheme-mode-initialize ()
231 (use-local-map scheme-mode-map)
232 (setq major-mode 'scheme-mode)
233 (setq mode-name "Scheme"))
234
48879301
RS
235(defgroup scheme nil
236 "Editing Scheme code"
237 :group 'lisp)
238
239(defcustom scheme-mit-dialect t
ac5b21ac 240 "If non-nil, scheme mode is specialized for MIT Scheme.
48879301
RS
241Set this to nil if you normally use another dialect."
242 :type 'boolean
243 :group 'scheme)
1367ff3a 244
48879301 245(defcustom dsssl-sgml-declaration
1367ff3a
RS
246 "<!DOCTYPE style-sheet PUBLIC \"-//James Clark//DTD DSSSL Style Sheet//EN\">
247"
48879301 248 "*An SGML declaration for the DSSSL file.
2b20743d
DL
249If it is defined as a string this will be inserted into an empty buffer
250which is in dsssl-mode. It is typically James Clark's style-sheet
48879301 251doctype, as required for Jade."
2b20743d
DL
252 :type '(choice (string :tag "Specified string")
253 (const :tag "None" :value nil))
254 :group 'scheme)
255
256(defcustom scheme-mode-hook nil
22dcd0d1 257 "Normal hook (list of functions) run when entering scheme-mode.
2b20743d
DL
258See `run-hooks'."
259 :type 'hook
260 :group 'scheme)
261
262(defcustom dsssl-mode-hook nil
22dcd0d1 263 "Normal hook (list of functions) run when entering dsssl-mode.
2b20743d
DL
264See `run-hooks'."
265 :type 'hook
48879301 266 :group 'scheme)
1367ff3a
RS
267
268(defvar dsssl-imenu-generic-expression
269 ;; Perhaps this should also look for the style-sheet DTD tags. I'm
270 ;; not sure it's the best way to organize it; perhaps one type
271 ;; should be at the first level, though you don't see this anyhow if
272 ;; it gets split up.
93a7d76f 273 '(("Defines"
d575e99d 274 "^(define\\s-+(?\\(\\sw+\\)" 1)
93a7d76f 275 ("Modes"
d575e99d 276 "^\\s-*(mode\\s-+\\(\\(\\sw\\|\\s-\\)+\\)" 1)
93a7d76f 277 ("Elements"
1367ff3a 278 ;; (element foo ...) or (element (foo bar ...) ...)
26d05e22 279 ;; Fixme: Perhaps it should do `root'.
d575e99d 280 "^\\s-*(element\\s-+(?\\(\\(\\sw\\|\\s-\\)+\\))?" 1)
93a7d76f 281 ("Declarations"
d575e99d 282 "^(declare\\(-\\sw+\\)+\\>\\s-+\\(\\sw+\\)" 2))
1367ff3a
RS
283 "Imenu generic expression for DSSSL mode. See `imenu-generic-expression'.")
284
22dcd0d1
DL
285(defconst scheme-font-lock-keywords-1
286 (eval-when-compile
287 (list
288 ;;
289 ;; Declarations. Hannes Haug <hannes.haug@student.uni-tuebingen.de> says
290 ;; this works for SOS, STklos, SCOOPS, Meroon and Tiny CLOS.
405ff5ea 291 (list (concat "(\\(define\\*?\\("
22dcd0d1 292 ;; Function names.
405ff5ea 293 "\\(\\|-public\\|-method\\|-generic\\(-procedure\\)?\\)\\|"
22dcd0d1
DL
294 ;; Macro names, as variable names. A bit dubious, this.
295 "\\(-syntax\\)\\|"
296 ;; Class names.
297 "-class"
405ff5ea
RS
298 ;; Guile modules.
299 "\\|-module"
22dcd0d1
DL
300 "\\)\\)\\>"
301 ;; Any whitespace and declared object.
302 "[ \t]*(?"
303 "\\(\\sw+\\)?")
304 '(1 font-lock-keyword-face)
305 '(6 (cond ((match-beginning 3) font-lock-function-name-face)
306 ((match-beginning 5) font-lock-variable-name-face)
307 (t font-lock-type-face))
308 nil t))
309 ))
310 "Subdued expressions to highlight in Scheme modes.")
311
312(defconst scheme-font-lock-keywords-2
313 (append scheme-font-lock-keywords-1
314 (eval-when-compile
315 (list
316 ;;
317 ;; Control structures.
318 (cons
319 (concat
320 "(" (regexp-opt
321 '("begin" "call-with-current-continuation" "call/cc"
322 "call-with-input-file" "call-with-output-file" "case" "cond"
323 "do" "else" "for-each" "if" "lambda"
324 "let" "let*" "let-syntax" "letrec" "letrec-syntax"
325 ;; Hannes Haug <hannes.haug@student.uni-tuebingen.de> wants:
326 "and" "or" "delay"
327 ;; Stefan Monnier <stefan.monnier@epfl.ch> says don't bother:
328 ;;"quasiquote" "quote" "unquote" "unquote-splicing"
329 "map" "syntax" "syntax-rules") t)
330 "\\>") 1)
331 ;;
332 ;; David Fox <fox@graphics.cs.nyu.edu> for SOS/STklos class specifiers.
333 '("\\<<\\sw+>\\>" . font-lock-type-face)
334 ;;
335 ;; Scheme `:' keywords as builtins.
336 '("\\<:\\sw+\\>" . font-lock-builtin-face)
337 )))
338 "Gaudy expressions to highlight in Scheme modes.")
339
340(defvar scheme-font-lock-keywords scheme-font-lock-keywords-1
341 "Default expressions to highlight in Scheme modes.")
342
1367ff3a
RS
343;;;###autoload
344(defun dsssl-mode ()
345 "Major mode for editing DSSSL code.
346Editing commands are similar to those of lisp-mode.
347
348Commands:
349Delete converts tabs to spaces as it moves back.
350Blank lines separate paragraphs. Semicolons start comments.
351\\{scheme-mode-map}
22dcd0d1
DL
352Entering this mode runs the hooks `scheme-mode-hook' and then
353`dsssl-mode-hook' and inserts the value of `dsssl-sgml-declaration' if
354that variable's value is a string."
1367ff3a
RS
355 (interactive)
356 (kill-all-local-variables)
357 (use-local-map scheme-mode-map)
358 (scheme-mode-initialize)
1367ff3a
RS
359 (make-local-variable 'page-delimiter)
360 (setq page-delimiter "^;;;" ; ^L not valid SGML char
361 major-mode 'dsssl-mode
362 mode-name "DSSSL")
363 ;; Insert a suitable SGML declaration into an empty buffer.
364 (and (zerop (buffer-size))
26d05e22 365 (stringp dsssl-sgml-declaration)
1367ff3a
RS
366 (not buffer-read-only)
367 (insert dsssl-sgml-declaration))
1367ff3a 368 (scheme-mode-variables)
22dcd0d1
DL
369 (setq font-lock-defaults '(dsssl-font-lock-keywords
370 nil t (("+-*/.<>=?$%_&~^:" . "w"))
371 beginning-of-defun
372 (font-lock-mark-block-function . mark-defun)))
d575e99d 373 (setq imenu-case-fold-search nil)
c0b08eb0 374 (setq imenu-generic-expression dsssl-imenu-generic-expression)
22dcd0d1
DL
375 (setq imenu-syntax-alist '(("+-*/.<>=?$%_&~^:" . "w")))
376 (run-hooks 'scheme-mode-hook)
377 (run-hooks 'dsssl-mode-hook))
1367ff3a
RS
378
379;; Extra syntax for DSSSL. This isn't separated from Scheme, but
380;; shouldn't cause much trouble in scheme-mode.
381(put 'element 'scheme-indent-function 1)
382(put 'mode 'scheme-indent-function 1)
383(put 'with-mode 'scheme-indent-function 1)
2f5029f3 384(put 'make 'scheme-indent-function 1)
26d05e22
RS
385(put 'style 'scheme-indent-function 1)
386(put 'root 'scheme-indent-function 1)
1367ff3a
RS
387
388(defvar dsssl-font-lock-keywords
26d05e22
RS
389 (eval-when-compile
390 (list
391 ;; Similar to Scheme
392 (list "(\\(define\\(-\\w+\\)?\\)\\>[ ]*\\\((?\\)\\(\\sw+\\)\\>"
393 '(1 font-lock-keyword-face)
394 '(4 font-lock-function-name-face))
395 (cons
396 (concat "(\\("
397 ;; (make-regexp '("case" "cond" "else" "if" "lambda"
398 ;; "let" "let*" "letrec" "and" "or" "map" "with-mode"))
399 "and\\|c\\(ase\\|ond\\)\\|else\\|if\\|"
400 "l\\(ambda\\|et\\(\\|*\\|rec\\)\\)\\|map\\|or\\|with-mode"
401 "\\)\\>")
402 1)
403 ;; DSSSL syntax
404 '("(\\(element\\|mode\\|declare-\\w+\\)\\>[ ]*\\(\\sw+\\)"
405 (1 font-lock-keyword-face)
406 (2 font-lock-type-face))
407 '("(\\(element\\)\\>[ ]*(\\(\\S)+\\))"
408 (1 font-lock-keyword-face)
409 (2 font-lock-type-face))
883212ce 410 '("\\<\\sw+:\\>" . font-lock-constant-face) ; trailing `:' c.f. scheme
26d05e22
RS
411 ;; SGML markup (from sgml-mode) :
412 '("<\\([!?][-a-z0-9]+\\)" 1 font-lock-keyword-face)
413 '("<\\(/?[-a-z0-9]+\\)" 1 font-lock-function-name-face)))
1367ff3a
RS
414 "Default expressions to highlight in DSSSL mode.")
415
ac5b21ac 416\f
1367ff3a
RS
417(defvar calculate-lisp-indent-last-sexp)
418
419;; Copied from lisp-indent-function, but with gets of
420;; scheme-indent-{function,hook}.
ac5b21ac
RS
421(defun scheme-indent-function (indent-point state)
422 (let ((normal-indent (current-column)))
1367ff3a
RS
423 (goto-char (1+ (elt state 1)))
424 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
425 (if (and (elt state 2)
426 (not (looking-at "\\sw\\|\\s_")))
427 ;; car of form doesn't seem to be a a symbol
428 (progn
429 (if (not (> (save-excursion (forward-line 1) (point))
430 calculate-lisp-indent-last-sexp))
431 (progn (goto-char calculate-lisp-indent-last-sexp)
432 (beginning-of-line)
433 (parse-partial-sexp (point)
434 calculate-lisp-indent-last-sexp 0 t)))
435 ;; Indent under the list or under the first sexp on the same
436 ;; line as calculate-lisp-indent-last-sexp. Note that first
437 ;; thing on that line has to be complete sexp since we are
438 ;; inside the innermost containing sexp.
439 (backward-prefix-chars)
440 (current-column))
441 (let ((function (buffer-substring (point)
442 (progn (forward-sexp 1) (point))))
443 method)
444 (setq method (or (get (intern-soft function) 'scheme-indent-function)
445 (get (intern-soft function) 'scheme-indent-hook)))
446 (cond ((or (eq method 'defun)
447 (and (null method)
448 (> (length function) 3)
449 (string-match "\\`def" function)))
450 (lisp-indent-defform state indent-point))
451 ((integerp method)
452 (lisp-indent-specform method state
453 indent-point normal-indent))
454 (method
61185f42 455 (funcall method state indent-point normal-indent)))))))
1367ff3a 456
ac5b21ac
RS
457\f
458;;; Let is different in Scheme
459
460(defun would-be-symbol (string)
461 (not (string-equal (substring string 0 1) "(")))
462
463(defun next-sexp-as-string ()
464 ;; Assumes that protected by a save-excursion
465 (forward-sexp 1)
466 (let ((the-end (point)))
467 (backward-sexp 1)
468 (buffer-substring (point) the-end)))
469
470;; This is correct but too slow.
471;; The one below works almost always.
472;;(defun scheme-let-indent (state indent-point)
473;; (if (would-be-symbol (next-sexp-as-string))
474;; (scheme-indent-specform 2 state indent-point)
475;; (scheme-indent-specform 1 state indent-point)))
476
61185f42 477(defun scheme-let-indent (state indent-point normal-indent)
ac5b21ac 478 (skip-chars-forward " \t")
61361a07 479 (if (looking-at "[-a-zA-Z0-9+*/?!@$%^&_:~]")
61185f42
KH
480 (lisp-indent-specform 2 state indent-point normal-indent)
481 (lisp-indent-specform 1 state indent-point normal-indent)))
ac5b21ac
RS
482
483;; (put 'begin 'scheme-indent-function 0), say, causes begin to be indented
484;; like defun if the first form is placed on the next line, otherwise
485;; it is indented like any other form (i.e. forms line up under first).
486
487(put 'begin 'scheme-indent-function 0)
488(put 'case 'scheme-indent-function 1)
489(put 'delay 'scheme-indent-function 0)
490(put 'do 'scheme-indent-function 2)
491(put 'lambda 'scheme-indent-function 1)
492(put 'let 'scheme-indent-function 'scheme-let-indent)
493(put 'let* 'scheme-indent-function 1)
494(put 'letrec 'scheme-indent-function 1)
2b20743d
DL
495(put 'sequence 'scheme-indent-function 0) ; SICP, not r4rs
496(put 'let-syntax 'scheme-indent-function 1)
497(put 'letrec-syntax 'scheme-indent-function 1)
498(put 'syntax-rules 'scheme-indent-function 1)
499
ac5b21ac
RS
500
501(put 'call-with-input-file 'scheme-indent-function 1)
502(put 'with-input-from-file 'scheme-indent-function 1)
503(put 'with-input-from-port 'scheme-indent-function 1)
504(put 'call-with-output-file 'scheme-indent-function 1)
505(put 'with-output-to-file 'scheme-indent-function 1)
506(put 'with-output-to-port 'scheme-indent-function 1)
2b20743d
DL
507(put 'call-with-values 'scheme-indent-function 1) ; r5rs?
508(put 'dynamic-wind 'scheme-indent-function 3) ; r5rs?
ac5b21ac
RS
509\f
510;;;; MIT Scheme specific indentation.
511
512(if scheme-mit-dialect
513 (progn
514 (put 'fluid-let 'scheme-indent-function 1)
515 (put 'in-package 'scheme-indent-function 1)
ac5b21ac
RS
516 (put 'local-declare 'scheme-indent-function 1)
517 (put 'macro 'scheme-indent-function 1)
518 (put 'make-environment 'scheme-indent-function 0)
519 (put 'named-lambda 'scheme-indent-function 1)
520 (put 'using-syntax 'scheme-indent-function 1)
521
522 (put 'with-input-from-string 'scheme-indent-function 1)
523 (put 'with-output-to-string 'scheme-indent-function 0)
524 (put 'with-values 'scheme-indent-function 1)
525
526 (put 'syntax-table-define 'scheme-indent-function 2)
527 (put 'list-transform-positive 'scheme-indent-function 1)
528 (put 'list-transform-negative 'scheme-indent-function 1)
529 (put 'list-search-positive 'scheme-indent-function 1)
530 (put 'list-search-negative 'scheme-indent-function 1)
531
532 (put 'access-components 'scheme-indent-function 1)
533 (put 'assignment-components 'scheme-indent-function 1)
534 (put 'combination-components 'scheme-indent-function 1)
535 (put 'comment-components 'scheme-indent-function 1)
536 (put 'conditional-components 'scheme-indent-function 1)
537 (put 'disjunction-components 'scheme-indent-function 1)
538 (put 'declaration-components 'scheme-indent-function 1)
539 (put 'definition-components 'scheme-indent-function 1)
540 (put 'delay-components 'scheme-indent-function 1)
541 (put 'in-package-components 'scheme-indent-function 1)
542 (put 'lambda-components 'scheme-indent-function 1)
543 (put 'lambda-components* 'scheme-indent-function 1)
544 (put 'lambda-components** 'scheme-indent-function 1)
545 (put 'open-block-components 'scheme-indent-function 1)
546 (put 'pathname-components 'scheme-indent-function 1)
547 (put 'procedure-components 'scheme-indent-function 1)
548 (put 'sequence-components 'scheme-indent-function 1)
549 (put 'unassigned\?-components 'scheme-indent-function 1)
550 (put 'unbound\?-components 'scheme-indent-function 1)
551 (put 'variable-components 'scheme-indent-function 1)))
49116ac0
JB
552
553(provide 'scheme)
c88ab9ce
ER
554
555;;; scheme.el ends here