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