annotate lisp/emacs-lisp/cl-indent.el @ 112278:ef719132ddfa

Nuke arch-tags.
author Glenn Morris <rgm@gnu.org>
date Sat, 15 Jan 2011 15:16:57 -0800
parents 417b1e4d63cd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
662
8a533acedb77 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 257
diff changeset
1 ;;; cl-indent.el --- enhanced lisp-indent mode
8a533acedb77 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 257
diff changeset
2
103498
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
3 ;; Copyright (C) 1987, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
4 ;; 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
5
14040
187735b53d52 Comment fixes.
Karl Heuer <kwzh@gnu.org>
parents: 3591
diff changeset
6 ;; Author: Richard Mlynarik <mly@eddie.mit.edu>
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
7 ;; Created: July 1987
845
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 811
diff changeset
8 ;; Maintainer: FSF
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 811
diff changeset
9 ;; Keywords: lisp, tools
110015
280c8ae2476d Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents: 106815
diff changeset
10 ;; Package: emacs
845
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 811
diff changeset
11
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 ;; This file is part of GNU Emacs.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13
94655
90a2847062be Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 ;; it under the terms of the GNU General Public License as published by
94655
90a2847062be Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
16 ;; the Free Software Foundation, either version 3 of the License, or
90a2847062be Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
17 ;; (at your option) any later version.
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19 ;; GNU Emacs is distributed in the hope that it will be useful,
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22 ;; GNU General Public License for more details.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
23
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
24 ;; You should have received a copy of the GNU General Public License
94655
90a2847062be Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
26
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 662
diff changeset
27 ;;; Commentary:
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 662
diff changeset
28
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
29 ;; This package supplies a single entry point, common-lisp-indent-function,
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
30 ;; which performs indentation in the preferred style for Common Lisp code.
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
31 ;; To enable it:
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
32 ;;
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
33 ;; (setq lisp-indent-function 'common-lisp-indent-function)
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
34
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
35 ;;>> TODO
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
36 ;; :foo
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
37 ;; bar
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
38 ;; :baz
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
39 ;; zap
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
40 ;; &key (like &body)??
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
41
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
42 ;; &rest 1 in lambda-lists doesn't work
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
43 ;; -- really want (foo bar
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
44 ;; baz)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
45 ;; not (foo bar
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
46 ;; baz)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
47 ;; Need something better than &rest for such cases
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
48
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 662
diff changeset
49 ;;; Code:
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
50
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
51 (defgroup lisp-indent nil
63972
d07b7088d847 (lisp-indent-maximum-backtracking): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents: 56736
diff changeset
52 "Indentation in Lisp."
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
53 :group 'lisp)
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
54
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
55
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
56 (defcustom lisp-indent-maximum-backtracking 3
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
57 "Maximum depth to backtrack out from a sublist for structured indentation.
63972
d07b7088d847 (lisp-indent-maximum-backtracking): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents: 56736
diff changeset
58 If this variable is 0, no backtracking will occur and forms such as `flet'
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
59 may not be correctly indented."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
60 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
61 :group 'lisp-indent)
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
62
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
63 (defcustom lisp-tag-indentation 1
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
64 "Indentation of tags relative to containing list.
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
65 This variable is used by the function `lisp-indent-tagbody'."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
66 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
67 :group 'lisp-indent)
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
68
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
69 (defcustom lisp-tag-body-indentation 3
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
70 "Indentation of non-tagged lines relative to containing list.
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
71 This variable is used by the function `lisp-indent-tagbody' to indent normal
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
72 lines (lines without tags).
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
73 The indentation is relative to the indentation of the parenthesis enclosing
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
74 the special form. If the value is t, the body of tags will be indented
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
75 as a block at the same indentation as the first s-expression following
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
76 the tag. In this case, any forms before the first tag are indented
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
77 by `lisp-body-indent'."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
78 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
79 :group 'lisp-indent)
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
80
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
81 (defcustom lisp-backquote-indentation t
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
82 "Whether or not to indent backquoted lists as code.
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
83 If nil, indent backquoted lists as data, i.e., like quoted lists."
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
84 :type 'boolean
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
85 :group 'lisp-indent)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
86
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
87
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
88 (defcustom lisp-loop-keyword-indentation 3
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
89 "Indentation of loop keywords in extended loop forms."
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
90 :type 'integer
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
91 :group 'lisp-indent)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
92
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
93
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
94 (defcustom lisp-loop-forms-indentation 5
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
95 "Indentation of forms in extended loop forms."
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
96 :type 'integer
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
97 :group 'lisp-indent)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
98
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
99
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
100 (defcustom lisp-simple-loop-indentation 3
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
101 "Indentation of forms in simple loop forms."
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
102 :type 'integer
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
103 :group 'lisp-indent)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
104
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
105
103498
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
106 (defvar lisp-indent-defun-method '(4 &lambda &body)
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
107 "Indentation for function with `common-lisp-indent-function' property `defun'.")
22212
b95ba3830bc9 (lisp-indent-error-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22180
diff changeset
108
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
109
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
110 (defun extended-loop-p (loop-start)
47298
c6dddb2746ee * emacs-lisp/cl-indent.el (extended-loop-p): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents: 45573
diff changeset
111 "True if an extended loop form starts at LOOP-START."
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
112 (condition-case ()
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
113 (save-excursion
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
114 (goto-char loop-start)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
115 (forward-char 1)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
116 (forward-sexp 2)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
117 (backward-sexp 1)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
118 (looking-at "\\sw"))
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
119 (error t)))
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
120
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
121
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
122 (defun common-lisp-loop-part-indentation (indent-point state)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
123 "Compute the indentation of loop form constituents."
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
124 (let* ((loop-indentation (save-excursion
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
125 (goto-char (elt state 1))
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
126 (current-column))))
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
127 (goto-char indent-point)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
128 (beginning-of-line)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
129 (cond ((not (extended-loop-p (elt state 1)))
43920
af0b9648d018 (common-lisp-loop-part-indentation):
Gerd Moellmann <gerd@gnu.org>
parents: 43859
diff changeset
130 (+ loop-indentation lisp-simple-loop-indentation))
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
131 ((looking-at "^\\s-*\\(:?\\sw+\\|;\\)")
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
132 (+ loop-indentation lisp-loop-keyword-indentation))
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
133 (t
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
134 (+ loop-indentation lisp-loop-forms-indentation)))))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47298
diff changeset
135
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
136
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
137 ;;;###autoload
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
138 (defun common-lisp-indent-function (indent-point state)
103498
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
139 "Function to indent the arguments of a Lisp function call.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
140 This is suitable for use as the value of the variable
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
141 `lisp-indent-function'. INDENT-POINT is the point at which the
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
142 indentation function is called, and STATE is the
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
143 `parse-partial-sexp' state at that position. Browse the
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
144 `lisp-indent' customize group for options affecting the behavior
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
145 of this function.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
146
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
147 If the indentation point is in a call to a Lisp function, that
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
148 function's common-lisp-indent-function property specifies how
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
149 this function should indent it. Possible values for this
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
150 property are:
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
151
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
152 * defun, meaning indent according to `lisp-indent-defun-method';
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
153 i.e., like (4 &lambda &body), as explained below.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
154
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
155 * any other symbol, meaning a function to call. The function should
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
156 take the arguments: PATH STATE INDENT-POINT SEXP-COLUMN NORMAL-INDENT.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
157 PATH is a list of integers describing the position of point in terms of
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
158 list-structure with respect to the containing lists. For example, in
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
159 ((a b c (d foo) f) g), foo has a path of (0 3 1). In other words,
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
160 to reach foo take the 0th element of the outermost list, then
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
161 the 3rd element of the next list, and finally the 1st element.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
162 STATE and INDENT-POINT are as in the arguments to
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
163 `common-lisp-indent-function'. SEXP-COLUMN is the column of
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
164 the open parenthesis of the innermost containing list.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
165 NORMAL-INDENT is the column the indentation point was
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
166 originally in. This function should behave like `lisp-indent-259'.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
167
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
168 * an integer N, meaning indent the first N arguments like
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
169 function arguments, and any further arguments like a body.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
170 This is equivalent to (4 4 ... &body).
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
171
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
172 * a list. The list element in position M specifies how to indent the Mth
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
173 function argument. If there are fewer elements than function arguments,
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
174 the last list element applies to all remaining arguments. The accepted
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
175 list elements are:
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
176
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
177 * nil, meaning the default indentation.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
178
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
179 * an integer, specifying an explicit indentation.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
180
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
181 * &lambda. Indent the argument (which may be a list) by 4.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
182
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
183 * &rest. When used, this must be the penultimate element. The
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
184 element after this one applies to all remaining arguments.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
185
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
186 * &body. This is equivalent to &rest lisp-body-indent, i.e., indent
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
187 all remaining elements by `lisp-body-indent'.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
188
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
189 * &whole. This must be followed by nil, an integer, or a
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
190 function symbol. This indentation is applied to the
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
191 associated argument, and as a base indent for all remaining
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
192 arguments. For example, an integer P means indent this
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
193 argument by P, and all remaining arguments by P, plus the
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
194 value specified by their associated list element.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
195
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
196 * a symbol. A function to call, with the 6 arguments specified above.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
197
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
198 * a list, with elements as described above. This applies when the
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
199 associated function argument is itself a list. Each element of the list
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
200 specifies how to indent the associated argument.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
201
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
202 For example, the function `case' has an indent property
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
203 \(4 &rest (&whole 2 &rest 1)), meaning:
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
204 * indent the first argument by 4.
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
205 * arguments after the first should be lists, and there may be any number
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
206 of them. The first list element has an offset of 2, all the rest
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
207 have an offset of 2+1=3."
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
208 (if (save-excursion (goto-char (elt state 1))
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
209 (looking-at "([Ll][Oo][Oo][Pp]"))
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
210 (common-lisp-loop-part-indentation indent-point state)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
211 (common-lisp-indent-function-1 indent-point state)))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47298
diff changeset
212
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47298
diff changeset
213
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
214 (defun common-lisp-indent-function-1 (indent-point state)
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
215 (let ((normal-indent (current-column)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
216 ;; Walk up list levels until we see something
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
217 ;; which does special things with subforms.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
218 (let ((depth 0)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
219 ;; Path describes the position of point in terms of
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 2307
diff changeset
220 ;; list-structure with respect to containing lists.
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
221 ;; `foo' has a path of (0 4 1) in `((a b c (d foo) f) g)'
103498
4470991d3249 (lisp-indent-defun-method, common-lisp-indent-function): Add doc strings.
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
222 ;; (Surely (0 3 1)?).
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
223 (path ())
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
224 ;; set non-nil when somebody works out the indentation to use
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
225 calculated
45573
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
226 ;; If non-nil, this is an indentation to use
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
227 ;; if nothing else specifies it more firmly.
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
228 tentative-calculated
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
229 (last-point indent-point)
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
230 ;; the position of the open-paren of the innermost containing list
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
231 (containing-form-start (elt state 1))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
232 ;; the column of the above
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
233 sexp-column)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
234 ;; Move to start of innermost containing list
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
235 (goto-char containing-form-start)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
236 (setq sexp-column (current-column))
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
237
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
238 ;; Look over successively less-deep containing forms
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
239 (while (and (not calculated)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
240 (< depth lisp-indent-maximum-backtracking))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
241 (let ((containing-sexp (point)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
242 (forward-char 1)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
243 (parse-partial-sexp (point) indent-point 1 t)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
244 ;; Move to the car of the relevant containing form
45573
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
245 (let (tem function method tentative-defun)
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
246 (if (not (looking-at "\\sw\\|\\s_"))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
247 ;; This form doesn't seem to start with a symbol
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
248 (setq function nil method nil)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
249 (setq tem (point))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
250 (forward-sexp 1)
22858
77090a500417 (lisp-indent-defun-method): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22756
diff changeset
251 (setq function (downcase (buffer-substring-no-properties
77090a500417 (lisp-indent-defun-method): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22756
diff changeset
252 tem (point))))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
253 (goto-char tem)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
254 (setq tem (intern-soft function)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
255 method (get tem 'common-lisp-indent-function))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
256 (cond ((and (null method)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
257 (string-match ":[^:]+" function))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
258 ;; The pleblisp package feature
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
259 (setq function (substring function
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
260 (1+ (match-beginning 0)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
261 method (get (intern-soft function)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
262 'common-lisp-indent-function)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
263 ((and (null method))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
264 ;; backwards compatibility
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
265 (setq method (get tem 'lisp-indent-function)))))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
266 (let ((n 0))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
267 ;; How far into the containing form is the current form?
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
268 (if (< (point) indent-point)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
269 (while (condition-case ()
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
270 (progn
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
271 (forward-sexp 1)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
272 (if (>= (point) indent-point)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
273 nil
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
274 (parse-partial-sexp (point)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
275 indent-point 1 t)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
276 (setq n (1+ n))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
277 t))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
278 (error nil))))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
279 (setq path (cons n path)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
280
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
281 ;; backwards compatibility.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
282 (cond ((null function))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
283 ((null method)
22858
77090a500417 (lisp-indent-defun-method): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22756
diff changeset
284 (when (null (cdr path))
45573
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
285 ;; (package prefix was stripped off above)
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
286 (cond ((string-match "\\`def"
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
287 function)
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
288 (setq tentative-defun t))
55636
c2f8040b4ece (common-lisp-indent-function-1): Indent "without-" forms just
Sam Steingold <sds@gnu.org>
parents: 52401
diff changeset
289 ((string-match
c2f8040b4ece (common-lisp-indent-function-1): Indent "without-" forms just
Sam Steingold <sds@gnu.org>
parents: 52401
diff changeset
290 (eval-when-compile
c2f8040b4ece (common-lisp-indent-function-1): Indent "without-" forms just
Sam Steingold <sds@gnu.org>
parents: 52401
diff changeset
291 (concat "\\`\\("
c2f8040b4ece (common-lisp-indent-function-1): Indent "without-" forms just
Sam Steingold <sds@gnu.org>
parents: 52401
diff changeset
292 (regexp-opt '("with" "without" "do"))
c2f8040b4ece (common-lisp-indent-function-1): Indent "without-" forms just
Sam Steingold <sds@gnu.org>
parents: 52401
diff changeset
293 "\\)-"))
c2f8040b4ece (common-lisp-indent-function-1): Indent "without-" forms just
Sam Steingold <sds@gnu.org>
parents: 52401
diff changeset
294 function)
45573
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
295 (setq method '(&lambda &body))))))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
296 ;; backwards compatibility. Bletch.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
297 ((eq method 'defun)
22858
77090a500417 (lisp-indent-defun-method): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22756
diff changeset
298 (setq method lisp-indent-defun-method)))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
299
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
300 (cond ((and (or (eq (char-after (1- containing-sexp)) ?\')
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
301 (and (not lisp-backquote-indentation)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
302 (eq (char-after (1- containing-sexp)) ?\`)))
26047
e6efd0ace0f3 (common-lisp-indent-function): Use `eq' instead of `eql'.
Gerd Moellmann <gerd@gnu.org>
parents: 23725
diff changeset
303 (not (eq (char-after (- containing-sexp 2)) ?\#)))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
304 ;; No indentation for "'(...)" elements
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
305 (setq calculated (1+ sexp-column)))
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
306 ((or (eq (char-after (1- containing-sexp)) ?\,)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
307 (and (eq (char-after (1- containing-sexp)) ?\@)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
308 (eq (char-after (- containing-sexp 2)) ?\,)))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
309 ;; ",(...)" or ",@(...)"
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
310 (setq calculated normal-indent))
26047
e6efd0ace0f3 (common-lisp-indent-function): Use `eq' instead of `eql'.
Gerd Moellmann <gerd@gnu.org>
parents: 23725
diff changeset
311 ((eq (char-after (1- containing-sexp)) ?\#)
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
312 ;; "#(...)"
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
313 (setq calculated (1+ sexp-column)))
45573
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
314 ((null method)
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
315 ;; If this looks like a call to a `def...' form,
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
316 ;; think about indenting it as one, but do it
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
317 ;; tentatively for cases like
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
318 ;; (flet ((defunp ()
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
319 ;; nil)))
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
320 ;; Set both normal-indent and tentative-calculated.
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
321 ;; The latter ensures this value gets used
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
322 ;; if there are no relevant containing constructs.
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
323 ;; The former ensures this value gets used
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
324 ;; if there is a relevant containing construct
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
325 ;; but we are nested within the structure levels
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
326 ;; that it specifies indentation for.
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
327 (if tentative-defun
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
328 (setq tentative-calculated
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
329 (common-lisp-indent-call-method
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
330 function lisp-indent-defun-method
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
331 path state indent-point
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
332 sexp-column normal-indent)
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
333 normal-indent tentative-calculated)))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
334 ((integerp method)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
335 ;; convenient top-level hack.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
336 ;; (also compatible with lisp-indent-function)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
337 ;; The number specifies how many `distinguished'
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
338 ;; forms there are before the body starts
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
339 ;; Equivalent to (4 4 ... &body)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
340 (setq calculated (cond ((cdr path)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
341 normal-indent)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
342 ((<= (car path) method)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
343 ;; `distinguished' form
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
344 (list (+ sexp-column 4)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
345 containing-form-start))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
346 ((= (car path) (1+ method))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
347 ;; first body form.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
348 (+ sexp-column lisp-body-indent))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
349 (t
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
350 ;; other body form
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
351 normal-indent))))
45573
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
352 (t
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
353 (setq calculated
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
354 (common-lisp-indent-call-method
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
355 function method path state indent-point
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
356 sexp-column normal-indent)))))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
357 (goto-char containing-sexp)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
358 (setq last-point containing-sexp)
22858
77090a500417 (lisp-indent-defun-method): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22756
diff changeset
359 (unless calculated
45573
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
360 (condition-case ()
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
361 (progn (backward-up-list 1)
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
362 (setq depth (1+ depth)))
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
363 (error (setq depth lisp-indent-maximum-backtracking))))))
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
364 (or calculated tentative-calculated))))
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
365
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
366
45573
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
367 (defun common-lisp-indent-call-method (function method path state indent-point
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
368 sexp-column normal-indent)
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
369 (let ((lisp-indent-error-function function))
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
370 (if (symbolp method)
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
371 (funcall method
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
372 path state indent-point
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
373 sexp-column normal-indent)
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
374 (lisp-indent-259 method path state indent-point
54fb43cbbd73 (common-lisp-indent-function-1):
Richard M. Stallman <rms@gnu.org>
parents: 43920
diff changeset
375 sexp-column normal-indent))))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
376
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
377 ;; Dynamically bound in common-lisp-indent-call-method.
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
378 (defvar lisp-indent-error-function)
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
379
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
380 (defun lisp-indent-report-bad-format (m)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
381 (error "%s has a badly-formed %s property: %s"
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
382 ;; Love those free variable references!!
22212
b95ba3830bc9 (lisp-indent-error-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22180
diff changeset
383 lisp-indent-error-function 'common-lisp-indent-function m))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
384
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
385 ;; Blame the crufty control structure on dynamic scoping
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
386 ;; -- not on me!
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
387 (defun lisp-indent-259 (method path state indent-point
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
388 sexp-column normal-indent)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
389 (catch 'exit
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
390 (let ((p path)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
391 (containing-form-start (elt state 1))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
392 n tem tail)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
393 ;; Isn't tail-recursion wonderful?
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
394 (while p
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
395 ;; This while loop is for destructuring.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
396 ;; p is set to (cdr p) each iteration.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
397 (if (not (consp method)) (lisp-indent-report-bad-format method))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
398 (setq n (1- (car p))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
399 p (cdr p)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
400 tail nil)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
401 (while n
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
402 ;; This while loop is for advancing along a method
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
403 ;; until the relevant (possibly &rest/&body) pattern
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
404 ;; is reached.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
405 ;; n is set to (1- n) and method to (cdr method)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
406 ;; each iteration.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
407 (setq tem (car method))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
408
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
409 (or (eq tem 'nil) ;default indentation
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
410 (eq tem '&lambda) ;lambda list
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
411 (and (eq tem '&body) (null (cdr method)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
412 (and (eq tem '&rest)
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
413 (consp (cdr method))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
414 (null (cddr method)))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
415 (integerp tem) ;explicit indentation specified
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
416 (and (consp tem) ;destructuring
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
417 (eq (car tem) '&whole)
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
418 (or (symbolp (cadr tem))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
419 (integerp (cadr tem))))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
420 (and (symbolp tem) ;a function to call to do the work.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
421 (null (cdr method)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
422 (lisp-indent-report-bad-format method))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
423
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
424 (cond ((and tail (not (consp tem)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
425 ;; indent tail of &rest in same way as first elt of rest
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
426 (throw 'exit normal-indent))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
427 ((eq tem '&body)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
428 ;; &body means (&rest <lisp-body-indent>)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
429 (throw 'exit
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
430 (if (and (= n 0) ;first body form
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
431 (null p)) ;not in subforms
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
432 (+ sexp-column
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
433 lisp-body-indent)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
434 normal-indent)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
435 ((eq tem '&rest)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
436 ;; this pattern holds for all remaining forms
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
437 (setq tail (> n 0)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
438 n 0
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
439 method (cdr method)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
440 ((> n 0)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
441 ;; try next element of pattern
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
442 (setq n (1- n)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
443 method (cdr method))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
444 (if (< n 0)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
445 ;; Too few elements in pattern.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
446 (throw 'exit normal-indent)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
447 ((eq tem 'nil)
73497
c1427878fdcf * emacs-lisp/cl-indent.el (lisp-indent-259): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 73496
diff changeset
448 (throw 'exit (if (consp normal-indent)
c1427878fdcf * emacs-lisp/cl-indent.el (lisp-indent-259): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 73496
diff changeset
449 normal-indent
c1427878fdcf * emacs-lisp/cl-indent.el (lisp-indent-259): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 73496
diff changeset
450 (list normal-indent containing-form-start))))
73496
f93751296dc3 * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
Chong Yidong <cyd@stupidchicken.com>
parents: 68648
diff changeset
451 ((eq tem '&lambda)
f93751296dc3 * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
Chong Yidong <cyd@stupidchicken.com>
parents: 68648
diff changeset
452 (throw 'exit
f93751296dc3 * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
Chong Yidong <cyd@stupidchicken.com>
parents: 68648
diff changeset
453 (cond ((null p)
f93751296dc3 * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
Chong Yidong <cyd@stupidchicken.com>
parents: 68648
diff changeset
454 (list (+ sexp-column 4) containing-form-start))
f93751296dc3 * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
Chong Yidong <cyd@stupidchicken.com>
parents: 68648
diff changeset
455 ((null (cdr p))
f93751296dc3 * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
Chong Yidong <cyd@stupidchicken.com>
parents: 68648
diff changeset
456 (+ sexp-column 1))
f93751296dc3 * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
Chong Yidong <cyd@stupidchicken.com>
parents: 68648
diff changeset
457 (t normal-indent))))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
458 ((integerp tem)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
459 (throw 'exit
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
460 (if (null p) ;not in subforms
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
461 (list (+ sexp-column tem) containing-form-start)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
462 normal-indent)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
463 ((symbolp tem) ;a function to call
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
464 (throw 'exit
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
465 (funcall tem path state indent-point
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
466 sexp-column normal-indent)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
467 (t
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
468 ;; must be a destructing frob
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
469 (if (not (null p))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
470 ;; descend
22858
77090a500417 (lisp-indent-defun-method): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22756
diff changeset
471 (setq method (cddr tem)
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
472 n nil)
22858
77090a500417 (lisp-indent-defun-method): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22756
diff changeset
473 (setq tem (cadr tem))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
474 (throw 'exit
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
475 (cond (tail
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
476 normal-indent)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
477 ((eq tem 'nil)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
478 (list normal-indent
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
479 containing-form-start))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
480 ((integerp tem)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
481 (list (+ sexp-column tem)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
482 containing-form-start))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
483 (t
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
484 (funcall tem path state indent-point
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
485 sexp-column normal-indent))))))))))))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
486
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
487 (defun lisp-indent-tagbody (path state indent-point sexp-column normal-indent)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
488 (if (not (null (cdr path)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
489 normal-indent
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
490 (save-excursion
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
491 (goto-char indent-point)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
492 (beginning-of-line)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
493 (skip-chars-forward " \t")
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
494 (list (cond ((looking-at "\\sw\\|\\s_")
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
495 ;; a tagbody tag
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
496 (+ sexp-column lisp-tag-indentation))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
497 ((integerp lisp-tag-body-indentation)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
498 (+ sexp-column lisp-tag-body-indentation))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
499 ((eq lisp-tag-body-indentation 't)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
500 (condition-case ()
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
501 (progn (backward-sexp 1) (current-column))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
502 (error (1+ sexp-column))))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
503 (t (+ sexp-column lisp-body-indent)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
504 ; (cond ((integerp lisp-tag-body-indentation)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
505 ; (+ sexp-column lisp-tag-body-indentation))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
506 ; ((eq lisp-tag-body-indentation 't)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
507 ; normal-indent)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
508 ; (t
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
509 ; (+ sexp-column lisp-body-indent)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
510 (elt state 1)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
511 ))))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
512
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
513 (defun lisp-indent-do (path state indent-point sexp-column normal-indent)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
514 (if (>= (car path) 3)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
515 (let ((lisp-tag-body-indentation lisp-body-indent))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
516 (funcall (function lisp-indent-tagbody)
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
517 path state indent-point sexp-column normal-indent))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
518 (funcall (function lisp-indent-259)
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
519 '((&whole nil &rest
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
520 ;; the following causes weird indentation
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
521 ;;(&whole 1 1 2 nil)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
522 )
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
523 (&whole nil &rest 1))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
524 path state indent-point sexp-column normal-indent)))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
525
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
526
40952
2ca1b56f3bb1 Indent properly `generic-flet', `generic-labels', `with-accessors',
Sam Steingold <sds@gnu.org>
parents: 38826
diff changeset
527 (defun lisp-indent-defmethod (path state indent-point sexp-column
38826
f2ff22369238 (lisp-indent-defmethod): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37764
diff changeset
528 normal-indent)
f2ff22369238 (lisp-indent-defmethod): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37764
diff changeset
529 "Indentation function defmethod."
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
530 (lisp-indent-259 (if (and (>= (car path) 3)
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
531 (null (cdr path))
41256
4a78098c3bd7 (lisp-indent-defmethod): At first three elements, act like defun.
Richard M. Stallman <rms@gnu.org>
parents: 40952
diff changeset
532 (save-excursion (goto-char (elt state 1))
4a78098c3bd7 (lisp-indent-defmethod): At first three elements, act like defun.
Richard M. Stallman <rms@gnu.org>
parents: 40952
diff changeset
533 (forward-char 1)
4a78098c3bd7 (lisp-indent-defmethod): At first three elements, act like defun.
Richard M. Stallman <rms@gnu.org>
parents: 40952
diff changeset
534 (forward-sexp 3)
4a78098c3bd7 (lisp-indent-defmethod): At first three elements, act like defun.
Richard M. Stallman <rms@gnu.org>
parents: 40952
diff changeset
535 (backward-sexp)
56736
3b66605ad268 (lisp-indent-defmethod): Correct
Eli Zaretskii <eliz@gnu.org>
parents: 55636
diff changeset
536 (looking-at ":\\|\\sw+")))
38826
f2ff22369238 (lisp-indent-defmethod): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37764
diff changeset
537 '(4 4 (&whole 4 &rest 4) &body)
f2ff22369238 (lisp-indent-defmethod): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37764
diff changeset
538 (get 'defun 'common-lisp-indent-function))
f2ff22369238 (lisp-indent-defmethod): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37764
diff changeset
539 path state indent-point sexp-column normal-indent))
f2ff22369238 (lisp-indent-defmethod): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37764
diff changeset
540
f2ff22369238 (lisp-indent-defmethod): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37764
diff changeset
541
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
542 (defun lisp-indent-function-lambda-hack (path state indent-point
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
543 sexp-column normal-indent)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
544 ;; indent (function (lambda () <newline> <body-forms>)) kludgily.
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
545 (if (or (cdr path) ; wtf?
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
546 (> (car path) 3))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
547 ;; line up under previous body form
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
548 normal-indent
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
549 ;; line up under function rather than under lambda in order to
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
550 ;; conserve horizontal space. (Which is what #' is for.)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
551 (condition-case ()
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
552 (save-excursion
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
553 (backward-up-list 2)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
554 (forward-char 1)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
555 (if (looking-at "\\(lisp:+\\)?function\\(\\Sw\\|\\S_\\)")
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
556 (+ lisp-body-indent -1 (current-column))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
557 (+ sexp-column lisp-body-indent)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
558 (error (+ sexp-column lisp-body-indent)))))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
559
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
560
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
561
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
562 (let ((l '((block 1)
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
563 (case (4 &rest (&whole 2 &rest 1)))
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
564 (ccase . case)
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
565 (ecase . case)
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
566 (typecase . case)
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
567 (etypecase . case)
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
568 (ctypecase . case)
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
569 (catch 1)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
570 (cond (&rest (&whole 2 &rest 1)))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
571 (defvar (4 2 2))
30651
61c2f9fcb8f6 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents: 29797
diff changeset
572 (defclass (6 4 (&whole 2 &rest 1) (&whole 2 &rest 1)))
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
573 (defconstant . defvar)
27231
e9725bb98b6e Add defclass, define-condition, defmethod, symbol-macrolet.
Dave Love <fx@gnu.org>
parents: 26047
diff changeset
574 (defcustom (4 2 2 2))
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
575 (defparameter . defvar)
30651
61c2f9fcb8f6 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents: 29797
diff changeset
576 (defconst . defcustom)
61c2f9fcb8f6 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents: 29797
diff changeset
577 (define-condition . defclass)
42252
63b6d0453539 (define-modify-macro): Better indent spec.
Richard M. Stallman <rms@gnu.org>
parents: 41256
diff changeset
578 (define-modify-macro (4 &lambda &body))
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
579 (defsetf (4 &lambda 4 &body))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
580 (defun (4 &lambda &body))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
581 (define-setf-method . defun)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
582 (define-setf-expander . defun)
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
583 (defmacro . defun)
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
584 (defsubst . defun)
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
585 (deftype . defun)
38826
f2ff22369238 (lisp-indent-defmethod): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37764
diff changeset
586 (defmethod lisp-indent-defmethod)
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
587 (defpackage (4 2))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
588 (defstruct ((&whole 4 &rest (&whole 2 &rest 1))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
589 &rest (&whole 2 &rest 1)))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
590 (destructuring-bind
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
591 ((&whole 6 &rest 1) 4 &body))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
592 (do lisp-indent-do)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
593 (do* . do)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
594 (dolist ((&whole 4 2 1) &body))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
595 (dotimes . dolist)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
596 (eval-when 1)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
597 (flet ((&whole 4 &rest (&whole 1 &lambda &body)) &body))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
598 (labels . flet)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
599 (macrolet . flet)
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
600 (generic-flet . flet)
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
601 (generic-labels . flet)
22858
77090a500417 (lisp-indent-defun-method): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22756
diff changeset
602 (handler-case (4 &rest (&whole 2 &lambda &body)))
22756
6103b46f200a Indent `restart-case', `handler-bind' and `restart-bind' correctly.
Richard M. Stallman <rms@gnu.org>
parents: 22731
diff changeset
603 (restart-case . handler-case)
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
604 ;; `else-body' style
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
605 (if (nil nil &body))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
606 ;; single-else style (then and else equally indented)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
607 (if (&rest nil))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
608 (lambda (&lambda &rest lisp-indent-function-lambda-hack))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
609 (let ((&whole 4 &rest (&whole 1 1 2)) &body))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
610 (let* . let)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
611 (compiler-let . let) ;barf
103513
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
612 (handler-bind . let)
93c102cc8dd2 Remove leading "*" from defcustom docs.
Glenn Morris <rgm@gnu.org>
parents: 103498
diff changeset
613 (restart-bind . let)
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
614 (locally 1)
43859
e8da4031d520 (lisp-loop-keyword-indentation)
Gerd Moellmann <gerd@gnu.org>
parents: 42252
diff changeset
615 ;(loop lisp-indent-loop)
37764
b1fec0dc2aa1 (toplevel): indent the :method sub-form of `defgeneric' correctly.
Sam Steingold <sds@gnu.org>
parents: 37389
diff changeset
616 (:method (&lambda &body)) ; in `defgeneric'
30651
61c2f9fcb8f6 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents: 29797
diff changeset
617 (multiple-value-bind ((&whole 6 &rest 1) 4 &body))
61c2f9fcb8f6 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents: 29797
diff changeset
618 (multiple-value-call (4 &body))
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
619 (multiple-value-prog1 1)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
620 (multiple-value-setq (4 2))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
621 (multiple-value-setf . multiple-value-setq)
27872
277f4365f2fa Indent `pprint-logical-block' properly.
Gerd Moellmann <gerd@gnu.org>
parents: 27802
diff changeset
622 (pprint-logical-block (4 2))
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
623 (print-unreadable-object ((&whole 4 1 &rest 1) &body))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
624 ;; Combines the worst features of BLOCK, LET and TAGBODY
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
625 (prog (&lambda &rest lisp-indent-tagbody))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
626 (prog* . prog)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
627 (prog1 1)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
628 (prog2 2)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
629 (progn 0)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
630 (progv (4 4 &body))
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
631 (return 0)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
632 (return-from (nil &body))
50700
ad311d8949c4 `symbol-macrolet' is similar to `let', not `multiple-value-bind'.
Sam Steingold <sds@gnu.org>
parents: 49598
diff changeset
633 (symbol-macrolet . let)
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
634 (tagbody lisp-indent-tagbody)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
635 (throw 1)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
636 (unless 1)
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
637 (unwind-protect (5 &body))
22180
485917486caf Indent `with-standard-io-syntax' correctly.
Richard M. Stallman <rms@gnu.org>
parents: 21750
diff changeset
638 (when 1)
40952
2ca1b56f3bb1 Indent properly `generic-flet', `generic-labels', `with-accessors',
Sam Steingold <sds@gnu.org>
parents: 38826
diff changeset
639 (with-accessors . multiple-value-bind)
2ca1b56f3bb1 Indent properly `generic-flet', `generic-labels', `with-accessors',
Sam Steingold <sds@gnu.org>
parents: 38826
diff changeset
640 (with-condition-restarts . multiple-value-bind)
23725
222d58586999 indent `with-output-to-string' as a CL
Karl Heuer <kwzh@gnu.org>
parents: 22913
diff changeset
641 (with-output-to-string (4 2))
30651
61c2f9fcb8f6 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents: 29797
diff changeset
642 (with-slots . multiple-value-bind)
22180
485917486caf Indent `with-standard-io-syntax' correctly.
Richard M. Stallman <rms@gnu.org>
parents: 21750
diff changeset
643 (with-standard-io-syntax (2)))))
40952
2ca1b56f3bb1 Indent properly `generic-flet', `generic-labels', `with-accessors',
Sam Steingold <sds@gnu.org>
parents: 38826
diff changeset
644 (dolist (el l)
2ca1b56f3bb1 Indent properly `generic-flet', `generic-labels', `with-accessors',
Sam Steingold <sds@gnu.org>
parents: 38826
diff changeset
645 (put (car el) 'common-lisp-indent-function
2ca1b56f3bb1 Indent properly `generic-flet', `generic-labels', `with-accessors',
Sam Steingold <sds@gnu.org>
parents: 38826
diff changeset
646 (if (symbolp (cdr el))
2ca1b56f3bb1 Indent properly `generic-flet', `generic-labels', `with-accessors',
Sam Steingold <sds@gnu.org>
parents: 38826
diff changeset
647 (get (cdr el) 'common-lisp-indent-function)
2ca1b56f3bb1 Indent properly `generic-flet', `generic-labels', `with-accessors',
Sam Steingold <sds@gnu.org>
parents: 38826
diff changeset
648 (car (cdr el))))))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
649
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
650
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
651 ;(defun foo (x)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
652 ; (tagbody
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
653 ; foo
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
654 ; (bar)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
655 ; baz
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
656 ; (when (losing)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
657 ; (with-big-loser
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
658 ; (yow)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
659 ; ((lambda ()
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
660 ; foo)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
661 ; big)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
662 ; (flet ((foo (bar baz zap)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
663 ; (zip))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
664 ; (zot ()
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
665 ; quux))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
666 ; (do ()
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
667 ; ((lose)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
668 ; (foo 1))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
669 ; (quux)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
670 ; foo
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
671 ; (lose))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
672 ; (cond ((x)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
673 ; (win 1 2
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
674 ; (foo)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
675 ; (t
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
676 ; (lose
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
677 ; 3))))))
29797
3bf98b923af0 handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents: 27872
diff changeset
678
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
679
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
680 ;(put 'while 'common-lisp-indent-function 1)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
681 ;(put 'defwrapper'common-lisp-indent-function ...)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
682 ;(put 'def 'common-lisp-indent-function ...)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
683 ;(put 'defflavor 'common-lisp-indent-function ...)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
684 ;(put 'defsubst 'common-lisp-indent-function ...)
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
685
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
686 ;(put 'with-restart 'common-lisp-indent-function '((1 4 ((* 1))) (2 &body)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
687 ;(put 'restart-case 'common-lisp-indent-function '((1 4) (* 2 ((0 1) (* 1)))))
34187
e2fb02d21aee Remove erroneous spec for condition-case.
Dave Love <fx@gnu.org>
parents: 30651
diff changeset
688 ;(put 'define-condition 'common-lisp-indent-function '((1 6) (2 6 ((&whole 1))) (3 4 ((&whole 1))) (4 &body)))
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
689 ;(put 'with-condition-handler 'common-lisp-indent-function '((1 4 ((* 1))) (2 &body)))
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
690 ;(put 'condition-case 'common-lisp-indent-function '((1 4) (* 2 ((0 1) (1 3) (2 &body)))))
34187
e2fb02d21aee Remove erroneous spec for condition-case.
Dave Love <fx@gnu.org>
parents: 30651
diff changeset
691 ;(put 'defclass 'common-lisp-indent-function '((&whole 2 &rest (&whole 2 &rest 1) &rest (&whole 2 &rest 1)))
e2fb02d21aee Remove erroneous spec for condition-case.
Dave Love <fx@gnu.org>
parents: 30651
diff changeset
692 ;(put 'defgeneric 'common-lisp-indent-function 'defun)
257
e5ba2ba35226 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
693
662
8a533acedb77 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 257
diff changeset
694 ;;; cl-indent.el ends here