Introduce a new comment style "c" flag.
[bpt/emacs.git] / lisp / emacs-lisp / lisp-mode.el
1 ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands
2
3 ;; Copyright (C) 1985, 1986, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: lisp, languages
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; The base major mode for editing Lisp code (used also for Emacs Lisp).
27 ;; This mode is documented in the Emacs manual.
28
29 ;;; Code:
30
31 (defvar font-lock-comment-face)
32 (defvar font-lock-doc-face)
33 (defvar font-lock-keywords-case-fold-search)
34 (defvar font-lock-string-face)
35
36 (defvar lisp-mode-abbrev-table nil)
37
38 (define-abbrev-table 'lisp-mode-abbrev-table ())
39
40 (defvar emacs-lisp-mode-syntax-table
41 (let ((table (make-syntax-table)))
42 (let ((i 0))
43 (while (< i ?0)
44 (modify-syntax-entry i "_ " table)
45 (setq i (1+ i)))
46 (setq i (1+ ?9))
47 (while (< i ?A)
48 (modify-syntax-entry i "_ " table)
49 (setq i (1+ i)))
50 (setq i (1+ ?Z))
51 (while (< i ?a)
52 (modify-syntax-entry i "_ " table)
53 (setq i (1+ i)))
54 (setq i (1+ ?z))
55 (while (< i 128)
56 (modify-syntax-entry i "_ " table)
57 (setq i (1+ i)))
58 (modify-syntax-entry ?\s " " table)
59 ;; Non-break space acts as whitespace.
60 (modify-syntax-entry ?\x8a0 " " table)
61 (modify-syntax-entry ?\t " " table)
62 (modify-syntax-entry ?\f " " table)
63 (modify-syntax-entry ?\n "> " table)
64 ;; This is probably obsolete since nowadays such features use overlays.
65 ;; ;; Give CR the same syntax as newline, for selective-display.
66 ;; (modify-syntax-entry ?\^m "> " table)
67 (modify-syntax-entry ?\; "< " table)
68 (modify-syntax-entry ?` "' " table)
69 (modify-syntax-entry ?' "' " table)
70 (modify-syntax-entry ?, "' " table)
71 (modify-syntax-entry ?@ "' " table)
72 ;; Used to be singlequote; changed for flonums.
73 (modify-syntax-entry ?. "_ " table)
74 (modify-syntax-entry ?# "' " table)
75 (modify-syntax-entry ?\" "\" " table)
76 (modify-syntax-entry ?\\ "\\ " table)
77 (modify-syntax-entry ?\( "() " table)
78 (modify-syntax-entry ?\) ")( " table)
79 (modify-syntax-entry ?\[ "(] " table)
80 (modify-syntax-entry ?\] ")[ " table))
81 table)
82 "Syntax table used in `emacs-lisp-mode'.")
83
84 (defvar lisp-mode-syntax-table
85 (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
86 (modify-syntax-entry ?\[ "_ " table)
87 (modify-syntax-entry ?\] "_ " table)
88 (modify-syntax-entry ?# "' 14" table)
89 (modify-syntax-entry ?| "\" 23bn" table)
90 table)
91 "Syntax table used in `lisp-mode'.")
92
93 (defvar lisp-imenu-generic-expression
94 (list
95 (list nil
96 (purecopy (concat "^\\s-*("
97 (eval-when-compile
98 (regexp-opt
99 '("defun" "defun*" "defsubst" "defmacro"
100 "defadvice" "define-skeleton"
101 "define-minor-mode" "define-global-minor-mode"
102 "define-globalized-minor-mode"
103 "define-derived-mode" "define-generic-mode"
104 "define-compiler-macro" "define-modify-macro"
105 "defsetf" "define-setf-expander"
106 "define-method-combination"
107 "defgeneric" "defmethod") t))
108 "\\s-+\\(\\(\\sw\\|\\s_\\)+\\)"))
109 2)
110 (list (purecopy "Variables")
111 (purecopy (concat "^\\s-*("
112 (eval-when-compile
113 (regexp-opt
114 '("defvar" "defconst" "defconstant" "defcustom"
115 "defparameter" "define-symbol-macro") t))
116 "\\s-+\\(\\(\\sw\\|\\s_\\)+\\)"))
117 2)
118 (list (purecopy "Types")
119 (purecopy (concat "^\\s-*("
120 (eval-when-compile
121 (regexp-opt
122 '("defgroup" "deftheme" "deftype" "defstruct"
123 "defclass" "define-condition" "define-widget"
124 "defface" "defpackage") t))
125 "\\s-+'?\\(\\(\\sw\\|\\s_\\)+\\)"))
126 2))
127
128 "Imenu generic expression for Lisp mode. See `imenu-generic-expression'.")
129
130 ;; This was originally in autoload.el and is still used there.
131 (put 'autoload 'doc-string-elt 3)
132 (put 'defun 'doc-string-elt 3)
133 (put 'defun* 'doc-string-elt 3)
134 (put 'defvar 'doc-string-elt 3)
135 (put 'defcustom 'doc-string-elt 3)
136 (put 'deftheme 'doc-string-elt 2)
137 (put 'deftype 'doc-string-elt 3)
138 (put 'defconst 'doc-string-elt 3)
139 (put 'defmacro 'doc-string-elt 3)
140 (put 'defmacro* 'doc-string-elt 3)
141 (put 'defsubst 'doc-string-elt 3)
142 (put 'defstruct 'doc-string-elt 2)
143 (put 'define-skeleton 'doc-string-elt 2)
144 (put 'define-derived-mode 'doc-string-elt 4)
145 (put 'define-compilation-mode 'doc-string-elt 3)
146 (put 'easy-mmode-define-minor-mode 'doc-string-elt 2)
147 (put 'define-minor-mode 'doc-string-elt 2)
148 (put 'easy-mmode-define-global-mode 'doc-string-elt 2)
149 (put 'define-global-minor-mode 'doc-string-elt 2)
150 (put 'define-globalized-minor-mode 'doc-string-elt 2)
151 (put 'define-generic-mode 'doc-string-elt 7)
152 (put 'define-ibuffer-filter 'doc-string-elt 2)
153 (put 'define-ibuffer-op 'doc-string-elt 3)
154 (put 'define-ibuffer-sorter 'doc-string-elt 2)
155 (put 'lambda 'doc-string-elt 2)
156 (put 'defalias 'doc-string-elt 3)
157 (put 'defvaralias 'doc-string-elt 3)
158 (put 'define-category 'doc-string-elt 2)
159 (put 'define-overloadable-function 'doc-string-elt 3)
160
161 (defvar lisp-doc-string-elt-property 'doc-string-elt
162 "The symbol property that holds the docstring position info.")
163
164 (defun lisp-font-lock-syntactic-face-function (state)
165 (if (nth 3 state)
166 ;; This might be a (doc)string or a |...| symbol.
167 (let ((startpos (nth 8 state)))
168 (if (eq (char-after startpos) ?|)
169 ;; This is not a string, but a |...| symbol.
170 nil
171 (let* ((listbeg (nth 1 state))
172 (firstsym (and listbeg
173 (save-excursion
174 (goto-char listbeg)
175 (and (looking-at "([ \t\n]*\\(\\(\\sw\\|\\s_\\)+\\)")
176 (match-string 1)))))
177 (docelt (and firstsym (get (intern-soft firstsym)
178 lisp-doc-string-elt-property))))
179 (if (and docelt
180 ;; It's a string in a form that can have a docstring.
181 ;; Check whether it's in docstring position.
182 (save-excursion
183 (when (functionp docelt)
184 (goto-char (match-end 1))
185 (setq docelt (funcall docelt)))
186 (goto-char listbeg)
187 (forward-char 1)
188 (condition-case nil
189 (while (and (> docelt 0) (< (point) startpos)
190 (progn (forward-sexp 1) t))
191 (setq docelt (1- docelt)))
192 (error nil))
193 (and (zerop docelt) (<= (point) startpos)
194 (progn (forward-comment (point-max)) t)
195 (= (point) (nth 8 state)))))
196 font-lock-doc-face
197 font-lock-string-face))))
198 font-lock-comment-face))
199
200 (defun lisp-mode-variables (&optional lisp-syntax keywords-case-insensitive)
201 "Common initialization routine for lisp modes.
202 The LISP-SYNTAX argument is used by code in inf-lisp.el and is
203 \(uselessly) passed from pp.el, chistory.el, gnus-kill.el and
204 score-mode.el. KEYWORDS-CASE-INSENSITIVE non-nil means that for
205 font-lock keywords will not be case sensitive."
206 (when lisp-syntax
207 (set-syntax-table lisp-mode-syntax-table))
208 (setq local-abbrev-table lisp-mode-abbrev-table)
209 (make-local-variable 'paragraph-ignore-fill-prefix)
210 (setq paragraph-ignore-fill-prefix t)
211 (make-local-variable 'fill-paragraph-function)
212 (setq fill-paragraph-function 'lisp-fill-paragraph)
213 ;; Adaptive fill mode gets the fill wrong for a one-line paragraph made of
214 ;; a single docstring. Let's fix it here.
215 (set (make-local-variable 'adaptive-fill-function)
216 (lambda () (if (looking-at "\\s-+\"[^\n\"]+\"\\s-*$") "")))
217 ;; Adaptive fill mode gets in the way of auto-fill,
218 ;; and should make no difference for explicit fill
219 ;; because lisp-fill-paragraph should do the job.
220 ;; I believe that newcomment's auto-fill code properly deals with it -stef
221 ;;(set (make-local-variable 'adaptive-fill-mode) nil)
222 (make-local-variable 'indent-line-function)
223 (setq indent-line-function 'lisp-indent-line)
224 (make-local-variable 'outline-regexp)
225 (setq outline-regexp ";;;\\(;* [^ \t\n]\\|###autoload\\)\\|(")
226 (make-local-variable 'outline-level)
227 (setq outline-level 'lisp-outline-level)
228 (make-local-variable 'comment-start)
229 (setq comment-start ";")
230 (make-local-variable 'comment-start-skip)
231 ;; Look within the line for a ; following an even number of backslashes
232 ;; after either a non-backslash or the line beginning.
233 (setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *")
234 (make-local-variable 'font-lock-comment-start-skip)
235 ;; Font lock mode uses this only when it KNOWS a comment is starting.
236 (setq font-lock-comment-start-skip ";+ *")
237 (make-local-variable 'comment-add)
238 (setq comment-add 1) ;default to `;;' in comment-region
239 (make-local-variable 'comment-column)
240 (setq comment-column 40)
241 ;; Don't get confused by `;' in doc strings when paragraph-filling.
242 (set (make-local-variable 'comment-use-global-state) t)
243 (make-local-variable 'imenu-generic-expression)
244 (setq imenu-generic-expression lisp-imenu-generic-expression)
245 (make-local-variable 'multibyte-syntax-as-symbol)
246 (setq multibyte-syntax-as-symbol t)
247 (set (make-local-variable 'syntax-begin-function) 'beginning-of-defun)
248 (setq font-lock-defaults
249 `((lisp-font-lock-keywords
250 lisp-font-lock-keywords-1 lisp-font-lock-keywords-2)
251 nil ,keywords-case-insensitive (("+-*/.<>=!?$%_&~^:@" . "w")) nil
252 (font-lock-mark-block-function . mark-defun)
253 (font-lock-syntactic-face-function
254 . lisp-font-lock-syntactic-face-function))))
255
256 (defun lisp-outline-level ()
257 "Lisp mode `outline-level' function."
258 (let ((len (- (match-end 0) (match-beginning 0))))
259 (if (looking-at "(\\|;;;###autoload")
260 1000
261 len)))
262
263 (defvar lisp-mode-shared-map
264 (let ((map (make-sparse-keymap)))
265 (define-key map "\e\C-q" 'indent-sexp)
266 (define-key map "\177" 'backward-delete-char-untabify)
267 ;; This gets in the way when viewing a Lisp file in view-mode. As
268 ;; long as [backspace] is mapped into DEL via the
269 ;; function-key-map, this should remain disabled!!
270 ;;;(define-key map [backspace] 'backward-delete-char-untabify)
271 map)
272 "Keymap for commands shared by all sorts of Lisp modes.")
273
274 (defvar emacs-lisp-mode-map
275 (let ((map (make-sparse-keymap "Emacs-Lisp"))
276 (menu-map (make-sparse-keymap "Emacs-Lisp"))
277 (lint-map (make-sparse-keymap))
278 (prof-map (make-sparse-keymap))
279 (tracing-map (make-sparse-keymap)))
280 (set-keymap-parent map lisp-mode-shared-map)
281 (define-key map "\e\t" 'completion-at-point)
282 (define-key map "\e\C-x" 'eval-defun)
283 (define-key map "\e\C-q" 'indent-pp-sexp)
284 (define-key map [menu-bar emacs-lisp] (cons (purecopy "Emacs-Lisp") menu-map))
285 (define-key menu-map [eldoc]
286 `(menu-item ,(purecopy "Auto-Display Documentation Strings") eldoc-mode
287 :button (:toggle . (bound-and-true-p eldoc-mode))
288 :help ,(purecopy "Display the documentation string for the item under cursor")))
289 (define-key menu-map [checkdoc]
290 `(menu-item ,(purecopy "Check Documentation Strings") checkdoc
291 :help ,(purecopy "Check documentation strings for style requirements")))
292 (define-key menu-map [re-builder]
293 `(menu-item ,(purecopy "Construct Regexp") re-builder
294 :help ,(purecopy "Construct a regexp interactively")))
295 (define-key menu-map [tracing] (cons (purecopy "Tracing") tracing-map))
296 (define-key tracing-map [tr-a]
297 `(menu-item ,(purecopy "Untrace All") untrace-all
298 :help ,(purecopy "Untrace all currently traced functions")))
299 (define-key tracing-map [tr-uf]
300 `(menu-item ,(purecopy "Untrace function...") untrace-function
301 :help ,(purecopy "Untrace function, and possibly activate all remaining advice")))
302 (define-key tracing-map [tr-sep] menu-bar-separator)
303 (define-key tracing-map [tr-q]
304 `(menu-item ,(purecopy "Trace Function Quietly...") trace-function-background
305 :help ,(purecopy "Trace the function with trace output going quietly to a buffer")))
306 (define-key tracing-map [tr-f]
307 `(menu-item ,(purecopy "Trace Function...") trace-function
308 :help ,(purecopy "Trace the function given as an argument")))
309 (define-key menu-map [profiling] (cons (purecopy "Profiling") prof-map))
310 (define-key prof-map [prof-restall]
311 `(menu-item ,(purecopy "Remove Instrumentation for All Functions") elp-restore-all
312 :help ,(purecopy "Restore the original definitions of all functions being profiled")))
313 (define-key prof-map [prof-restfunc]
314 `(menu-item ,(purecopy "Remove Instrumentation for Function...") elp-restore-function
315 :help ,(purecopy "Restore an instrumented function to its original definition")))
316
317 (define-key prof-map [sep-rem] menu-bar-separator)
318 (define-key prof-map [prof-resall]
319 `(menu-item ,(purecopy "Reset Counters for All Functions") elp-reset-all
320 :help ,(purecopy "Reset the profiling information for all functions being profiled")))
321 (define-key prof-map [prof-resfunc]
322 `(menu-item ,(purecopy "Reset Counters for Function...") elp-reset-function
323 :help ,(purecopy "Reset the profiling information for a function")))
324 (define-key prof-map [prof-res]
325 `(menu-item ,(purecopy "Show Profiling Results") elp-results
326 :help ,(purecopy "Display current profiling results")))
327 (define-key prof-map [prof-pack]
328 `(menu-item ,(purecopy "Instrument Package...") elp-instrument-package
329 :help ,(purecopy "Instrument for profiling all function that start with a prefix")))
330 (define-key prof-map [prof-func]
331 `(menu-item ,(purecopy "Instrument Function...") elp-instrument-function
332 :help ,(purecopy "Instrument a function for profiling")))
333 (define-key menu-map [lint] (cons (purecopy "Linting") lint-map))
334 (define-key lint-map [lint-di]
335 `(menu-item ,(purecopy "Lint Directory...") elint-directory
336 :help ,(purecopy "Lint a directory")))
337 (define-key lint-map [lint-f]
338 `(menu-item ,(purecopy "Lint File...") elint-file
339 :help ,(purecopy "Lint a file")))
340 (define-key lint-map [lint-b]
341 `(menu-item ,(purecopy "Lint Buffer") elint-current-buffer
342 :help ,(purecopy "Lint the current buffer")))
343 (define-key lint-map [lint-d]
344 `(menu-item ,(purecopy "Lint Defun") elint-defun
345 :help ,(purecopy "Lint the function at point")))
346 (define-key menu-map [edebug-defun]
347 `(menu-item ,(purecopy "Instrument Function for Debugging") edebug-defun
348 :help ,(purecopy "Evaluate the top level form point is in, stepping through with Edebug")
349 :keys ,(purecopy "C-u C-M-x")))
350 (define-key menu-map [separator-byte] menu-bar-separator)
351 (define-key menu-map [disas]
352 `(menu-item ,(purecopy "Disassemble Byte Compiled Object...") disassemble
353 :help ,(purecopy "Print disassembled code for OBJECT in a buffer")))
354 (define-key menu-map [byte-recompile]
355 `(menu-item ,(purecopy "Byte-recompile Directory...") byte-recompile-directory
356 :help ,(purecopy "Recompile every `.el' file in DIRECTORY that needs recompilation")))
357 (define-key menu-map [emacs-byte-compile-and-load]
358 `(menu-item ,(purecopy "Byte-compile and Load") emacs-lisp-byte-compile-and-load
359 :help ,(purecopy "Byte-compile the current file (if it has changed), then load compiled code")))
360 (define-key menu-map [byte-compile]
361 `(menu-item ,(purecopy "Byte-compile this File") emacs-lisp-byte-compile
362 :help ,(purecopy "Byte compile the file containing the current buffer")))
363 (define-key menu-map [separator-eval] menu-bar-separator)
364 (define-key menu-map [ielm]
365 `(menu-item ,(purecopy "Interactive Expression Evaluation") ielm
366 :help ,(purecopy "Interactively evaluate Emacs Lisp expressions")))
367 (define-key menu-map [eval-buffer]
368 `(menu-item ,(purecopy "Evaluate Buffer") eval-buffer
369 :help ,(purecopy "Execute the current buffer as Lisp code")))
370 (define-key menu-map [eval-region]
371 `(menu-item ,(purecopy "Evaluate Region") eval-region
372 :help ,(purecopy "Execute the region as Lisp code")
373 :enable mark-active))
374 (define-key menu-map [eval-sexp]
375 `(menu-item ,(purecopy "Evaluate Last S-expression") eval-last-sexp
376 :help ,(purecopy "Evaluate sexp before point; print value in minibuffer")))
377 (define-key menu-map [separator-format] menu-bar-separator)
378 (define-key menu-map [comment-region]
379 `(menu-item ,(purecopy "Comment Out Region") comment-region
380 :help ,(purecopy "Comment or uncomment each line in the region")
381 :enable mark-active))
382 (define-key menu-map [indent-region]
383 `(menu-item ,(purecopy "Indent Region") indent-region
384 :help ,(purecopy "Indent each nonblank line in the region")
385 :enable mark-active))
386 (define-key menu-map [indent-line]
387 `(menu-item ,(purecopy "Indent Line") lisp-indent-line))
388 map)
389 "Keymap for Emacs Lisp mode.
390 All commands in `lisp-mode-shared-map' are inherited by this map.")
391
392 (defun emacs-lisp-byte-compile ()
393 "Byte compile the file containing the current buffer."
394 (interactive)
395 (if buffer-file-name
396 (byte-compile-file buffer-file-name)
397 (error "The buffer must be saved in a file first")))
398
399 (defun emacs-lisp-byte-compile-and-load ()
400 "Byte-compile the current file (if it has changed), then load compiled code."
401 (interactive)
402 (or buffer-file-name
403 (error "The buffer must be saved in a file first"))
404 (require 'bytecomp)
405 ;; Recompile if file or buffer has changed since last compilation.
406 (if (and (buffer-modified-p)
407 (y-or-n-p (format "Save buffer %s first? " (buffer-name))))
408 (save-buffer))
409 (let ((compiled-file-name (byte-compile-dest-file buffer-file-name)))
410 (if (file-newer-than-file-p compiled-file-name buffer-file-name)
411 (load-file compiled-file-name)
412 (byte-compile-file buffer-file-name t))))
413
414 (defcustom emacs-lisp-mode-hook nil
415 "Hook run when entering Emacs Lisp mode."
416 :options '(turn-on-eldoc-mode imenu-add-menubar-index checkdoc-minor-mode)
417 :type 'hook
418 :group 'lisp)
419
420 (defcustom lisp-mode-hook nil
421 "Hook run when entering Lisp mode."
422 :options '(imenu-add-menubar-index)
423 :type 'hook
424 :group 'lisp)
425
426 (defcustom lisp-interaction-mode-hook nil
427 "Hook run when entering Lisp Interaction mode."
428 :options '(turn-on-eldoc-mode)
429 :type 'hook
430 :group 'lisp)
431
432 (define-derived-mode emacs-lisp-mode prog-mode "Emacs-Lisp"
433 "Major mode for editing Lisp code to run in Emacs.
434 Commands:
435 Delete converts tabs to spaces as it moves back.
436 Blank lines separate paragraphs. Semicolons start comments.
437
438 \\{emacs-lisp-mode-map}
439 Entry to this mode calls the value of `emacs-lisp-mode-hook'
440 if that value is non-nil."
441 :group 'lisp
442 (lisp-mode-variables)
443 (setq imenu-case-fold-search nil)
444 (add-hook 'completion-at-point-functions
445 'lisp-completion-at-point nil 'local))
446
447 (defvar lisp-mode-map
448 (let ((map (make-sparse-keymap))
449 (menu-map (make-sparse-keymap "Lisp")))
450 (set-keymap-parent map lisp-mode-shared-map)
451 (define-key map "\e\C-x" 'lisp-eval-defun)
452 (define-key map "\C-c\C-z" 'run-lisp)
453 (define-key map [menu-bar lisp] (cons (purecopy "Lisp") menu-map))
454 (define-key menu-map [run-lisp]
455 `(menu-item ,(purecopy "Run inferior Lisp") run-lisp
456 :help ,(purecopy "Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'")))
457 (define-key menu-map [ev-def]
458 `(menu-item ,(purecopy "Eval defun") lisp-eval-defun
459 :help ,(purecopy "Send the current defun to the Lisp process made by M-x run-lisp")))
460 (define-key menu-map [ind-sexp]
461 `(menu-item ,(purecopy "Indent sexp") indent-sexp
462 :help ,(purecopy "Indent each line of the list starting just after point")))
463 map)
464 "Keymap for ordinary Lisp mode.
465 All commands in `lisp-mode-shared-map' are inherited by this map.")
466
467 (define-derived-mode lisp-mode prog-mode "Lisp"
468 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp.
469 Commands:
470 Delete converts tabs to spaces as it moves back.
471 Blank lines separate paragraphs. Semicolons start comments.
472
473 \\{lisp-mode-map}
474 Note that `run-lisp' may be used either to start an inferior Lisp job
475 or to switch back to an existing one.
476
477 Entry to this mode calls the value of `lisp-mode-hook'
478 if that value is non-nil."
479 (lisp-mode-variables nil t)
480 (set (make-local-variable 'find-tag-default-function) 'lisp-find-tag-default)
481 (make-local-variable 'comment-start-skip)
482 (setq comment-start-skip
483 "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\)\\(;+\\|#|\\) *")
484 (setq imenu-case-fold-search t))
485
486 (defun lisp-find-tag-default ()
487 (let ((default (find-tag-default)))
488 (when (stringp default)
489 (if (string-match ":+" default)
490 (substring default (match-end 0))
491 default))))
492
493 ;; Used in old LispM code.
494 (defalias 'common-lisp-mode 'lisp-mode)
495
496 ;; This will do unless inf-lisp.el is loaded.
497 (defun lisp-eval-defun (&optional and-go)
498 "Send the current defun to the Lisp process made by \\[run-lisp]."
499 (interactive)
500 (error "Process lisp does not exist"))
501
502 (defvar lisp-interaction-mode-map
503 (let ((map (make-sparse-keymap))
504 (menu-map (make-sparse-keymap "Lisp-Interaction")))
505 (set-keymap-parent map lisp-mode-shared-map)
506 (define-key map "\e\C-x" 'eval-defun)
507 (define-key map "\e\C-q" 'indent-pp-sexp)
508 (define-key map "\e\t" 'completion-at-point)
509 (define-key map "\n" 'eval-print-last-sexp)
510 (define-key map [menu-bar lisp-interaction] (cons (purecopy "Lisp-Interaction") menu-map))
511 (define-key menu-map [eval-defun]
512 `(menu-item ,(purecopy "Evaluate Defun") eval-defun
513 :help ,(purecopy "Evaluate the top-level form containing point, or after point")))
514 (define-key menu-map [eval-print-last-sexp]
515 `(menu-item ,(purecopy "Evaluate and print") eval-print-last-sexp
516 :help ,(purecopy "Evaluate sexp before point; print value into current buffer")))
517 (define-key menu-map [edebug-defun-lisp-interaction]
518 `(menu-item ,(purecopy "Instrument Function for Debugging") edebug-defun
519 :help ,(purecopy "Evaluate the top level form point is in, stepping through with Edebug")
520 :keys ,(purecopy "C-u C-M-x")))
521 (define-key menu-map [indent-pp-sexp]
522 `(menu-item ,(purecopy "Indent or Pretty-Print") indent-pp-sexp
523 :help ,(purecopy "Indent each line of the list starting just after point, or prettyprint it")))
524 (define-key menu-map [complete-symbol]
525 `(menu-item ,(purecopy "Complete Lisp Symbol") completion-at-point
526 :help ,(purecopy "Perform completion on Lisp symbol preceding point")))
527 map)
528 "Keymap for Lisp Interaction mode.
529 All commands in `lisp-mode-shared-map' are inherited by this map.")
530
531 (defvar lisp-interaction-mode-abbrev-table lisp-mode-abbrev-table)
532 (define-derived-mode lisp-interaction-mode emacs-lisp-mode "Lisp Interaction"
533 "Major mode for typing and evaluating Lisp forms.
534 Like Lisp mode except that \\[eval-print-last-sexp] evals the Lisp expression
535 before point, and prints its value into the buffer, advancing point.
536 Note that printing is controlled by `eval-expression-print-length'
537 and `eval-expression-print-level'.
538
539 Commands:
540 Delete converts tabs to spaces as it moves back.
541 Paragraphs are separated only by blank lines.
542 Semicolons start comments.
543
544 \\{lisp-interaction-mode-map}
545 Entry to this mode calls the value of `lisp-interaction-mode-hook'
546 if that value is non-nil.")
547
548 (defun eval-print-last-sexp ()
549 "Evaluate sexp before point; print value into current buffer.
550
551 If `eval-expression-debug-on-error' is non-nil, which is the default,
552 this command arranges for all errors to enter the debugger.
553
554 Note that printing the result is controlled by the variables
555 `eval-expression-print-length' and `eval-expression-print-level',
556 which see."
557 (interactive)
558 (let ((standard-output (current-buffer)))
559 (terpri)
560 (eval-last-sexp t)
561 (terpri)))
562
563
564 (defun last-sexp-setup-props (beg end value alt1 alt2)
565 "Set up text properties for the output of `eval-last-sexp-1'.
566 BEG and END are the start and end of the output in current-buffer.
567 VALUE is the Lisp value printed, ALT1 and ALT2 are strings for the
568 alternative printed representations that can be displayed."
569 (let ((map (make-sparse-keymap)))
570 (define-key map "\C-m" 'last-sexp-toggle-display)
571 (define-key map [down-mouse-2] 'mouse-set-point)
572 (define-key map [mouse-2] 'last-sexp-toggle-display)
573 (add-text-properties
574 beg end
575 `(printed-value (,value ,alt1 ,alt2)
576 mouse-face highlight
577 keymap ,map
578 help-echo "RET, mouse-2: toggle abbreviated display"
579 rear-nonsticky (mouse-face keymap help-echo
580 printed-value)))))
581
582
583 (defun last-sexp-toggle-display (&optional arg)
584 "Toggle between abbreviated and unabbreviated printed representations."
585 (interactive "P")
586 (save-restriction
587 (widen)
588 (let ((value (get-text-property (point) 'printed-value)))
589 (when value
590 (let ((beg (or (previous-single-property-change (min (point-max) (1+ (point)))
591 'printed-value)
592 (point)))
593 (end (or (next-single-char-property-change (point) 'printed-value) (point)))
594 (standard-output (current-buffer))
595 (point (point)))
596 (delete-region beg end)
597 (insert (nth 1 value))
598 (or (= beg point)
599 (setq point (1- (point))))
600 (last-sexp-setup-props beg (point)
601 (nth 0 value)
602 (nth 2 value)
603 (nth 1 value))
604 (goto-char (min (point-max) point)))))))
605
606 (defun prin1-char (char)
607 "Return a string representing CHAR as a character rather than as an integer.
608 If CHAR is not a character, return nil."
609 (and (integerp char)
610 (eventp char)
611 (let ((c (event-basic-type char))
612 (mods (event-modifiers char))
613 string)
614 ;; Prevent ?A from turning into ?\S-a.
615 (if (and (memq 'shift mods)
616 (zerop (logand char ?\S-\^@))
617 (not (let ((case-fold-search nil))
618 (char-equal c (upcase c)))))
619 (setq c (upcase c) mods nil))
620 ;; What string are we considering using?
621 (condition-case nil
622 (setq string
623 (concat
624 "?"
625 (mapconcat
626 (lambda (modif)
627 (cond ((eq modif 'super) "\\s-")
628 (t (string ?\\ (upcase (aref (symbol-name modif) 0)) ?-))))
629 mods "")
630 (cond
631 ((memq c '(?\; ?\( ?\) ?\{ ?\} ?\[ ?\] ?\" ?\' ?\\)) (string ?\\ c))
632 ((eq c 127) "\\C-?")
633 (t
634 (string c)))))
635 (error nil))
636 ;; Verify the string reads a CHAR, not to some other character.
637 ;; If it doesn't, return nil instead.
638 (and string
639 (= (car (read-from-string string)) char)
640 string))))
641
642
643 (defun preceding-sexp ()
644 "Return sexp before the point."
645 (let ((opoint (point))
646 ignore-quotes
647 expr)
648 (save-excursion
649 (with-syntax-table emacs-lisp-mode-syntax-table
650 ;; If this sexp appears to be enclosed in `...'
651 ;; then ignore the surrounding quotes.
652 (setq ignore-quotes
653 (or (eq (following-char) ?\')
654 (eq (preceding-char) ?\')))
655 (forward-sexp -1)
656 ;; If we were after `?\e' (or similar case),
657 ;; use the whole thing, not just the `e'.
658 (when (eq (preceding-char) ?\\)
659 (forward-char -1)
660 (when (eq (preceding-char) ??)
661 (forward-char -1)))
662
663 ;; Skip over hash table read syntax.
664 (and (> (point) (1+ (point-min)))
665 (looking-back "#s" (- (point) 2))
666 (forward-char -2))
667
668 ;; Skip over `#N='s.
669 (when (eq (preceding-char) ?=)
670 (let (labeled-p)
671 (save-excursion
672 (skip-chars-backward "0-9#=")
673 (setq labeled-p (looking-at "\\(#[0-9]+=\\)+")))
674 (when labeled-p
675 (forward-sexp -1))))
676
677 (save-restriction
678 ;; vladimir@cs.ualberta.ca 30-Jul-1997: skip ` in
679 ;; `variable' so that the value is returned, not the
680 ;; name
681 (if (and ignore-quotes
682 (eq (following-char) ?`))
683 (forward-char))
684 (narrow-to-region (point-min) opoint)
685 (setq expr (read (current-buffer)))
686 ;; If it's an (interactive ...) form, it's more
687 ;; useful to show how an interactive call would
688 ;; use it.
689 (and (consp expr)
690 (eq (car expr) 'interactive)
691 (setq expr
692 (list 'call-interactively
693 (list 'quote
694 (list 'lambda
695 '(&rest args)
696 expr
697 'args)))))
698 expr)))))
699
700
701 (defun eval-last-sexp-1 (eval-last-sexp-arg-internal)
702 "Evaluate sexp before point; print value in minibuffer.
703 With argument, print output into current buffer."
704 (let ((standard-output (if eval-last-sexp-arg-internal (current-buffer) t)))
705 (eval-last-sexp-print-value (eval (preceding-sexp)))))
706
707
708 (defun eval-last-sexp-print-value (value)
709 (let ((unabbreviated (let ((print-length nil) (print-level nil))
710 (prin1-to-string value)))
711 (print-length eval-expression-print-length)
712 (print-level eval-expression-print-level)
713 (beg (point))
714 end)
715 (prog1
716 (prin1 value)
717 (let ((str (eval-expression-print-format value)))
718 (if str (princ str)))
719 (setq end (point))
720 (when (and (bufferp standard-output)
721 (or (not (null print-length))
722 (not (null print-level)))
723 (not (string= unabbreviated
724 (buffer-substring-no-properties beg end))))
725 (last-sexp-setup-props beg end value
726 unabbreviated
727 (buffer-substring-no-properties beg end))
728 ))))
729
730
731 (defvar eval-last-sexp-fake-value (make-symbol "t"))
732
733 (defun eval-last-sexp (eval-last-sexp-arg-internal)
734 "Evaluate sexp before point; print value in minibuffer.
735 Interactively, with prefix argument, print output into current buffer.
736 Truncates long output according to the value of the variables
737 `eval-expression-print-length' and `eval-expression-print-level'.
738
739 If `eval-expression-debug-on-error' is non-nil, which is the default,
740 this command arranges for all errors to enter the debugger."
741 (interactive "P")
742 (if (null eval-expression-debug-on-error)
743 (eval-last-sexp-1 eval-last-sexp-arg-internal)
744 (let ((value
745 (let ((debug-on-error eval-last-sexp-fake-value))
746 (cons (eval-last-sexp-1 eval-last-sexp-arg-internal)
747 debug-on-error))))
748 (unless (eq (cdr value) eval-last-sexp-fake-value)
749 (setq debug-on-error (cdr value)))
750 (car value))))
751
752 (defun eval-defun-1 (form)
753 "Treat some expressions specially.
754 Reset the `defvar' and `defcustom' variables to the initial value.
755 Reinitialize the face according to the `defface' specification."
756 ;; The code in edebug-defun should be consistent with this, but not
757 ;; the same, since this gets a macroexpended form.
758 (cond ((not (listp form))
759 form)
760 ((and (eq (car form) 'defvar)
761 (cdr-safe (cdr-safe form))
762 (boundp (cadr form)))
763 ;; Force variable to be re-set.
764 `(progn (defvar ,(nth 1 form) nil ,@(nthcdr 3 form))
765 (setq-default ,(nth 1 form) ,(nth 2 form))))
766 ;; `defcustom' is now macroexpanded to
767 ;; `custom-declare-variable' with a quoted value arg.
768 ((and (eq (car form) 'custom-declare-variable)
769 (default-boundp (eval (nth 1 form))))
770 ;; Force variable to be bound.
771 (set-default (eval (nth 1 form)) (eval (nth 1 (nth 2 form))))
772 form)
773 ;; `defface' is macroexpanded to `custom-declare-face'.
774 ((eq (car form) 'custom-declare-face)
775 ;; Reset the face.
776 (setq face-new-frame-defaults
777 (assq-delete-all (eval (nth 1 form)) face-new-frame-defaults))
778 (put (eval (nth 1 form)) 'face-defface-spec nil)
779 ;; Setting `customized-face' to the new spec after calling
780 ;; the form, but preserving the old saved spec in `saved-face',
781 ;; imitates the situation when the new face spec is set
782 ;; temporarily for the current session in the customize
783 ;; buffer, thus allowing `face-user-default-spec' to use the
784 ;; new customized spec instead of the saved spec.
785 ;; Resetting `saved-face' temporarily to nil is needed to let
786 ;; `defface' change the spec, regardless of a saved spec.
787 (prog1 `(prog1 ,form
788 (put ,(nth 1 form) 'saved-face
789 ',(get (eval (nth 1 form)) 'saved-face))
790 (put ,(nth 1 form) 'customized-face
791 ,(nth 2 form)))
792 (put (eval (nth 1 form)) 'saved-face nil)))
793 ((eq (car form) 'progn)
794 (cons 'progn (mapcar 'eval-defun-1 (cdr form))))
795 (t form)))
796
797 (defun eval-defun-2 ()
798 "Evaluate defun that point is in or before.
799 The value is displayed in the minibuffer.
800 If the current defun is actually a call to `defvar',
801 then reset the variable using the initial value expression
802 even if the variable already has some other value.
803 \(Normally `defvar' does not change the variable's value
804 if it already has a value.\)
805
806 With argument, insert value in current buffer after the defun.
807 Return the result of evaluation."
808 (interactive "P")
809 ;; FIXME: the print-length/level bindings should only be applied while
810 ;; printing, not while evaluating.
811 (let ((debug-on-error eval-expression-debug-on-error)
812 (print-length eval-expression-print-length)
813 (print-level eval-expression-print-level))
814 (save-excursion
815 ;; Arrange for eval-region to "read" the (possibly) altered form.
816 ;; eval-region handles recording which file defines a function or
817 ;; variable. Re-written using `apply' to avoid capturing
818 ;; variables like `end'.
819 (apply
820 #'eval-region
821 (let ((standard-output t)
822 beg end form)
823 ;; Read the form from the buffer, and record where it ends.
824 (save-excursion
825 (end-of-defun)
826 (beginning-of-defun)
827 (setq beg (point))
828 (setq form (read (current-buffer)))
829 (setq end (point)))
830 ;; Alter the form if necessary.
831 (setq form (eval-defun-1 (macroexpand form)))
832 (list beg end standard-output
833 `(lambda (ignore)
834 ;; Skipping to the end of the specified region
835 ;; will make eval-region return.
836 (goto-char ,end)
837 ',form))))))
838 ;; The result of evaluation has been put onto VALUES. So return it.
839 (car values))
840
841 (defun eval-defun (edebug-it)
842 "Evaluate the top-level form containing point, or after point.
843
844 If the current defun is actually a call to `defvar' or `defcustom',
845 evaluating it this way resets the variable using its initial value
846 expression even if the variable already has some other value.
847 \(Normally `defvar' and `defcustom' do not alter the value if there
848 already is one.) In an analogous way, evaluating a `defface'
849 overrides any customizations of the face, so that it becomes
850 defined exactly as the `defface' expression says.
851
852 If `eval-expression-debug-on-error' is non-nil, which is the default,
853 this command arranges for all errors to enter the debugger.
854
855 With a prefix argument, instrument the code for Edebug.
856
857 If acting on a `defun' for FUNCTION, and the function was
858 instrumented, `Edebug: FUNCTION' is printed in the minibuffer. If not
859 instrumented, just FUNCTION is printed.
860
861 If not acting on a `defun', the result of evaluation is displayed in
862 the minibuffer. This display is controlled by the variables
863 `eval-expression-print-length' and `eval-expression-print-level',
864 which see."
865 (interactive "P")
866 (cond (edebug-it
867 (require 'edebug)
868 (eval-defun (not edebug-all-defs)))
869 (t
870 (if (null eval-expression-debug-on-error)
871 (eval-defun-2)
872 (let ((old-value (make-symbol "t")) new-value value)
873 (let ((debug-on-error old-value))
874 (setq value (eval-defun-2))
875 (setq new-value debug-on-error))
876 (unless (eq old-value new-value)
877 (setq debug-on-error new-value))
878 value)))))
879
880 ;; May still be used by some external Lisp-mode variant.
881 (define-obsolete-function-alias 'lisp-comment-indent
882 'comment-indent-default "22.1")
883 (define-obsolete-function-alias 'lisp-mode-auto-fill 'do-auto-fill "23.1")
884
885 (defcustom lisp-indent-offset nil
886 "If non-nil, indent second line of expressions that many more columns."
887 :group 'lisp
888 :type '(choice (const nil) integer))
889 (put 'lisp-indent-offset 'safe-local-variable
890 (lambda (x) (or (null x) (integerp x))))
891
892 (defcustom lisp-indent-function 'lisp-indent-function
893 "A function to be called by `calculate-lisp-indent'.
894 It indents the arguments of a Lisp function call. This function
895 should accept two arguments: the indent-point, and the
896 `parse-partial-sexp' state at that position. One option for this
897 function is `common-lisp-indent-function'."
898 :type 'function
899 :group 'lisp)
900
901 (defun lisp-indent-line (&optional whole-exp)
902 "Indent current line as Lisp code.
903 With argument, indent any additional lines of the same expression
904 rigidly along with this one."
905 (interactive "P")
906 (let ((indent (calculate-lisp-indent)) shift-amt end
907 (pos (- (point-max) (point)))
908 (beg (progn (beginning-of-line) (point))))
909 (skip-chars-forward " \t")
910 (if (or (null indent) (looking-at "\\s<\\s<\\s<"))
911 ;; Don't alter indentation of a ;;; comment line
912 ;; or a line that starts in a string.
913 (goto-char (- (point-max) pos))
914 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<")))
915 ;; Single-semicolon comment lines should be indented
916 ;; as comment lines, not as code.
917 (progn (indent-for-comment) (forward-char -1))
918 (if (listp indent) (setq indent (car indent)))
919 (setq shift-amt (- indent (current-column)))
920 (if (zerop shift-amt)
921 nil
922 (delete-region beg (point))
923 (indent-to indent)))
924 ;; If initial point was within line's indentation,
925 ;; position after the indentation. Else stay at same point in text.
926 (if (> (- (point-max) pos) (point))
927 (goto-char (- (point-max) pos)))
928 ;; If desired, shift remaining lines of expression the same amount.
929 (and whole-exp (not (zerop shift-amt))
930 (save-excursion
931 (goto-char beg)
932 (forward-sexp 1)
933 (setq end (point))
934 (goto-char beg)
935 (forward-line 1)
936 (setq beg (point))
937 (> end beg))
938 (indent-code-rigidly beg end shift-amt)))))
939
940 (defvar calculate-lisp-indent-last-sexp)
941
942 (defun calculate-lisp-indent (&optional parse-start)
943 "Return appropriate indentation for current line as Lisp code.
944 In usual case returns an integer: the column to indent to.
945 If the value is nil, that means don't change the indentation
946 because the line starts inside a string.
947
948 The value can also be a list of the form (COLUMN CONTAINING-SEXP-START).
949 This means that following lines at the same level of indentation
950 should not necessarily be indented the same as this line.
951 Then COLUMN is the column to indent to, and CONTAINING-SEXP-START
952 is the buffer position of the start of the containing expression."
953 (save-excursion
954 (beginning-of-line)
955 (let ((indent-point (point))
956 state paren-depth
957 ;; setting this to a number inhibits calling hook
958 (desired-indent nil)
959 (retry t)
960 calculate-lisp-indent-last-sexp containing-sexp)
961 (if parse-start
962 (goto-char parse-start)
963 (beginning-of-defun))
964 ;; Find outermost containing sexp
965 (while (< (point) indent-point)
966 (setq state (parse-partial-sexp (point) indent-point 0)))
967 ;; Find innermost containing sexp
968 (while (and retry
969 state
970 (> (setq paren-depth (elt state 0)) 0))
971 (setq retry nil)
972 (setq calculate-lisp-indent-last-sexp (elt state 2))
973 (setq containing-sexp (elt state 1))
974 ;; Position following last unclosed open.
975 (goto-char (1+ containing-sexp))
976 ;; Is there a complete sexp since then?
977 (if (and calculate-lisp-indent-last-sexp
978 (> calculate-lisp-indent-last-sexp (point)))
979 ;; Yes, but is there a containing sexp after that?
980 (let ((peek (parse-partial-sexp calculate-lisp-indent-last-sexp
981 indent-point 0)))
982 (if (setq retry (car (cdr peek))) (setq state peek)))))
983 (if retry
984 nil
985 ;; Innermost containing sexp found
986 (goto-char (1+ containing-sexp))
987 (if (not calculate-lisp-indent-last-sexp)
988 ;; indent-point immediately follows open paren.
989 ;; Don't call hook.
990 (setq desired-indent (current-column))
991 ;; Find the start of first element of containing sexp.
992 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
993 (cond ((looking-at "\\s(")
994 ;; First element of containing sexp is a list.
995 ;; Indent under that list.
996 )
997 ((> (save-excursion (forward-line 1) (point))
998 calculate-lisp-indent-last-sexp)
999 ;; This is the first line to start within the containing sexp.
1000 ;; It's almost certainly a function call.
1001 (if (= (point) calculate-lisp-indent-last-sexp)
1002 ;; Containing sexp has nothing before this line
1003 ;; except the first element. Indent under that element.
1004 nil
1005 ;; Skip the first element, find start of second (the first
1006 ;; argument of the function call) and indent under.
1007 (progn (forward-sexp 1)
1008 (parse-partial-sexp (point)
1009 calculate-lisp-indent-last-sexp
1010 0 t)))
1011 (backward-prefix-chars))
1012 (t
1013 ;; Indent beneath first sexp on same line as
1014 ;; `calculate-lisp-indent-last-sexp'. Again, it's
1015 ;; almost certainly a function call.
1016 (goto-char calculate-lisp-indent-last-sexp)
1017 (beginning-of-line)
1018 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp
1019 0 t)
1020 (backward-prefix-chars)))))
1021 ;; Point is at the point to indent under unless we are inside a string.
1022 ;; Call indentation hook except when overridden by lisp-indent-offset
1023 ;; or if the desired indentation has already been computed.
1024 (let ((normal-indent (current-column)))
1025 (cond ((elt state 3)
1026 ;; Inside a string, don't change indentation.
1027 nil)
1028 ((and (integerp lisp-indent-offset) containing-sexp)
1029 ;; Indent by constant offset
1030 (goto-char containing-sexp)
1031 (+ (current-column) lisp-indent-offset))
1032 ;; in this case calculate-lisp-indent-last-sexp is not nil
1033 (calculate-lisp-indent-last-sexp
1034 (or
1035 ;; try to align the parameters of a known function
1036 (and lisp-indent-function
1037 (not retry)
1038 (funcall lisp-indent-function indent-point state))
1039 ;; If the function has no special alignment
1040 ;; or it does not apply to this argument,
1041 ;; try to align a constant-symbol under the last
1042 ;; preceding constant symbol, if there is such one of
1043 ;; the last 2 preceding symbols, in the previous
1044 ;; uncommented line.
1045 (and (save-excursion
1046 (goto-char indent-point)
1047 (skip-chars-forward " \t")
1048 (looking-at ":"))
1049 ;; The last sexp may not be at the indentation
1050 ;; where it begins, so find that one, instead.
1051 (save-excursion
1052 (goto-char calculate-lisp-indent-last-sexp)
1053 ;; Handle prefix characters and whitespace
1054 ;; following an open paren. (Bug#1012)
1055 (backward-prefix-chars)
1056 (while (and (not (looking-back "^[ \t]*\\|([ \t]+"))
1057 (or (not containing-sexp)
1058 (< (1+ containing-sexp) (point))))
1059 (forward-sexp -1)
1060 (backward-prefix-chars))
1061 (setq calculate-lisp-indent-last-sexp (point)))
1062 (> calculate-lisp-indent-last-sexp
1063 (save-excursion
1064 (goto-char (1+ containing-sexp))
1065 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
1066 (point)))
1067 (let ((parse-sexp-ignore-comments t)
1068 indent)
1069 (goto-char calculate-lisp-indent-last-sexp)
1070 (or (and (looking-at ":")
1071 (setq indent (current-column)))
1072 (and (< (save-excursion (beginning-of-line) (point))
1073 (prog2 (backward-sexp) (point)))
1074 (looking-at ":")
1075 (setq indent (current-column))))
1076 indent))
1077 ;; another symbols or constants not preceded by a constant
1078 ;; as defined above.
1079 normal-indent))
1080 ;; in this case calculate-lisp-indent-last-sexp is nil
1081 (desired-indent)
1082 (t
1083 normal-indent))))))
1084
1085 (defun lisp-indent-function (indent-point state)
1086 "This function is the normal value of the variable `lisp-indent-function'.
1087 It is used when indenting a line within a function call, to see if the
1088 called function says anything special about how to indent the line.
1089
1090 INDENT-POINT is the position where the user typed TAB, or equivalent.
1091 Point is located at the point to indent under (for default indentation);
1092 STATE is the `parse-partial-sexp' state for that position.
1093
1094 If the current line is in a call to a Lisp function
1095 which has a non-nil property `lisp-indent-function',
1096 that specifies how to do the indentation. The property value can be
1097 * `defun', meaning indent `defun'-style;
1098 * an integer N, meaning indent the first N arguments specially
1099 like ordinary function arguments and then indent any further
1100 arguments like a body;
1101 * a function to call just as this function was called.
1102 If that function returns nil, that means it doesn't specify
1103 the indentation.
1104
1105 This function also returns nil meaning don't specify the indentation."
1106 (let ((normal-indent (current-column)))
1107 (goto-char (1+ (elt state 1)))
1108 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
1109 (if (and (elt state 2)
1110 (not (looking-at "\\sw\\|\\s_")))
1111 ;; car of form doesn't seem to be a symbol
1112 (progn
1113 (if (not (> (save-excursion (forward-line 1) (point))
1114 calculate-lisp-indent-last-sexp))
1115 (progn (goto-char calculate-lisp-indent-last-sexp)
1116 (beginning-of-line)
1117 (parse-partial-sexp (point)
1118 calculate-lisp-indent-last-sexp 0 t)))
1119 ;; Indent under the list or under the first sexp on the same
1120 ;; line as calculate-lisp-indent-last-sexp. Note that first
1121 ;; thing on that line has to be complete sexp since we are
1122 ;; inside the innermost containing sexp.
1123 (backward-prefix-chars)
1124 (current-column))
1125 (let ((function (buffer-substring (point)
1126 (progn (forward-sexp 1) (point))))
1127 method)
1128 (setq method (or (get (intern-soft function) 'lisp-indent-function)
1129 (get (intern-soft function) 'lisp-indent-hook)))
1130 (cond ((or (eq method 'defun)
1131 (and (null method)
1132 (> (length function) 3)
1133 (string-match "\\`def" function)))
1134 (lisp-indent-defform state indent-point))
1135 ((integerp method)
1136 (lisp-indent-specform method state
1137 indent-point normal-indent))
1138 (method
1139 (funcall method indent-point state)))))))
1140
1141 (defcustom lisp-body-indent 2
1142 "Number of columns to indent the second line of a `(def...)' form."
1143 :group 'lisp
1144 :type 'integer)
1145 (put 'lisp-body-indent 'safe-local-variable 'integerp)
1146
1147 (defun lisp-indent-specform (count state indent-point normal-indent)
1148 (let ((containing-form-start (elt state 1))
1149 (i count)
1150 body-indent containing-form-column)
1151 ;; Move to the start of containing form, calculate indentation
1152 ;; to use for non-distinguished forms (> count), and move past the
1153 ;; function symbol. lisp-indent-function guarantees that there is at
1154 ;; least one word or symbol character following open paren of containing
1155 ;; form.
1156 (goto-char containing-form-start)
1157 (setq containing-form-column (current-column))
1158 (setq body-indent (+ lisp-body-indent containing-form-column))
1159 (forward-char 1)
1160 (forward-sexp 1)
1161 ;; Now find the start of the last form.
1162 (parse-partial-sexp (point) indent-point 1 t)
1163 (while (and (< (point) indent-point)
1164 (condition-case ()
1165 (progn
1166 (setq count (1- count))
1167 (forward-sexp 1)
1168 (parse-partial-sexp (point) indent-point 1 t))
1169 (error nil))))
1170 ;; Point is sitting on first character of last (or count) sexp.
1171 (if (> count 0)
1172 ;; A distinguished form. If it is the first or second form use double
1173 ;; lisp-body-indent, else normal indent. With lisp-body-indent bound
1174 ;; to 2 (the default), this just happens to work the same with if as
1175 ;; the older code, but it makes unwind-protect, condition-case,
1176 ;; with-output-to-temp-buffer, et. al. much more tasteful. The older,
1177 ;; less hacked, behavior can be obtained by replacing below with
1178 ;; (list normal-indent containing-form-start).
1179 (if (<= (- i count) 1)
1180 (list (+ containing-form-column (* 2 lisp-body-indent))
1181 containing-form-start)
1182 (list normal-indent containing-form-start))
1183 ;; A non-distinguished form. Use body-indent if there are no
1184 ;; distinguished forms and this is the first undistinguished form,
1185 ;; or if this is the first undistinguished form and the preceding
1186 ;; distinguished form has indentation at least as great as body-indent.
1187 (if (or (and (= i 0) (= count 0))
1188 (and (= count 0) (<= body-indent normal-indent)))
1189 body-indent
1190 normal-indent))))
1191
1192 (defun lisp-indent-defform (state indent-point)
1193 (goto-char (car (cdr state)))
1194 (forward-line 1)
1195 (if (> (point) (car (cdr (cdr state))))
1196 (progn
1197 (goto-char (car (cdr state)))
1198 (+ lisp-body-indent (current-column)))))
1199
1200
1201 ;; (put 'progn 'lisp-indent-function 0), say, causes progn to be indented
1202 ;; like defun if the first form is placed on the next line, otherwise
1203 ;; it is indented like any other form (i.e. forms line up under first).
1204
1205 (put 'lambda 'lisp-indent-function 'defun)
1206 (put 'autoload 'lisp-indent-function 'defun)
1207 (put 'progn 'lisp-indent-function 0)
1208 (put 'prog1 'lisp-indent-function 1)
1209 (put 'prog2 'lisp-indent-function 2)
1210 (put 'save-excursion 'lisp-indent-function 0)
1211 (put 'save-window-excursion 'lisp-indent-function 0)
1212 (put 'save-selected-window 'lisp-indent-function 0)
1213 (put 'save-restriction 'lisp-indent-function 0)
1214 (put 'save-match-data 'lisp-indent-function 0)
1215 (put 'save-current-buffer 'lisp-indent-function 0)
1216 (put 'with-current-buffer 'lisp-indent-function 1)
1217 (put 'combine-after-change-calls 'lisp-indent-function 0)
1218 (put 'with-output-to-string 'lisp-indent-function 0)
1219 (put 'with-temp-file 'lisp-indent-function 1)
1220 (put 'with-temp-buffer 'lisp-indent-function 0)
1221 (put 'with-temp-message 'lisp-indent-function 1)
1222 (put 'with-syntax-table 'lisp-indent-function 1)
1223 (put 'let 'lisp-indent-function 1)
1224 (put 'let* 'lisp-indent-function 1)
1225 (put 'while 'lisp-indent-function 1)
1226 (put 'if 'lisp-indent-function 2)
1227 (put 'read-if 'lisp-indent-function 2)
1228 (put 'catch 'lisp-indent-function 1)
1229 (put 'condition-case 'lisp-indent-function 2)
1230 (put 'unwind-protect 'lisp-indent-function 1)
1231 (put 'with-output-to-temp-buffer 'lisp-indent-function 1)
1232 (put 'eval-after-load 'lisp-indent-function 1)
1233 (put 'dolist 'lisp-indent-function 1)
1234 (put 'dotimes 'lisp-indent-function 1)
1235 (put 'when 'lisp-indent-function 1)
1236 (put 'unless 'lisp-indent-function 1)
1237
1238 (defun indent-sexp (&optional endpos)
1239 "Indent each line of the list starting just after point.
1240 If optional arg ENDPOS is given, indent each line, stopping when
1241 ENDPOS is encountered."
1242 (interactive)
1243 (let ((indent-stack (list nil))
1244 (next-depth 0)
1245 ;; If ENDPOS is non-nil, use nil as STARTING-POINT
1246 ;; so that calculate-lisp-indent will find the beginning of
1247 ;; the defun we are in.
1248 ;; If ENDPOS is nil, it is safe not to scan before point
1249 ;; since every line we indent is more deeply nested than point is.
1250 (starting-point (if endpos nil (point)))
1251 (last-point (point))
1252 last-depth bol outer-loop-done inner-loop-done state this-indent)
1253 (or endpos
1254 ;; Get error now if we don't have a complete sexp after point.
1255 (save-excursion (forward-sexp 1)))
1256 (save-excursion
1257 (setq outer-loop-done nil)
1258 (while (if endpos (< (point) endpos)
1259 (not outer-loop-done))
1260 (setq last-depth next-depth
1261 inner-loop-done nil)
1262 ;; Parse this line so we can learn the state
1263 ;; to indent the next line.
1264 ;; This inner loop goes through only once
1265 ;; unless a line ends inside a string.
1266 (while (and (not inner-loop-done)
1267 (not (setq outer-loop-done (eobp))))
1268 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
1269 nil nil state))
1270 (setq next-depth (car state))
1271 ;; If the line contains a comment other than the sort
1272 ;; that is indented like code,
1273 ;; indent it now with indent-for-comment.
1274 ;; Comments indented like code are right already.
1275 ;; In any case clear the in-comment flag in the state
1276 ;; because parse-partial-sexp never sees the newlines.
1277 (if (car (nthcdr 4 state))
1278 (progn (indent-for-comment)
1279 (end-of-line)
1280 (setcar (nthcdr 4 state) nil)))
1281 ;; If this line ends inside a string,
1282 ;; go straight to next line, remaining within the inner loop,
1283 ;; and turn off the \-flag.
1284 (if (car (nthcdr 3 state))
1285 (progn
1286 (forward-line 1)
1287 (setcar (nthcdr 5 state) nil))
1288 (setq inner-loop-done t)))
1289 (and endpos
1290 (<= next-depth 0)
1291 (progn
1292 (setq indent-stack (nconc indent-stack
1293 (make-list (- next-depth) nil))
1294 last-depth (- last-depth next-depth)
1295 next-depth 0)))
1296 (forward-line 1)
1297 ;; Decide whether to exit.
1298 (if endpos
1299 ;; If we have already reached the specified end,
1300 ;; give up and do not reindent this line.
1301 (if (<= endpos (point))
1302 (setq outer-loop-done t))
1303 ;; If no specified end, we are done if we have finished one sexp.
1304 (if (<= next-depth 0)
1305 (setq outer-loop-done t)))
1306 (unless outer-loop-done
1307 (while (> last-depth next-depth)
1308 (setq indent-stack (cdr indent-stack)
1309 last-depth (1- last-depth)))
1310 (while (< last-depth next-depth)
1311 (setq indent-stack (cons nil indent-stack)
1312 last-depth (1+ last-depth)))
1313 ;; Now indent the next line according
1314 ;; to what we learned from parsing the previous one.
1315 (setq bol (point))
1316 (skip-chars-forward " \t")
1317 ;; But not if the line is blank, or just a comment
1318 ;; (except for double-semi comments; indent them as usual).
1319 (if (or (eobp) (looking-at "\\s<\\|\n"))
1320 nil
1321 (if (and (car indent-stack)
1322 (>= (car indent-stack) 0))
1323 (setq this-indent (car indent-stack))
1324 (let ((val (calculate-lisp-indent
1325 (if (car indent-stack) (- (car indent-stack))
1326 starting-point))))
1327 (if (null val)
1328 (setq this-indent val)
1329 (if (integerp val)
1330 (setcar indent-stack
1331 (setq this-indent val))
1332 (setcar indent-stack (- (car (cdr val))))
1333 (setq this-indent (car val))))))
1334 (if (and this-indent (/= (current-column) this-indent))
1335 (progn (delete-region bol (point))
1336 (indent-to this-indent)))))
1337 (or outer-loop-done
1338 (setq outer-loop-done (= (point) last-point))
1339 (setq last-point (point)))))))
1340
1341 (defun indent-pp-sexp (&optional arg)
1342 "Indent each line of the list starting just after point, or prettyprint it.
1343 A prefix argument specifies pretty-printing."
1344 (interactive "P")
1345 (if arg
1346 (save-excursion
1347 (save-restriction
1348 (narrow-to-region (point) (progn (forward-sexp 1) (point)))
1349 (pp-buffer)
1350 (goto-char (point-max))
1351 (if (eq (char-before) ?\n)
1352 (delete-char -1)))))
1353 (indent-sexp))
1354
1355 ;;;; Lisp paragraph filling commands.
1356
1357 (defcustom emacs-lisp-docstring-fill-column 65
1358 "Value of `fill-column' to use when filling a docstring.
1359 Any non-integer value means do not use a different value of
1360 `fill-column' when filling docstrings."
1361 :type '(choice (integer)
1362 (const :tag "Use the current `fill-column'" t))
1363 :group 'lisp)
1364
1365 (defun lisp-fill-paragraph (&optional justify)
1366 "Like \\[fill-paragraph], but handle Emacs Lisp comments and docstrings.
1367 If any of the current line is a comment, fill the comment or the
1368 paragraph of it that point is in, preserving the comment's indentation
1369 and initial semicolons."
1370 (interactive "P")
1371 (or (fill-comment-paragraph justify)
1372 ;; Since fill-comment-paragraph returned nil, that means we're not in
1373 ;; a comment: Point is on a program line; we are interested
1374 ;; particularly in docstring lines.
1375 ;;
1376 ;; We bind `paragraph-start' and `paragraph-separate' temporarily. They
1377 ;; are buffer-local, but we avoid changing them so that they can be set
1378 ;; to make `forward-paragraph' and friends do something the user wants.
1379 ;;
1380 ;; `paragraph-start': The `(' in the character alternative and the
1381 ;; left-singlequote plus `(' sequence after the \\| alternative prevent
1382 ;; sexps and backquoted sexps that follow a docstring from being filled
1383 ;; with the docstring. This setting has the consequence of inhibiting
1384 ;; filling many program lines that are not docstrings, which is sensible,
1385 ;; because the user probably asked to fill program lines by accident, or
1386 ;; expecting indentation (perhaps we should try to do indenting in that
1387 ;; case). The `;' and `:' stop the paragraph being filled at following
1388 ;; comment lines and at keywords (e.g., in `defcustom'). Left parens are
1389 ;; escaped to keep font-locking, filling, & paren matching in the source
1390 ;; file happy.
1391 ;;
1392 ;; `paragraph-separate': A clever regexp distinguishes the first line of
1393 ;; a docstring and identifies it as a paragraph separator, so that it
1394 ;; won't be filled. (Since the first line of documentation stands alone
1395 ;; in some contexts, filling should not alter the contents the author has
1396 ;; chosen.) Only the first line of a docstring begins with whitespace
1397 ;; and a quotation mark and ends with a period or (rarely) a comma.
1398 ;;
1399 ;; The `fill-column' is temporarily bound to
1400 ;; `emacs-lisp-docstring-fill-column' if that value is an integer.
1401 (let ((paragraph-start (concat paragraph-start
1402 "\\|\\s-*\\([(;:\"]\\|`(\\|#'(\\)"))
1403 (paragraph-separate
1404 (concat paragraph-separate "\\|\\s-*\".*[,\\.]$"))
1405 (fill-column (if (and (integerp emacs-lisp-docstring-fill-column)
1406 (derived-mode-p 'emacs-lisp-mode))
1407 emacs-lisp-docstring-fill-column
1408 fill-column)))
1409 (fill-paragraph justify))
1410 ;; Never return nil.
1411 t))
1412
1413 (defun indent-code-rigidly (start end arg &optional nochange-regexp)
1414 "Indent all lines of code, starting in the region, sideways by ARG columns.
1415 Does not affect lines starting inside comments or strings, assuming that
1416 the start of the region is not inside them.
1417
1418 Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP.
1419 The last is a regexp which, if matched at the beginning of a line,
1420 means don't indent that line."
1421 (interactive "r\np")
1422 (let (state)
1423 (save-excursion
1424 (goto-char end)
1425 (setq end (point-marker))
1426 (goto-char start)
1427 (or (bolp)
1428 (setq state (parse-partial-sexp (point)
1429 (progn
1430 (forward-line 1) (point))
1431 nil nil state)))
1432 (while (< (point) end)
1433 (or (car (nthcdr 3 state))
1434 (and nochange-regexp
1435 (looking-at nochange-regexp))
1436 ;; If line does not start in string, indent it
1437 (let ((indent (current-indentation)))
1438 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
1439 (or (eolp)
1440 (indent-to (max 0 (+ indent arg)) 0))))
1441 (setq state (parse-partial-sexp (point)
1442 (progn
1443 (forward-line 1) (point))
1444 nil nil state))))))
1445
1446 (provide 'lisp-mode)
1447
1448 ;; arch-tag: 414c7f93-c245-4b77-8ed5-ed05ef7ff1bf
1449 ;;; lisp-mode.el ends here