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