1 ;;; cl-indent.el --- enhanced lisp-indent mode
3 ;; Copyright (C) 1987, 2000, 2001, 2002 Free Software Foundation, Inc.
5 ;; Author: Richard Mlynarik <mly@eddie.mit.edu>
8 ;; Keywords: lisp, tools
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 2, or (at your option)
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; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
29 ;; This package supplies a single entry point, common-lisp-indent-function,
30 ;; which performs indentation in the preferred style for Common Lisp code.
33 ;; (setq lisp-indent-function 'common-lisp-indent-function)
40 ;; &key (like &body)??
42 ;; &rest 1 in lambda-lists doesn't work
43 ;; -- really want (foo bar
47 ;; Need something better than &rest for such cases
51 (defgroup lisp-indent nil
56 (defcustom lisp-indent-maximum-backtracking
3
57 "*Maximum depth to backtrack out from a sublist for structured indentation.
58 If this variable is 0, no backtracking will occur and forms such as flet
59 may not be correctly indented."
63 (defcustom lisp-tag-indentation
1
64 "*Indentation of tags relative to containing list.
65 This variable is used by the function `lisp-indent-tagbody'."
69 (defcustom lisp-tag-body-indentation
3
70 "*Indentation of non-tagged lines relative to containing list.
71 This variable is used by the function `lisp-indent-tagbody' to indent normal
72 lines (lines without tags).
73 The indentation is relative to the indentation of the parenthesis enclosing
74 the special form. If the value is t, the body of tags will be indented
75 as a block at the same indentation as the first s-expression following
76 the tag. In this case, any forms before the first tag are indented
77 by `lisp-body-indent'."
81 (defcustom lisp-backquote-indentation t
82 "*Whether or not to indent backquoted lists as code.
83 If nil, indent backquoted lists as data, i.e., like quoted lists."
88 (defcustom lisp-loop-keyword-indentation
3
89 "*Indentation of loop keywords in extended loop forms."
94 (defcustom lisp-loop-forms-indentation
5
95 "*Indentation of forms in extended loop forms."
100 (defcustom lisp-simple-loop-indentation
3
101 "*Indentation of forms in simple loop forms."
106 (defvar lisp-indent-error-function
)
107 (defvar lisp-indent-defun-method
'(4 &lambda
&body
))
110 (defun extended-loop-p (loop-start)
111 "True if an extended loop form starts at LOOP-START."
114 (goto-char loop-start
)
122 (defun common-lisp-loop-part-indentation (indent-point state
)
123 "Compute the indentation of loop form constituents."
124 (let* ((loop-indentation (save-excursion
125 (goto-char (elt state
1))
127 (goto-char indent-point
)
129 (cond ((not (extended-loop-p (elt state
1)))
130 (+ loop-indentation lisp-simple-loop-indentation
))
131 ((looking-at "^\\s-*\\(:?\\sw+\\|;\\)")
132 (+ loop-indentation lisp-loop-keyword-indentation
))
134 (+ loop-indentation lisp-loop-forms-indentation
)))))
138 (defun common-lisp-indent-function (indent-point state
)
139 (if (save-excursion (goto-char (elt state
1))
140 (looking-at "([Ll][Oo][Oo][Pp]"))
141 (common-lisp-loop-part-indentation indent-point state
)
142 (common-lisp-indent-function-1 indent-point state
)))
145 (defun common-lisp-indent-function-1 (indent-point state
)
146 (let ((normal-indent (current-column)))
147 ;; Walk up list levels until we see something
148 ;; which does special things with subforms.
150 ;; Path describes the position of point in terms of
151 ;; list-structure with respect to containing lists.
152 ;; `foo' has a path of (0 4 1) in `((a b c (d foo) f) g)'
154 ;; set non-nil when somebody works out the indentation to use
156 ;; If non-nil, this is an indentation to use
157 ;; if nothing else specifies it more firmly.
159 (last-point indent-point
)
160 ;; the position of the open-paren of the innermost containing list
161 (containing-form-start (elt state
1))
162 ;; the column of the above
164 ;; Move to start of innermost containing list
165 (goto-char containing-form-start
)
166 (setq sexp-column
(current-column))
168 ;; Look over successively less-deep containing forms
169 (while (and (not calculated
)
170 (< depth lisp-indent-maximum-backtracking
))
171 (let ((containing-sexp (point)))
173 (parse-partial-sexp (point) indent-point
1 t
)
174 ;; Move to the car of the relevant containing form
175 (let (tem function method tentative-defun
)
176 (if (not (looking-at "\\sw\\|\\s_"))
177 ;; This form doesn't seem to start with a symbol
178 (setq function nil method nil
)
181 (setq function
(downcase (buffer-substring-no-properties
184 (setq tem
(intern-soft function
)
185 method
(get tem
'common-lisp-indent-function
))
186 (cond ((and (null method
)
187 (string-match ":[^:]+" function
))
188 ;; The pleblisp package feature
189 (setq function
(substring function
190 (1+ (match-beginning 0)))
191 method
(get (intern-soft function
)
192 'common-lisp-indent-function
)))
194 ;; backwards compatibility
195 (setq method
(get tem
'lisp-indent-function
)))))
197 ;; How far into the containing form is the current form?
198 (if (< (point) indent-point
)
199 (while (condition-case ()
202 (if (>= (point) indent-point
)
204 (parse-partial-sexp (point)
209 (setq path
(cons n path
)))
211 ;; backwards compatibility.
212 (cond ((null function
))
214 (when (null (cdr path
))
215 ;; (package prefix was stripped off above)
216 (cond ((string-match "\\`def"
218 (setq tentative-defun
t))
222 (regexp-opt '("with" "without" "do"))
225 (setq method
'(&lambda
&body
))))))
226 ;; backwards compatibility. Bletch.
228 (setq method lisp-indent-defun-method
)))
230 (cond ((and (or (eq (char-after (1- containing-sexp
)) ?
\')
231 (and (not lisp-backquote-indentation
)
232 (eq (char-after (1- containing-sexp
)) ?\
`)))
233 (not (eq (char-after (- containing-sexp
2)) ?\
#)))
234 ;; No indentation for "'(...)" elements
235 (setq calculated
(1+ sexp-column
)))
236 ((or (eq (char-after (1- containing-sexp
)) ?\
,)
237 (and (eq (char-after (1- containing-sexp
)) ?\
@)
238 (eq (char-after (- containing-sexp
2)) ?\
,)))
239 ;; ",(...)" or ",@(...)"
240 (setq calculated normal-indent
))
241 ((eq (char-after (1- containing-sexp
)) ?\
#)
243 (setq calculated
(1+ sexp-column
)))
245 ;; If this looks like a call to a `def...' form,
246 ;; think about indenting it as one, but do it
247 ;; tentatively for cases like
250 ;; Set both normal-indent and tentative-calculated.
251 ;; The latter ensures this value gets used
252 ;; if there are no relevant containing constructs.
253 ;; The former ensures this value gets used
254 ;; if there is a relevant containing construct
255 ;; but we are nested within the structure levels
256 ;; that it specifies indentation for.
258 (setq tentative-calculated
259 (common-lisp-indent-call-method
260 function lisp-indent-defun-method
261 path state indent-point
262 sexp-column normal-indent
)
263 normal-indent tentative-calculated
)))
265 ;; convenient top-level hack.
266 ;; (also compatible with lisp-indent-function)
267 ;; The number specifies how many `distinguished'
268 ;; forms there are before the body starts
269 ;; Equivalent to (4 4 ... &body)
270 (setq calculated
(cond ((cdr path
)
272 ((<= (car path
) method
)
273 ;; `distinguished' form
274 (list (+ sexp-column
4)
275 containing-form-start
))
276 ((= (car path
) (1+ method
))
278 (+ sexp-column lisp-body-indent
))
284 (common-lisp-indent-call-method
285 function method path state indent-point
286 sexp-column normal-indent
)))))
287 (goto-char containing-sexp
)
288 (setq last-point containing-sexp
)
291 (progn (backward-up-list 1)
292 (setq depth
(1+ depth
)))
293 (error (setq depth lisp-indent-maximum-backtracking
))))))
294 (or calculated tentative-calculated
))))
297 (defun common-lisp-indent-call-method (function method path state indent-point
298 sexp-column normal-indent
)
299 (let ((lisp-indent-error-function function
))
302 path state indent-point
303 sexp-column normal-indent
)
304 (lisp-indent-259 method path state indent-point
305 sexp-column normal-indent
))))
307 (defun lisp-indent-report-bad-format (m)
308 (error "%s has a badly-formed %s property: %s"
309 ;; Love those free variable references!!
310 lisp-indent-error-function
'common-lisp-indent-function m
))
312 ;; Blame the crufty control structure on dynamic scoping
314 (defun lisp-indent-259 (method path state indent-point
315 sexp-column normal-indent
)
318 (containing-form-start (elt state
1))
320 ;; Isn't tail-recursion wonderful?
322 ;; This while loop is for destructuring.
323 ;; p is set to (cdr p) each iteration.
324 (if (not (consp method
)) (lisp-indent-report-bad-format method
))
329 ;; This while loop is for advancing along a method
330 ;; until the relevant (possibly &rest/&body) pattern
332 ;; n is set to (1- n) and method to (cdr method)
334 (setq tem
(car method
))
336 (or (eq tem
'nil
) ;default indentation
337 (eq tem
'&lambda
) ;lambda list
338 (and (eq tem
'&body
) (null (cdr method
)))
341 (null (cddr method
)))
342 (integerp tem
) ;explicit indentation specified
343 (and (consp tem
) ;destructuring
344 (eq (car tem
) '&whole
)
345 (or (symbolp (cadr tem
))
346 (integerp (cadr tem
))))
347 (and (symbolp tem
) ;a function to call to do the work.
349 (lisp-indent-report-bad-format method
))
351 (cond ((and tail
(not (consp tem
)))
352 ;; indent tail of &rest in same way as first elt of rest
353 (throw 'exit normal-indent
))
355 ;; &body means (&rest <lisp-body-indent>)
357 (if (and (= n
0) ;first body form
358 (null p
)) ;not in subforms
363 ;; this pattern holds for all remaining forms
366 method
(cdr method
)))
368 ;; try next element of pattern
372 ;; Too few elements in pattern.
373 (throw 'exit normal-indent
)))
375 (throw 'exit
(list normal-indent containing-form-start
)))
379 (list (+ sexp-column
4) containing-form-start
))
385 (if (null p
) ;not in subforms
386 (list (+ sexp-column tem
) containing-form-start
)
388 ((symbolp tem
) ;a function to call
390 (funcall tem path state indent-point
391 sexp-column normal-indent
)))
393 ;; must be a destructing frob
396 (setq method
(cddr tem
)
398 (setq tem
(cadr tem
))
404 containing-form-start
))
406 (list (+ sexp-column tem
)
407 containing-form-start
))
409 (funcall tem path state indent-point
410 sexp-column normal-indent
))))))))))))
412 (defun lisp-indent-tagbody (path state indent-point sexp-column normal-indent
)
413 (if (not (null (cdr path
)))
416 (goto-char indent-point
)
418 (skip-chars-forward " \t")
419 (list (cond ((looking-at "\\sw\\|\\s_")
421 (+ sexp-column lisp-tag-indentation
))
422 ((integerp lisp-tag-body-indentation
)
423 (+ sexp-column lisp-tag-body-indentation
))
424 ((eq lisp-tag-body-indentation
't
)
426 (progn (backward-sexp 1) (current-column))
427 (error (1+ sexp-column
))))
428 (t (+ sexp-column lisp-body-indent
)))
429 ; (cond ((integerp lisp-tag-body-indentation)
430 ; (+ sexp-column lisp-tag-body-indentation))
431 ; ((eq lisp-tag-body-indentation 't)
434 ; (+ sexp-column lisp-body-indent)))
438 (defun lisp-indent-do (path state indent-point sexp-column normal-indent
)
439 (if (>= (car path
) 3)
440 (let ((lisp-tag-body-indentation lisp-body-indent
))
441 (funcall (function lisp-indent-tagbody
)
442 path state indent-point sexp-column normal-indent
))
443 (funcall (function lisp-indent-259
)
445 ;; the following causes weird indentation
448 (&whole nil
&rest
1))
449 path state indent-point sexp-column normal-indent
)))
452 (defun lisp-indent-defmethod (path state indent-point sexp-column
454 "Indentation function defmethod."
455 (lisp-indent-259 (if (and (>= (car path
) 3)
457 (save-excursion (goto-char (elt state
1))
461 (looking-at ":\\|\\sw+")))
462 '(4 4 (&whole
4 &rest
4) &body
)
463 (get 'defun
'common-lisp-indent-function
))
464 path state indent-point sexp-column normal-indent
))
467 (defun lisp-indent-function-lambda-hack (path state indent-point
468 sexp-column normal-indent
)
469 ;; indent (function (lambda () <newline> <body-forms>)) kludgily.
470 (if (or (cdr path
) ; wtf?
472 ;; line up under previous body form
474 ;; line up under function rather than under lambda in order to
475 ;; conserve horizontal space. (Which is what #' is for.)
480 (if (looking-at "\\(lisp:+\\)?function\\(\\Sw\\|\\S_\\)")
481 (+ lisp-body-indent -
1 (current-column))
482 (+ sexp-column lisp-body-indent
)))
483 (error (+ sexp-column lisp-body-indent
)))))
488 (case (4 &rest
(&whole
2 &rest
1)))
489 (ccase . case
) (ecase . case
)
490 (typecase . case
) (etypecase . case
) (ctypecase . case
)
492 (cond (&rest
(&whole
2 &rest
1)))
494 (defclass (6 4 (&whole
2 &rest
1) (&whole
2 &rest
1)))
495 (defconstant . defvar
)
496 (defcustom (4 2 2 2))
497 (defparameter . defvar
)
498 (defconst . defcustom
)
499 (define-condition . defclass
)
500 (define-modify-macro (4 &lambda
&body
))
501 (defsetf (4 &lambda
4 &body
))
502 (defun (4 &lambda
&body
))
503 (define-setf-method . defun
)
504 (define-setf-expander . defun
)
505 (defmacro . defun
) (defsubst . defun
) (deftype . defun
)
506 (defmethod lisp-indent-defmethod)
508 (defstruct ((&whole
4 &rest
(&whole
2 &rest
1))
509 &rest
(&whole
2 &rest
1)))
511 ((&whole
6 &rest
1) 4 &body
))
514 (dolist ((&whole
4 2 1) &body
))
517 (flet ((&whole
4 &rest
(&whole
1 &lambda
&body
)) &body
))
520 (generic-flet . flet
) (generic-labels . flet
)
521 (handler-case (4 &rest
(&whole
2 &lambda
&body
)))
522 (restart-case . handler-case
)
525 ;; single-else style (then and else equally indented)
527 (lambda (&lambda
&rest lisp-indent-function-lambda-hack
))
528 (let ((&whole
4 &rest
(&whole
1 1 2)) &body
))
530 (compiler-let . let
) ;barf
531 (handler-bind . let
) (restart-bind . let
)
533 ;(loop lisp-indent-loop)
534 (:method
(&lambda
&body
)) ; in `defgeneric'
535 (multiple-value-bind ((&whole
6 &rest
1) 4 &body
))
536 (multiple-value-call (4 &body
))
537 (multiple-value-prog1 1)
538 (multiple-value-setq (4 2))
539 (multiple-value-setf . multiple-value-setq
)
540 (pprint-logical-block (4 2))
541 (print-unreadable-object ((&whole
4 1 &rest
1) &body
))
542 ;; Combines the worst features of BLOCK, LET and TAGBODY
543 (prog (&lambda
&rest lisp-indent-tagbody
))
550 (return-from (nil &body
))
551 (symbol-macrolet . let
)
552 (tagbody lisp-indent-tagbody
)
555 (unwind-protect (5 &body
))
557 (with-accessors . multiple-value-bind
)
558 (with-condition-restarts . multiple-value-bind
)
559 (with-output-to-string (4 2))
560 (with-slots . multiple-value-bind
)
561 (with-standard-io-syntax (2)))))
563 (put (car el
) 'common-lisp-indent-function
564 (if (symbolp (cdr el
))
565 (get (cdr el
) 'common-lisp-indent-function
)
580 ; (flet ((foo (bar baz zap)
598 ;(put 'while 'common-lisp-indent-function 1)
599 ;(put 'defwrapper'common-lisp-indent-function ...)
600 ;(put 'def 'common-lisp-indent-function ...)
601 ;(put 'defflavor 'common-lisp-indent-function ...)
602 ;(put 'defsubst 'common-lisp-indent-function ...)
604 ;(put 'with-restart 'common-lisp-indent-function '((1 4 ((* 1))) (2 &body)))
605 ;(put 'restart-case 'common-lisp-indent-function '((1 4) (* 2 ((0 1) (* 1)))))
606 ;(put 'define-condition 'common-lisp-indent-function '((1 6) (2 6 ((&whole 1))) (3 4 ((&whole 1))) (4 &body)))
607 ;(put 'with-condition-handler 'common-lisp-indent-function '((1 4 ((* 1))) (2 &body)))
608 ;(put 'condition-case 'common-lisp-indent-function '((1 4) (* 2 ((0 1) (1 3) (2 &body)))))
609 ;(put 'defclass 'common-lisp-indent-function '((&whole 2 &rest (&whole 2 &rest 1) &rest (&whole 2 &rest 1)))
610 ;(put 'defgeneric 'common-lisp-indent-function 'defun)
612 ;;; arch-tag: 7914d50f-92ec-4476-93fc-0f043a380e03
613 ;;; cl-indent.el ends here