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