Mercurial > emacs
annotate lisp/emacs-lisp/lisp-mode.el @ 55805:a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
(emacs-lisp-mode-map, lisp-interaction-mode-map):
Bind C-M-q to `indent-pp-sexp'.
(eval-last-sexp-print-value): Print additionally the value returned by
`eval-expression-print-format'.
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Fri, 28 May 2004 21:09:05 +0000 |
parents | 6010b740e1d0 |
children | fcd2e17daffa |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38315
diff
changeset
|
1 ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
54315
cad9b29a5224
(lisp-mode-variables): Set it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53922
diff
changeset
|
3 ;; Copyright (C) 1985,86,1999,2000,01,03,2004 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
5 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: lisp, languages |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
7 |
213 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
213 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
213 | 24 |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
25 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
26 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
27 ;; The base major mode for editing Lisp code (used also for Emacs Lisp). |
27809 | 28 ;; This mode is documented in the Emacs manual. |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
29 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
30 ;;; Code: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
31 |
27809 | 32 (defvar lisp-mode-abbrev-table nil) |
213 | 33 |
27809 | 34 (defvar emacs-lisp-mode-syntax-table |
35 (let ((table (make-syntax-table))) | |
213 | 36 (let ((i 0)) |
37 (while (< i ?0) | |
27809 | 38 (modify-syntax-entry i "_ " table) |
213 | 39 (setq i (1+ i))) |
40 (setq i (1+ ?9)) | |
41 (while (< i ?A) | |
27809 | 42 (modify-syntax-entry i "_ " table) |
213 | 43 (setq i (1+ i))) |
44 (setq i (1+ ?Z)) | |
45 (while (< i ?a) | |
27809 | 46 (modify-syntax-entry i "_ " table) |
213 | 47 (setq i (1+ i))) |
48 (setq i (1+ ?z)) | |
49 (while (< i 128) | |
27809 | 50 (modify-syntax-entry i "_ " table) |
213 | 51 (setq i (1+ i))) |
27809 | 52 (modify-syntax-entry ? " " table) |
53 (modify-syntax-entry ?\t " " table) | |
54 (modify-syntax-entry ?\f " " table) | |
55 (modify-syntax-entry ?\n "> " table) | |
8325
2c8b3c988b10
(emacs-lisp-mode-syntax-table): Give RET the same syntax as newline.
Richard M. Stallman <rms@gnu.org>
parents:
7301
diff
changeset
|
56 ;; Give CR the same syntax as newline, for selective-display. |
27809 | 57 (modify-syntax-entry ?\^m "> " table) |
58 (modify-syntax-entry ?\; "< " table) | |
59 (modify-syntax-entry ?` "' " table) | |
60 (modify-syntax-entry ?' "' " table) | |
61 (modify-syntax-entry ?, "' " table) | |
50677
152c21ba1618
(emacs-lisp-mode-syntax-table): Give @ prefix syntax.
Richard M. Stallman <rms@gnu.org>
parents:
50585
diff
changeset
|
62 (modify-syntax-entry ?@ "' " table) |
213 | 63 ;; Used to be singlequote; changed for flonums. |
27809 | 64 (modify-syntax-entry ?. "_ " table) |
65 (modify-syntax-entry ?# "' " table) | |
66 (modify-syntax-entry ?\" "\" " table) | |
67 (modify-syntax-entry ?\\ "\\ " table) | |
68 (modify-syntax-entry ?\( "() " table) | |
69 (modify-syntax-entry ?\) ")( " table) | |
70 (modify-syntax-entry ?\[ "(] " table) | |
27814
f2abbe1d6b47
Don't change syntax of multibyte
Kenichi Handa <handa@m17n.org>
parents:
27809
diff
changeset
|
71 (modify-syntax-entry ?\] ")[ " table)) |
27809 | 72 table)) |
213 | 73 |
27809 | 74 (defvar lisp-mode-syntax-table |
75 (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table))) | |
76 (modify-syntax-entry ?\[ "_ " table) | |
77 (modify-syntax-entry ?\] "_ " table) | |
78 (modify-syntax-entry ?# "' 14bn" table) | |
27934
8c28c1c31e9b
(lisp-mode-syntax-table): Fix syntax of |.
Dave Love <fx@gnu.org>
parents:
27814
diff
changeset
|
79 (modify-syntax-entry ?| "\" 23b" table) |
27809 | 80 table)) |
285 | 81 |
213 | 82 (define-abbrev-table 'lisp-mode-abbrev-table ()) |
83 | |
12701
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
84 (defvar lisp-imenu-generic-expression |
27809 | 85 (list |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
86 (list nil |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
87 (purecopy (concat "^\\s-*(" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
88 (eval-when-compile |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
89 (regexp-opt |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
90 '("defun" "defun*" "defsubst" "defmacro" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
91 "defadvice" "define-skeleton" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
92 "define-minor-mode" "define-derived-mode" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
93 "define-compiler-macro" "define-modify-macro" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
94 "defsetf" "define-setf-expander" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
95 "define-method-combination" |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
96 "defgeneric" "defmethod") t)) |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
97 "\\s-+\\(\\sw\\(\\sw\\|\\s_\\)+\\)")) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
98 2) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
99 (list (purecopy "Variables") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
100 (purecopy (concat "^\\s-*(" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
101 (eval-when-compile |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
102 (regexp-opt |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
103 '("defvar" "defconst" "defconstant" "defcustom" |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
104 "defparameter" "define-symbol-macro") t)) |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
105 "\\s-+\\(\\sw\\(\\sw\\|\\s_\\)+\\)")) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
106 2) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
107 (list (purecopy "Types") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
108 (purecopy (concat "^\\s-*(" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
109 (eval-when-compile |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
110 (regexp-opt |
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
111 '("defgroup" "deftheme" "deftype" "defstruct" |
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
112 "defclass" "define-condition" "define-widget" |
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
113 "defface" "defpackage") t)) |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
114 "\\s-+'?\\(\\sw\\(\\sw\\|\\s_\\)+\\)")) |
12701
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
115 2)) |
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
116 |
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
117 "Imenu generic expression for Lisp mode. See `imenu-generic-expression'.") |
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
118 |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
119 ;; This was originally in autoload.el and is still used there. |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
120 (put 'autoload 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
121 (put 'defun 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
122 (put 'defun* 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
123 (put 'defvar 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
124 (put 'defcustom 'doc-string-elt 3) |
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
125 (put 'deftheme 'doc-string-elt 2) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
126 (put 'defconst 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
127 (put 'defmacro 'doc-string-elt 3) |
41812
fb0d648feaa6
(toplevel): Define docstring offset for `defmacro*'.
Colin Walters <walters@gnu.org>
parents:
41702
diff
changeset
|
128 (put 'defmacro* 'doc-string-elt 3) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
129 (put 'defsubst 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
130 (put 'define-skeleton 'doc-string-elt 2) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
131 (put 'define-derived-mode 'doc-string-elt 4) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
132 (put 'easy-mmode-define-minor-mode 'doc-string-elt 2) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
133 (put 'define-minor-mode 'doc-string-elt 2) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
134 (put 'define-generic-mode 'doc-string-elt 7) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
135 ;; define-global-mode has no explicit docstring. |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
136 (put 'easy-mmode-define-global-mode 'doc-string-elt 0) |
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
137 (put 'define-ibuffer-filter 'doc-string-elt 2) |
42699
1da0dfa86ab5
Handle define-ibuffer-column, define-ibuffer-filter,
Colin Walters <walters@gnu.org>
parents:
42235
diff
changeset
|
138 (put 'define-ibuffer-op 'doc-string-elt 3) |
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
139 (put 'define-ibuffer-sorter 'doc-string-elt 2) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
140 |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
141 (defun lisp-font-lock-syntactic-face-function (state) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
142 (if (nth 3 state) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
143 (if (and (eq (nth 0 state) 1) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
144 ;; This might be a docstring. |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
145 (save-excursion |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
146 (let ((n 0)) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
147 (goto-char (nth 8 state)) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
148 (condition-case nil |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
149 (while (and (not (bobp)) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
150 (progn (backward-sexp 1) (setq n (1+ n))))) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
151 (scan-error nil)) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
152 (when (> n 0) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
153 (let ((sym (intern-soft |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
154 (buffer-substring |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
155 (point) (progn (forward-sexp 1) (point)))))) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
156 (eq n (or (get sym 'doc-string-elt) 3))))))) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
157 font-lock-doc-face |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
158 font-lock-string-face) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
159 font-lock-comment-face)) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
160 |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
161 ;; The LISP-SYNTAX argument is used by code in inf-lisp.el and is |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
162 ;; (uselessly) passed from pp.el, chistory.el, gnus-kill.el and score-mode.el |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
163 (defun lisp-mode-variables (&optional lisp-syntax) |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
164 (when lisp-syntax |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
165 (set-syntax-table lisp-mode-syntax-table)) |
213 | 166 (setq local-abbrev-table lisp-mode-abbrev-table) |
167 (make-local-variable 'paragraph-ignore-fill-prefix) | |
168 (setq paragraph-ignore-fill-prefix t) | |
10628
04591bafb562
(shared-lisp-mode-map): Don't bind M-q.
Richard M. Stallman <rms@gnu.org>
parents:
10594
diff
changeset
|
169 (make-local-variable 'fill-paragraph-function) |
04591bafb562
(shared-lisp-mode-map): Don't bind M-q.
Richard M. Stallman <rms@gnu.org>
parents:
10594
diff
changeset
|
170 (setq fill-paragraph-function 'lisp-fill-paragraph) |
14495
fc4be3d538e0
(lisp-mode-variables): Locally clear adaptive-fill-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14379
diff
changeset
|
171 ;; Adaptive fill mode gets in the way of auto-fill, |
fc4be3d538e0
(lisp-mode-variables): Locally clear adaptive-fill-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14379
diff
changeset
|
172 ;; and should make no difference for explicit fill |
fc4be3d538e0
(lisp-mode-variables): Locally clear adaptive-fill-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14379
diff
changeset
|
173 ;; because lisp-fill-paragraph should do the job. |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
174 ;; I believe that newcomment's auto-fill code properly deals with it -stef |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
175 ;;(set (make-local-variable 'adaptive-fill-mode) nil) |
213 | 176 (make-local-variable 'indent-line-function) |
177 (setq indent-line-function 'lisp-indent-line) | |
178 (make-local-variable 'indent-region-function) | |
179 (setq indent-region-function 'lisp-indent-region) | |
180 (make-local-variable 'parse-sexp-ignore-comments) | |
181 (setq parse-sexp-ignore-comments t) | |
6076
4f76564fc2cd
(lisp-mode-variables): Set outline-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
5103
diff
changeset
|
182 (make-local-variable 'outline-regexp) |
53922
6a3ed3adac17
(lisp-mode-variables): Adapt outline-regexp to the new conventions for
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
183 (setq outline-regexp ";;;;* [^ \t\n]\\|(") |
26682
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
184 (make-local-variable 'outline-level) |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
185 (setq outline-level 'lisp-outline-level) |
213 | 186 (make-local-variable 'comment-start) |
187 (setq comment-start ";") | |
188 (make-local-variable 'comment-start-skip) | |
15597
ca84d7021f4e
(lisp-mode-variables): Set comment-start-skip to ignore backslash-quoted
Miles Bader <miles@gnu.org>
parents:
14817
diff
changeset
|
189 ;; Look within the line for a ; following an even number of backslashes |
ca84d7021f4e
(lisp-mode-variables): Set comment-start-skip to ignore backslash-quoted
Miles Bader <miles@gnu.org>
parents:
14817
diff
changeset
|
190 ;; after either a non-backslash or the line beginning. |
ca84d7021f4e
(lisp-mode-variables): Set comment-start-skip to ignore backslash-quoted
Miles Bader <miles@gnu.org>
parents:
14817
diff
changeset
|
191 (setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *") |
28994
0388cb689633
(lisp-mode-variables): Set comment-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28324
diff
changeset
|
192 (make-local-variable 'comment-add) |
0388cb689633
(lisp-mode-variables): Set comment-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28324
diff
changeset
|
193 (setq comment-add 1) ;default to `;;' in comment-region |
213 | 194 (make-local-variable 'comment-column) |
195 (setq comment-column 40) | |
54315
cad9b29a5224
(lisp-mode-variables): Set it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53922
diff
changeset
|
196 ;; Don't get confused by `;' in doc strings when paragraph-filling. |
cad9b29a5224
(lisp-mode-variables): Set it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53922
diff
changeset
|
197 (set (make-local-variable 'comment-use-global-state) t) |
12701
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
198 (make-local-variable 'imenu-generic-expression) |
27814
f2abbe1d6b47
Don't change syntax of multibyte
Kenichi Handa <handa@m17n.org>
parents:
27809
diff
changeset
|
199 (setq imenu-generic-expression lisp-imenu-generic-expression) |
f2abbe1d6b47
Don't change syntax of multibyte
Kenichi Handa <handa@m17n.org>
parents:
27809
diff
changeset
|
200 (make-local-variable 'multibyte-syntax-as-symbol) |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
201 (setq multibyte-syntax-as-symbol t) |
41512
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
202 (set (make-local-variable 'syntax-begin-function) 'beginning-of-defun) |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
203 (setq font-lock-defaults |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
204 '((lisp-font-lock-keywords |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
205 lisp-font-lock-keywords-1 lisp-font-lock-keywords-2) |
54501
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
206 nil nil (("+-*/.<>=!?$%_&~^:" . "w")) nil |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
207 (font-lock-mark-block-function . mark-defun) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
208 (font-lock-syntactic-face-function |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
209 . lisp-font-lock-syntactic-face-function)))) |
26682
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
210 |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
211 (defun lisp-outline-level () |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
212 "Lisp mode `outline-level' function." |
54501
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
213 (if (looking-at "(\\|;;;###autoload") |
26682
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
214 1000 |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
215 (looking-at outline-regexp) |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
216 (- (match-end 0) (match-beginning 0)))) |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
217 |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
218 |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
219 (defvar lisp-mode-shared-map |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
220 (let ((map (make-sparse-keymap))) |
38315
d34fd7c9092b
(lisp-mode-shared-map): Bind TAB
Gerd Moellmann <gerd@gnu.org>
parents:
38169
diff
changeset
|
221 (define-key map "\t" 'lisp-indent-line) |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
222 (define-key map "\e\C-q" 'indent-sexp) |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
223 (define-key map "\177" 'backward-delete-char-untabify) |
35638
0f77c1f47579
(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed,
Eli Zaretskii <eliz@gnu.org>
parents:
35279
diff
changeset
|
224 ;; This gets in the way when viewing a Lisp file in view-mode. As |
0f77c1f47579
(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed,
Eli Zaretskii <eliz@gnu.org>
parents:
35279
diff
changeset
|
225 ;; long as [backspace] is mapped into DEL via the |
0f77c1f47579
(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed,
Eli Zaretskii <eliz@gnu.org>
parents:
35279
diff
changeset
|
226 ;; function-key-map, this should remain disabled!! |
0f77c1f47579
(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed,
Eli Zaretskii <eliz@gnu.org>
parents:
35279
diff
changeset
|
227 ;;;(define-key map [backspace] 'backward-delete-char-untabify) |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
228 map) |
213 | 229 "Keymap for commands shared by all sorts of Lisp modes.") |
230 | |
231 (defvar emacs-lisp-mode-map () | |
232 "Keymap for Emacs Lisp mode. | |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
233 All commands in `lisp-mode-shared-map' are inherited by this map.") |
213 | 234 |
235 (if emacs-lisp-mode-map | |
236 () | |
12035
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
237 (let ((map (make-sparse-keymap "Emacs-Lisp"))) |
21116
ccf251830c66
(lisp-interaction-mode-map)
Richard M. Stallman <rms@gnu.org>
parents:
20459
diff
changeset
|
238 (setq emacs-lisp-mode-map (make-sparse-keymap)) |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
239 (set-keymap-parent emacs-lisp-mode-map lisp-mode-shared-map) |
12035
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
240 (define-key emacs-lisp-mode-map "\e\t" 'lisp-complete-symbol) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
241 (define-key emacs-lisp-mode-map "\e\C-x" 'eval-defun) |
55805
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
242 (define-key emacs-lisp-mode-map "\e\C-q" 'indent-pp-sexp) |
12035
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
243 (define-key emacs-lisp-mode-map [menu-bar] (make-sparse-keymap)) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
244 (define-key emacs-lisp-mode-map [menu-bar emacs-lisp] |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
245 (cons "Emacs-Lisp" map)) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
246 (define-key map [edebug-defun] |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
247 '("Instrument Function for Debugging" . edebug-defun)) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
248 (define-key map [byte-recompile] |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
249 '("Byte-recompile Directory..." . byte-recompile-directory)) |
14290
fc9c72889fec
(emacs-lisp-mode-map): Avoid duplicate in menu bindings.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
250 (define-key map [emacs-byte-compile-and-load] |
14719
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
251 '("Byte-compile And Load" . emacs-lisp-byte-compile-and-load)) |
14116
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
252 (define-key map [byte-compile] |
12035
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
253 '("Byte-compile This File" . emacs-lisp-byte-compile)) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
254 (define-key map [separator-eval] '("--")) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
255 (define-key map [eval-buffer] '("Evaluate Buffer" . eval-current-buffer)) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
256 (define-key map [eval-region] '("Evaluate Region" . eval-region)) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
257 (define-key map [eval-sexp] '("Evaluate Last S-expression" . eval-last-sexp)) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
258 (define-key map [separator-format] '("--")) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
259 (define-key map [comment-region] '("Comment Out Region" . comment-region)) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
260 (define-key map [indent-region] '("Indent Region" . indent-region)) |
12218
a4f383dd5adb
Put mark-active for menu-enable property on eval-region, comment-region, and indent-region symbols.
Simon Marshall <simon@gnu.org>
parents:
12035
diff
changeset
|
261 (define-key map [indent-line] '("Indent Line" . lisp-indent-line)) |
a4f383dd5adb
Put mark-active for menu-enable property on eval-region, comment-region, and indent-region symbols.
Simon Marshall <simon@gnu.org>
parents:
12035
diff
changeset
|
262 (put 'eval-region 'menu-enable 'mark-active) |
a4f383dd5adb
Put mark-active for menu-enable property on eval-region, comment-region, and indent-region symbols.
Simon Marshall <simon@gnu.org>
parents:
12035
diff
changeset
|
263 (put 'comment-region 'menu-enable 'mark-active) |
a4f383dd5adb
Put mark-active for menu-enable property on eval-region, comment-region, and indent-region symbols.
Simon Marshall <simon@gnu.org>
parents:
12035
diff
changeset
|
264 (put 'indent-region 'menu-enable 'mark-active))) |
12035
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
265 |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
266 (defun emacs-lisp-byte-compile () |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
267 "Byte compile the file containing the current buffer." |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
268 (interactive) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
269 (if buffer-file-name |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
270 (byte-compile-file buffer-file-name) |
14116
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
271 (error "The buffer must be saved in a file first"))) |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
272 |
14719
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
273 (defun emacs-lisp-byte-compile-and-load () |
14116
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
274 "Byte-compile the current file (if it has changed), then load compiled code." |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
275 (interactive) |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
276 (or buffer-file-name |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
277 (error "The buffer must be saved in a file first")) |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
278 (require 'bytecomp) |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
279 ;; Recompile if file or buffer has changed since last compilation. |
14719
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
280 (if (and (buffer-modified-p) |
27809 | 281 (y-or-n-p (format "Save buffer %s first? " (buffer-name)))) |
14719
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
282 (save-buffer)) |
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
283 (let ((compiled-file-name (byte-compile-dest-file buffer-file-name))) |
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
284 (if (file-newer-than-file-p compiled-file-name buffer-file-name) |
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
285 (load-file compiled-file-name) |
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
286 (byte-compile-file buffer-file-name t)))) |
213 | 287 |
25630
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
288 (defcustom emacs-lisp-mode-hook nil |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
289 "Hook run when entering Emacs Lisp mode." |
27809 | 290 :options '(turn-on-eldoc-mode imenu-add-menubar-index checkdoc-minor-mode) |
25630
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
291 :type 'hook |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
292 :group 'lisp) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
293 |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
294 (defcustom lisp-mode-hook nil |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
295 "Hook run when entering Lisp mode." |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
296 :options '(imenu-add-menubar-index) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
297 :type 'hook |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
298 :group 'lisp) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
299 |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
300 (defcustom lisp-interaction-mode-hook nil |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
301 "Hook run when entering Lisp Interaction mode." |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
302 :options '(turn-on-eldoc-mode) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
303 :type 'hook |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
304 :group 'lisp) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
305 |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
306 (defun emacs-lisp-mode () |
213 | 307 "Major mode for editing Lisp code to run in Emacs. |
308 Commands: | |
309 Delete converts tabs to spaces as it moves back. | |
310 Blank lines separate paragraphs. Semicolons start comments. | |
311 \\{emacs-lisp-mode-map} | |
312 Entry to this mode calls the value of `emacs-lisp-mode-hook' | |
313 if that value is non-nil." | |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
314 (interactive) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
315 (kill-all-local-variables) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
316 (use-local-map emacs-lisp-mode-map) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
317 (set-syntax-table emacs-lisp-mode-syntax-table) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
318 (setq major-mode 'emacs-lisp-mode) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
319 (setq mode-name "Emacs-Lisp") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
320 (lisp-mode-variables) |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
321 (setq imenu-case-fold-search nil) |
51981
e363b422bcd4
(emacs-lisp-mode): Use run-mode-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
51439
diff
changeset
|
322 (run-mode-hooks 'emacs-lisp-mode-hook)) |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
323 (put 'emacs-lisp-mode 'custom-mode-group 'lisp) |
213 | 324 |
27809 | 325 (defvar lisp-mode-map |
326 (let ((map (make-sparse-keymap))) | |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
327 (set-keymap-parent map lisp-mode-shared-map) |
27809 | 328 (define-key map "\e\C-x" 'lisp-eval-defun) |
329 (define-key map "\C-c\C-z" 'run-lisp) | |
330 map) | |
213 | 331 "Keymap for ordinary Lisp mode. |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
332 All commands in `lisp-mode-shared-map' are inherited by this map.") |
213 | 333 |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
334 (defun lisp-mode () |
213 | 335 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp. |
336 Commands: | |
337 Delete converts tabs to spaces as it moves back. | |
338 Blank lines separate paragraphs. Semicolons start comments. | |
339 \\{lisp-mode-map} | |
340 Note that `run-lisp' may be used either to start an inferior Lisp job | |
341 or to switch back to an existing one. | |
342 | |
343 Entry to this mode calls the value of `lisp-mode-hook' | |
344 if that value is non-nil." | |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
345 (interactive) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
346 (kill-all-local-variables) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
347 (use-local-map lisp-mode-map) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
348 (setq major-mode 'lisp-mode) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
349 (setq mode-name "Lisp") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
350 (lisp-mode-variables) |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
351 (make-local-variable 'comment-start-skip) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
352 (setq comment-start-skip |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
353 "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\)\\(;+\\|#|\\) *") |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
354 (make-local-variable 'font-lock-keywords-case-fold-search) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
355 (setq font-lock-keywords-case-fold-search t) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
356 (setq imenu-case-fold-search t) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
357 (set-syntax-table lisp-mode-syntax-table) |
51981
e363b422bcd4
(emacs-lisp-mode): Use run-mode-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
51439
diff
changeset
|
358 (run-mode-hooks 'lisp-mode-hook)) |
55773
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
359 (put 'lisp-mode 'find-tag-default-function 'lisp-find-tag-default) |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
360 |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
361 (defun lisp-find-tag-default () |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
362 (let ((default (find-tag-default))) |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
363 (when (stringp default) |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
364 (if (string-match ":+" default) |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
365 (substring default (match-end 0)) |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
366 default)))) |
213 | 367 |
52288 | 368 ;; Used in old LispM code. |
369 (defalias 'common-lisp-mode 'lisp-mode) | |
370 | |
28324
979a905864ab
(lisp-eval-defun): Make arglist compatible with inf-lisp version.
Dave Love <fx@gnu.org>
parents:
27934
diff
changeset
|
371 ;; This will do unless inf-lisp.el is loaded. |
979a905864ab
(lisp-eval-defun): Make arglist compatible with inf-lisp version.
Dave Love <fx@gnu.org>
parents:
27934
diff
changeset
|
372 (defun lisp-eval-defun (&optional and-go) |
213 | 373 "Send the current defun to the Lisp process made by \\[run-lisp]." |
374 (interactive) | |
375 (error "Process lisp does not exist")) | |
376 | |
27809 | 377 (defvar lisp-interaction-mode-map |
378 (let ((map (make-sparse-keymap))) | |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
379 (set-keymap-parent map lisp-mode-shared-map) |
27809 | 380 (define-key map "\e\C-x" 'eval-defun) |
55805
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
381 (define-key map "\e\C-q" 'indent-pp-sexp) |
27809 | 382 (define-key map "\e\t" 'lisp-complete-symbol) |
383 (define-key map "\n" 'eval-print-last-sexp) | |
384 map) | |
23738
2ef2813414b6
(lisp-interaction-mode-map): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
23723
diff
changeset
|
385 "Keymap for Lisp Interaction mode. |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
386 All commands in `lisp-mode-shared-map' are inherited by this map.") |
213 | 387 |
41512
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
388 (defvar lisp-interaction-mode-abbrev-table lisp-mode-abbrev-table) |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
389 (define-derived-mode lisp-interaction-mode emacs-lisp-mode "Lisp Interaction" |
213 | 390 "Major mode for typing and evaluating Lisp forms. |
391 Like Lisp mode except that \\[eval-print-last-sexp] evals the Lisp expression | |
392 before point, and prints its value into the buffer, advancing point. | |
41085 | 393 Note that printing is controlled by `eval-expression-print-length' |
37640
a4403e99257a
(lisp-interaction-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
35638
diff
changeset
|
394 and `eval-expression-print-level'. |
213 | 395 |
396 Commands: | |
397 Delete converts tabs to spaces as it moves back. | |
398 Paragraphs are separated only by blank lines. | |
399 Semicolons start comments. | |
400 \\{lisp-interaction-mode-map} | |
401 Entry to this mode calls the value of `lisp-interaction-mode-hook' | |
41512
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
402 if that value is non-nil.") |
213 | 403 |
248 | 404 (defun eval-print-last-sexp () |
38560
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
405 "Evaluate sexp before point; print value into current buffer. |
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
406 |
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
407 Note that printing the result is controlled by the variables |
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
408 `eval-expression-print-length' and `eval-expression-print-level', |
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
409 which see." |
248 | 410 (interactive) |
422 | 411 (let ((standard-output (current-buffer))) |
412 (terpri) | |
413 (eval-last-sexp t) | |
414 (terpri))) | |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
415 |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
416 |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
417 (defun last-sexp-setup-props (beg end value alt1 alt2) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
418 "Set up text properties for the output of `eval-last-sexp-1'. |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
419 BEG and END are the start and end of the output in current-buffer. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49522
diff
changeset
|
420 VALUE is the Lisp value printed, ALT1 and ALT2 are strings for the |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
421 alternative printed representations that can be displayed." |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
422 (let ((map (make-sparse-keymap))) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
423 (define-key map "\C-m" 'last-sexp-toggle-display) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
424 (define-key map [down-mouse-2] 'mouse-set-point) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
425 (define-key map [mouse-2] 'last-sexp-toggle-display) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
426 (add-text-properties |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49522
diff
changeset
|
427 beg end |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
428 `(printed-value (,value ,alt1 ,alt2) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49522
diff
changeset
|
429 mouse-face highlight |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
430 keymap ,map |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
431 help-echo "RET, mouse-2: toggle abbreviated display" |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
432 rear-nonsticky (mouse-face keymap help-echo |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
433 printed-value))))) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
434 |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
435 |
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
436 (defun last-sexp-toggle-display (&optional arg) |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
437 "Toggle between abbreviated and unabbreviated printed representations." |
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
438 (interactive "P") |
51290
0e0d3c3dca7f
(last-sexp-toggle-display):
Richard M. Stallman <rms@gnu.org>
parents:
51261
diff
changeset
|
439 (save-restriction |
0e0d3c3dca7f
(last-sexp-toggle-display):
Richard M. Stallman <rms@gnu.org>
parents:
51261
diff
changeset
|
440 (widen) |
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
441 (let ((value (get-text-property (point) 'printed-value))) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
442 (when value |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
443 (let ((beg (or (previous-single-property-change (min (point-max) (1+ (point))) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
444 'printed-value) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
445 (point))) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
446 (end (or (next-single-char-property-change (point) 'printed-value) (point))) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
447 (standard-output (current-buffer)) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
448 (point (point))) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
449 (delete-region beg end) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
450 (insert (nth 1 value)) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
451 (last-sexp-setup-props beg (point) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
452 (nth 0 value) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
453 (nth 2 value) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
454 (nth 1 value)) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
455 (goto-char (min (point-max) point))))))) |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
456 |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
457 (defun prin1-char (char) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
458 "Return a string representing CHAR as a character rather than as an integer. |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
459 If CHAR is not a character, return nil." |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
460 (and (integerp char) |
55521
ea0f46cadeb2
(prin1-char): Use eventp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54501
diff
changeset
|
461 (eventp char) |
54501
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
462 (let ((c (event-basic-type char))) |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
463 (concat |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
464 "?" |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
465 (mapconcat |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
466 (lambda (modif) |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
467 (cond ((eq modif 'super) "\\s-") |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
468 (t (string ?\\ (upcase (aref (symbol-name modif) 0)) ?-)))) |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
469 (event-modifiers char) "") |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
470 (cond |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
471 ((memq c '(?\; ?\( ?\) ?\{ ?\} ?\[ ?\] ?\" ?\' ?\\)) (string ?\\ c)) |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
472 ((eq c 127) "\\C-?") |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
473 (t (string c))))))) |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
474 |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
475 (defun eval-last-sexp-1 (eval-last-sexp-arg-internal) |
213 | 476 "Evaluate sexp before point; print value in minibuffer. |
477 With argument, print output into current buffer." | |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
478 (let ((standard-output (if eval-last-sexp-arg-internal (current-buffer) t))) |
25703
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
479 (let ((value |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
480 (eval (let ((stab (syntax-table)) |
17066
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
481 (opoint (point)) |
19057
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
482 ignore-quotes |
17066
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
483 expr) |
51425
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
484 (save-excursion |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
485 (with-syntax-table emacs-lisp-mode-syntax-table |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
486 ;; If this sexp appears to be enclosed in `...' |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
487 ;; then ignore the surrounding quotes. |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
488 (setq ignore-quotes |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
489 (or (eq (following-char) ?\') |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
490 (eq (preceding-char) ?\'))) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
491 (forward-sexp -1) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
492 ;; If we were after `?\e' (or similar case), |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
493 ;; use the whole thing, not just the `e'. |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
494 (when (eq (preceding-char) ?\\) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
495 (forward-char -1) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
496 (when (eq (preceding-char) ??) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
497 (forward-char -1))) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
498 |
51425
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
499 ;; Skip over `#N='s. |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
500 (when (eq (preceding-char) ?=) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
501 (let (labeled-p) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
502 (save-excursion |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
503 (skip-chars-backward "0-9#=") |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
504 (setq labeled-p (looking-at "\\(#[0-9]+=\\)+"))) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
505 (when labeled-p |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
506 (forward-sexp -1)))) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
507 |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
508 (save-restriction |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
509 ;; vladimir@cs.ualberta.ca 30-Jul-1997: skip ` in |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
510 ;; `variable' so that the value is returned, not the |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
511 ;; name |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
512 (if (and ignore-quotes |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
513 (eq (following-char) ?`)) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
514 (forward-char)) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
515 (narrow-to-region (point-min) opoint) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
516 (setq expr (read (current-buffer))) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
517 ;; If it's an (interactive ...) form, it's more |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
518 ;; useful to show how an interactive call would |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
519 ;; use it. |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
520 (and (consp expr) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
521 (eq (car expr) 'interactive) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
522 (setq expr |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
523 (list 'call-interactively |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
524 (list 'quote |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
525 (list 'lambda |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
526 '(&rest args) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
527 expr |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
528 'args))))) |
346b661f431e
(eval-last-sexp-1): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51290
diff
changeset
|
529 expr))))))) |
52208
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
530 (eval-last-sexp-print-value value)))) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
531 |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
532 (defun eval-last-sexp-print-value (value) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
533 (let ((unabbreviated (let ((print-length nil) (print-level nil)) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
534 (prin1-to-string value))) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
535 (print-length eval-expression-print-length) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
536 (print-level eval-expression-print-level) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
537 (beg (point)) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
538 end) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
539 (prog1 |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
540 (prin1 value) |
55805
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
541 (if (eq standard-output t) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
542 (let ((str (eval-expression-print-format value))) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
543 (if str (princ str)))) |
52208
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
544 (setq end (point)) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
545 (when (and (bufferp standard-output) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
546 (or (not (null print-length)) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
547 (not (null print-level))) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
548 (not (string= unabbreviated |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
549 (buffer-substring-no-properties beg end)))) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
550 (last-sexp-setup-props beg end value |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
551 unabbreviated |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
552 (buffer-substring-no-properties beg end)) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
553 )))) |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
554 |
213 | 555 |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
556 (defun eval-last-sexp (eval-last-sexp-arg-internal) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
557 "Evaluate sexp before point; print value in minibuffer. |
38169
8a3e61895b17
(eval-last-sexp): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
37991
diff
changeset
|
558 Interactively, with prefix argument, print output into current buffer." |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
559 (interactive "P") |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
560 (if (null eval-expression-debug-on-error) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
561 (eval-last-sexp-1 eval-last-sexp-arg-internal) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
562 (let ((old-value (make-symbol "t")) new-value value) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
563 (let ((debug-on-error old-value)) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
564 (setq value (eval-last-sexp-1 eval-last-sexp-arg-internal)) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
565 (setq new-value debug-on-error)) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
566 (unless (eq old-value new-value) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
567 (setq debug-on-error new-value)) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
568 value))) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
569 |
25434
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
570 (defun eval-defun-1 (form) |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
571 "Change defvar into defconst within FORM. |
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
572 Likewise for other constructs as necessary." |
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
573 ;; The code in edebug-defun should be consistent with this, but not |
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
574 ;; the same, since this gets a macroexpended form. |
42235
103ed59cfd30
(eval-defun-1): Cope with atoms as args.
Richard M. Stallman <rms@gnu.org>
parents:
41812
diff
changeset
|
575 (cond ((not (listp form)) |
103ed59cfd30
(eval-defun-1): Cope with atoms as args.
Richard M. Stallman <rms@gnu.org>
parents:
41812
diff
changeset
|
576 form) |
103ed59cfd30
(eval-defun-1): Cope with atoms as args.
Richard M. Stallman <rms@gnu.org>
parents:
41812
diff
changeset
|
577 ((and (eq (car form) 'defvar) |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
578 (cdr-safe (cdr-safe form)) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
579 (boundp (cadr form))) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
580 ;; Force variable to be re-set. |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
581 `(progn (defvar ,(nth 1 form) nil ,@(nthcdr 3 form)) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
582 (setq ,(nth 1 form) ,(nth 2 form)))) |
28324
979a905864ab
(lisp-eval-defun): Make arglist compatible with inf-lisp version.
Dave Love <fx@gnu.org>
parents:
27934
diff
changeset
|
583 ;; `defcustom' is now macroexpanded to |
979a905864ab
(lisp-eval-defun): Make arglist compatible with inf-lisp version.
Dave Love <fx@gnu.org>
parents:
27934
diff
changeset
|
584 ;; `custom-declare-variable' with a quoted value arg. |
27809 | 585 ((and (eq (car form) 'custom-declare-variable) |
586 (default-boundp (eval (nth 1 form)))) | |
25434
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
587 ;; Force variable to be bound. |
28324
979a905864ab
(lisp-eval-defun): Make arglist compatible with inf-lisp version.
Dave Love <fx@gnu.org>
parents:
27934
diff
changeset
|
588 (set-default (eval (nth 1 form)) (eval (nth 1 (nth 2 form)))) |
25434
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
589 form) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
590 ((eq (car form) 'progn) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
591 (cons 'progn (mapcar 'eval-defun-1 (cdr form)))) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
592 (t form))) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
593 |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
594 (defun eval-defun-2 () |
248 | 595 "Evaluate defun that point is in or before. |
24895 | 596 The value is displayed in the minibuffer. |
597 If the current defun is actually a call to `defvar', | |
598 then reset the variable using the initial value expression | |
599 even if the variable already has some other value. | |
600 \(Normally `defvar' does not change the variable's value | |
601 if it already has a value.\) | |
602 | |
23388
8aa1f99efb66
(eval-defun): Return the evaluation result.
Karl Heuer <kwzh@gnu.org>
parents:
23191
diff
changeset
|
603 With argument, insert value in current buffer after the defun. |
8aa1f99efb66
(eval-defun): Return the evaluation result.
Karl Heuer <kwzh@gnu.org>
parents:
23191
diff
changeset
|
604 Return the result of evaluation." |
213 | 605 (interactive "P") |
25703
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
606 (let ((debug-on-error eval-expression-debug-on-error) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
607 (print-length eval-expression-print-length) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
608 (print-level eval-expression-print-level)) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
609 (save-excursion |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
610 ;; Arrange for eval-region to "read" the (possibly) altered form. |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
611 ;; eval-region handles recording which file defines a function or |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
612 ;; variable. Re-written using `apply' to avoid capturing |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
613 ;; variables like `end'. |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
614 (apply |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
615 #'eval-region |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
616 (let ((standard-output t) |
25703
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
617 beg end form) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
618 ;; Read the form from the buffer, and record where it ends. |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
619 (save-excursion |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
620 (end-of-defun) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
621 (beginning-of-defun) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
622 (setq beg (point)) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
623 (setq form (read (current-buffer))) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
624 (setq end (point))) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
625 ;; Alter the form if necessary, changing defvar into defconst, etc. |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
626 (setq form (eval-defun-1 (macroexpand form))) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
627 (list beg end standard-output |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
628 `(lambda (ignore) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
629 ;; Skipping to the end of the specified region |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
630 ;; will make eval-region return. |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
631 (goto-char ,end) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
632 ',form)))))) |
25107 | 633 ;; The result of evaluation has been put onto VALUES. So return it. |
634 (car values)) | |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
635 |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
636 (defun eval-defun (edebug-it) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
637 "Evaluate the top-level form containing point, or after point. |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
638 |
40409 | 639 If the current defun is actually a call to `defvar' or `defcustom', |
640 evaluating it this way resets the variable using its initial value | |
641 expression even if the variable already has some other value. | |
642 \(Normally `defvar' and `defcustom' do not alter the value if there | |
643 already is one.) | |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
644 |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
645 With a prefix argument, instrument the code for Edebug. |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
646 |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
647 If acting on a `defun' for FUNCTION, and the function was |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
648 instrumented, `Edebug: FUNCTION' is printed in the minibuffer. If not |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
649 instrumented, just FUNCTION is printed. |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
650 |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
651 If not acting on a `defun', the result of evaluation is displayed in |
38560
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
652 the minibuffer. This display is controlled by the variables |
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
653 `eval-expression-print-length' and `eval-expression-print-level', |
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
654 which see." |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
655 (interactive "P") |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
656 (cond (edebug-it |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
657 (require 'edebug) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
658 (eval-defun (not edebug-all-defs))) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
659 (t |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
660 (if (null eval-expression-debug-on-error) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
661 (eval-defun-2) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
662 (let ((old-value (make-symbol "t")) new-value value) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
663 (let ((debug-on-error old-value)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
664 (setq value (eval-defun-2)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
665 (setq new-value debug-on-error)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
666 (unless (eq old-value new-value) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
667 (setq debug-on-error new-value)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
668 value))))) |
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
669 |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
670 |
213 | 671 (defun lisp-comment-indent () |
672 (if (looking-at "\\s<\\s<\\s<") | |
673 (current-column) | |
674 (if (looking-at "\\s<\\s<") | |
17308
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
675 (let ((tem (or (calculate-lisp-indent) (current-column)))) |
213 | 676 (if (listp tem) (car tem) tem)) |
677 (skip-chars-backward " \t") | |
678 (max (if (bolp) 0 (1+ (current-column))) | |
679 comment-column)))) | |
680 | |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
681 ;; This function just forces a more costly detection of comments (using |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
682 ;; parse-partial-sexp from beginning-of-defun). I.e. It avoids the problem of |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
683 ;; taking a `;' inside a string started on another line for a comment starter. |
54501
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
684 ;; Note: `newcomment' gets it right now since we set comment-use-global-state |
96f7b2598aa3
(lisp-mode-variables): Don't set
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54315
diff
changeset
|
685 ;; so we could get rid of it. -stef |
20333
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
686 (defun lisp-mode-auto-fill () |
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
687 (if (> (current-column) (current-fill-column)) |
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
688 (if (save-excursion |
41512
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
689 (nth 4 (syntax-ppss (point)))) |
20333
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
690 (do-auto-fill) |
41512
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
691 (unless (and (boundp 'comment-auto-fill-only-comments) |
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
692 comment-auto-fill-only-comments) |
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
693 (let ((comment-start nil) (comment-start-skip nil)) |
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
694 (do-auto-fill)))))) |
20333
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
695 |
37991
908deaf5c7f5
(lisp-indent-offset): Add a doc string.
Eli Zaretskii <eliz@gnu.org>
parents:
37739
diff
changeset
|
696 (defvar lisp-indent-offset nil |
908deaf5c7f5
(lisp-indent-offset): Add a doc string.
Eli Zaretskii <eliz@gnu.org>
parents:
37739
diff
changeset
|
697 "If non-nil, indent second line of expressions that many more columns.") |
27809 | 698 (defvar lisp-indent-function 'lisp-indent-function) |
213 | 699 |
700 (defun lisp-indent-line (&optional whole-exp) | |
701 "Indent current line as Lisp code. | |
702 With argument, indent any additional lines of the same expression | |
703 rigidly along with this one." | |
704 (interactive "P") | |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
705 (let ((indent (calculate-lisp-indent)) shift-amt end |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
706 (pos (- (point-max) (point))) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
707 (beg (progn (beginning-of-line) (point)))) |
213 | 708 (skip-chars-forward " \t") |
17308
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
709 (if (or (null indent) (looking-at "\\s<\\s<\\s<")) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
710 ;; Don't alter indentation of a ;;; comment line |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
711 ;; or a line that starts in a string. |
677
7a9b4ea68565
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
659
diff
changeset
|
712 (goto-char (- (point-max) pos)) |
213 | 713 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<"))) |
714 ;; Single-semicolon comment lines should be indented | |
715 ;; as comment lines, not as code. | |
716 (progn (indent-for-comment) (forward-char -1)) | |
717 (if (listp indent) (setq indent (car indent))) | |
718 (setq shift-amt (- indent (current-column))) | |
719 (if (zerop shift-amt) | |
720 nil | |
721 (delete-region beg (point)) | |
722 (indent-to indent))) | |
723 ;; If initial point was within line's indentation, | |
724 ;; position after the indentation. Else stay at same point in text. | |
725 (if (> (- (point-max) pos) (point)) | |
726 (goto-char (- (point-max) pos))) | |
727 ;; If desired, shift remaining lines of expression the same amount. | |
728 (and whole-exp (not (zerop shift-amt)) | |
729 (save-excursion | |
730 (goto-char beg) | |
731 (forward-sexp 1) | |
732 (setq end (point)) | |
733 (goto-char beg) | |
734 (forward-line 1) | |
735 (setq beg (point)) | |
736 (> end beg)) | |
737 (indent-code-rigidly beg end shift-amt))))) | |
738 | |
9424
738999b0296f
Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
9423
diff
changeset
|
739 (defvar calculate-lisp-indent-last-sexp) |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
740 |
213 | 741 (defun calculate-lisp-indent (&optional parse-start) |
742 "Return appropriate indentation for current line as Lisp code. | |
743 In usual case returns an integer: the column to indent to. | |
17308
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
744 If the value is nil, that means don't change the indentation |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
745 because the line starts inside a string. |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
746 |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
747 The value can also be a list of the form (COLUMN CONTAINING-SEXP-START). |
213 | 748 This means that following lines at the same level of indentation |
17308
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
749 should not necessarily be indented the same as this line. |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
750 Then COLUMN is the column to indent to, and CONTAINING-SEXP-START |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
751 is the buffer position of the start of the containing expression." |
213 | 752 (save-excursion |
753 (beginning-of-line) | |
754 (let ((indent-point (point)) | |
755 state paren-depth | |
756 ;; setting this to a number inhibits calling hook | |
757 (desired-indent nil) | |
758 (retry t) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
759 calculate-lisp-indent-last-sexp containing-sexp) |
213 | 760 (if parse-start |
761 (goto-char parse-start) | |
762 (beginning-of-defun)) | |
763 ;; Find outermost containing sexp | |
764 (while (< (point) indent-point) | |
765 (setq state (parse-partial-sexp (point) indent-point 0))) | |
766 ;; Find innermost containing sexp | |
767 (while (and retry | |
768 state | |
769 (> (setq paren-depth (elt state 0)) 0)) | |
770 (setq retry nil) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
771 (setq calculate-lisp-indent-last-sexp (elt state 2)) |
213 | 772 (setq containing-sexp (elt state 1)) |
773 ;; Position following last unclosed open. | |
774 (goto-char (1+ containing-sexp)) | |
775 ;; Is there a complete sexp since then? | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
776 (if (and calculate-lisp-indent-last-sexp |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
777 (> calculate-lisp-indent-last-sexp (point))) |
213 | 778 ;; Yes, but is there a containing sexp after that? |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
779 (let ((peek (parse-partial-sexp calculate-lisp-indent-last-sexp |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
780 indent-point 0))) |
213 | 781 (if (setq retry (car (cdr peek))) (setq state peek))))) |
782 (if retry | |
783 nil | |
784 ;; Innermost containing sexp found | |
785 (goto-char (1+ containing-sexp)) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
786 (if (not calculate-lisp-indent-last-sexp) |
213 | 787 ;; indent-point immediately follows open paren. |
788 ;; Don't call hook. | |
789 (setq desired-indent (current-column)) | |
790 ;; Find the start of first element of containing sexp. | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
791 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t) |
213 | 792 (cond ((looking-at "\\s(") |
793 ;; First element of containing sexp is a list. | |
794 ;; Indent under that list. | |
795 ) | |
796 ((> (save-excursion (forward-line 1) (point)) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
797 calculate-lisp-indent-last-sexp) |
213 | 798 ;; This is the first line to start within the containing sexp. |
799 ;; It's almost certainly a function call. | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
800 (if (= (point) calculate-lisp-indent-last-sexp) |
213 | 801 ;; Containing sexp has nothing before this line |
802 ;; except the first element. Indent under that element. | |
803 nil | |
804 ;; Skip the first element, find start of second (the first | |
805 ;; argument of the function call) and indent under. | |
806 (progn (forward-sexp 1) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
807 (parse-partial-sexp (point) |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
808 calculate-lisp-indent-last-sexp |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
809 0 t))) |
213 | 810 (backward-prefix-chars)) |
811 (t | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
812 ;; Indent beneath first sexp on same line as |
27809 | 813 ;; `calculate-lisp-indent-last-sexp'. Again, it's |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
814 ;; almost certainly a function call. |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
815 (goto-char calculate-lisp-indent-last-sexp) |
213 | 816 (beginning-of-line) |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
817 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
818 0 t) |
213 | 819 (backward-prefix-chars))))) |
820 ;; Point is at the point to indent under unless we are inside a string. | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3241
diff
changeset
|
821 ;; Call indentation hook except when overridden by lisp-indent-offset |
213 | 822 ;; or if the desired indentation has already been computed. |
823 (let ((normal-indent (current-column))) | |
824 (cond ((elt state 3) | |
825 ;; Inside a string, don't change indentation. | |
17308
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
826 nil) |
213 | 827 ((and (integerp lisp-indent-offset) containing-sexp) |
828 ;; Indent by constant offset | |
829 (goto-char containing-sexp) | |
830 (+ (current-column) lisp-indent-offset)) | |
831 (desired-indent) | |
832 ((and (boundp 'lisp-indent-function) | |
833 lisp-indent-function | |
834 (not retry)) | |
835 (or (funcall lisp-indent-function indent-point state) | |
836 normal-indent)) | |
837 (t | |
214 | 838 normal-indent)))))) |
213 | 839 |
840 (defun lisp-indent-function (indent-point state) | |
41509
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
841 "This function is the normal value of the variable `lisp-indent-function'. |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
842 It is used when indenting a line within a function call, to see if the |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
843 called function says anything special about how to indent the line. |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
844 |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
845 INDENT-POINT is the position where the user typed TAB, or equivalent. |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
846 Point is located at the point to indent under (for default indentation); |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
847 STATE is the `parse-partial-sexp' state for that position. |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
848 |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
849 If the current line is in a call to a Lisp function |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
850 which has a non-nil property `lisp-indent-function', |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
851 that specifies how to do the indentation. The property value can be |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
852 * `defun', meaning indent `defun'-style; |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
853 * an integer N, meaning indent the first N arguments specially |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
854 like ordinary function arguments and then indent any further |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
855 aruments like a body; |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
856 * a function to call just as this function was called. |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
857 If that function returns nil, that means it doesn't specify |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
858 the indentation. |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
859 |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
860 This function also returns nil meaning don't specify the indentation." |
213 | 861 (let ((normal-indent (current-column))) |
862 (goto-char (1+ (elt state 1))) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
863 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t) |
213 | 864 (if (and (elt state 2) |
865 (not (looking-at "\\sw\\|\\s_"))) | |
46159 | 866 ;; car of form doesn't seem to be a symbol |
213 | 867 (progn |
868 (if (not (> (save-excursion (forward-line 1) (point)) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
869 calculate-lisp-indent-last-sexp)) |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
870 (progn (goto-char calculate-lisp-indent-last-sexp) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
871 (beginning-of-line) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
872 (parse-partial-sexp (point) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
873 calculate-lisp-indent-last-sexp 0 t))) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
874 ;; Indent under the list or under the first sexp on the same |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
875 ;; line as calculate-lisp-indent-last-sexp. Note that first |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
876 ;; thing on that line has to be complete sexp since we are |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
877 ;; inside the innermost containing sexp. |
213 | 878 (backward-prefix-chars) |
879 (current-column)) | |
880 (let ((function (buffer-substring (point) | |
881 (progn (forward-sexp 1) (point)))) | |
882 method) | |
3638
45169f86d3a4
(lisp-indent-function): Look for either
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
883 (setq method (or (get (intern-soft function) 'lisp-indent-function) |
45169f86d3a4
(lisp-indent-function): Look for either
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
884 (get (intern-soft function) 'lisp-indent-hook))) |
213 | 885 (cond ((or (eq method 'defun) |
886 (and (null method) | |
887 (> (length function) 3) | |
888 (string-match "\\`def" function))) | |
889 (lisp-indent-defform state indent-point)) | |
890 ((integerp method) | |
891 (lisp-indent-specform method state | |
892 indent-point normal-indent)) | |
893 (method | |
894 (funcall method state indent-point))))))) | |
895 | |
16687
049c87a96dca
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16563
diff
changeset
|
896 (defvar lisp-body-indent 2 |
2933
420dfaaacfc5
(lisp-body-indent): Add doc.
Richard M. Stallman <rms@gnu.org>
parents:
2450
diff
changeset
|
897 "Number of columns to indent the second line of a `(def...)' form.") |
213 | 898 |
899 (defun lisp-indent-specform (count state indent-point normal-indent) | |
900 (let ((containing-form-start (elt state 1)) | |
901 (i count) | |
902 body-indent containing-form-column) | |
903 ;; Move to the start of containing form, calculate indentation | |
904 ;; to use for non-distinguished forms (> count), and move past the | |
905 ;; function symbol. lisp-indent-function guarantees that there is at | |
906 ;; least one word or symbol character following open paren of containing | |
907 ;; form. | |
908 (goto-char containing-form-start) | |
909 (setq containing-form-column (current-column)) | |
910 (setq body-indent (+ lisp-body-indent containing-form-column)) | |
911 (forward-char 1) | |
912 (forward-sexp 1) | |
913 ;; Now find the start of the last form. | |
914 (parse-partial-sexp (point) indent-point 1 t) | |
915 (while (and (< (point) indent-point) | |
916 (condition-case () | |
917 (progn | |
918 (setq count (1- count)) | |
919 (forward-sexp 1) | |
920 (parse-partial-sexp (point) indent-point 1 t)) | |
921 (error nil)))) | |
922 ;; Point is sitting on first character of last (or count) sexp. | |
923 (if (> count 0) | |
924 ;; A distinguished form. If it is the first or second form use double | |
925 ;; lisp-body-indent, else normal indent. With lisp-body-indent bound | |
926 ;; to 2 (the default), this just happens to work the same with if as | |
927 ;; the older code, but it makes unwind-protect, condition-case, | |
928 ;; with-output-to-temp-buffer, et. al. much more tasteful. The older, | |
929 ;; less hacked, behavior can be obtained by replacing below with | |
930 ;; (list normal-indent containing-form-start). | |
931 (if (<= (- i count) 1) | |
932 (list (+ containing-form-column (* 2 lisp-body-indent)) | |
933 containing-form-start) | |
934 (list normal-indent containing-form-start)) | |
935 ;; A non-distinguished form. Use body-indent if there are no | |
936 ;; distinguished forms and this is the first undistinguished form, | |
937 ;; or if this is the first undistinguished form and the preceding | |
938 ;; distinguished form has indentation at least as great as body-indent. | |
939 (if (or (and (= i 0) (= count 0)) | |
940 (and (= count 0) (<= body-indent normal-indent))) | |
941 body-indent | |
942 normal-indent)))) | |
943 | |
944 (defun lisp-indent-defform (state indent-point) | |
945 (goto-char (car (cdr state))) | |
946 (forward-line 1) | |
947 (if (> (point) (car (cdr (cdr state)))) | |
948 (progn | |
949 (goto-char (car (cdr state))) | |
950 (+ lisp-body-indent (current-column))))) | |
951 | |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
952 |
213 | 953 ;; (put 'progn 'lisp-indent-function 0), say, causes progn to be indented |
954 ;; like defun if the first form is placed on the next line, otherwise | |
955 ;; it is indented like any other form (i.e. forms line up under first). | |
956 | |
957 (put 'lambda 'lisp-indent-function 'defun) | |
958 (put 'autoload 'lisp-indent-function 'defun) | |
959 (put 'progn 'lisp-indent-function 0) | |
960 (put 'prog1 'lisp-indent-function 1) | |
961 (put 'prog2 'lisp-indent-function 2) | |
962 (put 'save-excursion 'lisp-indent-function 0) | |
963 (put 'save-window-excursion 'lisp-indent-function 0) | |
12218
a4f383dd5adb
Put mark-active for menu-enable property on eval-region, comment-region, and indent-region symbols.
Simon Marshall <simon@gnu.org>
parents:
12035
diff
changeset
|
964 (put 'save-selected-window 'lisp-indent-function 0) |
213 | 965 (put 'save-restriction 'lisp-indent-function 0) |
1163 | 966 (put 'save-match-data 'lisp-indent-function 0) |
16354
b8f9fd9e47fa
(save-current-buffer, with-current-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
15597
diff
changeset
|
967 (put 'save-current-buffer 'lisp-indent-function 0) |
16406
da03658014e3
(with-current-buffer): Correct indentation property.
Erik Naggum <erik@naggum.no>
parents:
16381
diff
changeset
|
968 (put 'with-current-buffer 'lisp-indent-function 1) |
16563
41bbec0cc4c6
(combine-after-change-calls): The first form is not special.
Erik Naggum <erik@naggum.no>
parents:
16551
diff
changeset
|
969 (put 'combine-after-change-calls 'lisp-indent-function 0) |
16354
b8f9fd9e47fa
(save-current-buffer, with-current-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
15597
diff
changeset
|
970 (put 'with-output-to-string 'lisp-indent-function 0) |
16360
25f58ad01b11
(with-temp-file): Add lisp-indent-function property.
Richard M. Stallman <rms@gnu.org>
parents:
16354
diff
changeset
|
971 (put 'with-temp-file 'lisp-indent-function 1) |
16380
aee74c21dfee
(with-temp-buffer): Add indentation property.
Erik Naggum <erik@naggum.no>
parents:
16360
diff
changeset
|
972 (put 'with-temp-buffer 'lisp-indent-function 0) |
23738
2ef2813414b6
(lisp-interaction-mode-map): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
23723
diff
changeset
|
973 (put 'with-temp-message 'lisp-indent-function 1) |
27300
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26682
diff
changeset
|
974 (put 'with-syntax-table 'lisp-indent-function 1) |
213 | 975 (put 'let 'lisp-indent-function 1) |
976 (put 'let* 'lisp-indent-function 1) | |
977 (put 'while 'lisp-indent-function 1) | |
978 (put 'if 'lisp-indent-function 2) | |
41702
1e0988cac637
(read-if): Add lisp-indent-function prop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41512
diff
changeset
|
979 (put 'read-if 'lisp-indent-function 2) |
213 | 980 (put 'catch 'lisp-indent-function 1) |
981 (put 'condition-case 'lisp-indent-function 2) | |
982 (put 'unwind-protect 'lisp-indent-function 1) | |
983 (put 'with-output-to-temp-buffer 'lisp-indent-function 1) | |
16381
badca394f979
(eval-after-load): Add lisp-indent-function for it.
Richard M. Stallman <rms@gnu.org>
parents:
16380
diff
changeset
|
984 (put 'eval-after-load 'lisp-indent-function 1) |
27484
a681b4de47a1
Add indent specs for dolist, dotimes, when, unless.
Dave Love <fx@gnu.org>
parents:
27303
diff
changeset
|
985 (put 'dolist 'lisp-indent-function 1) |
a681b4de47a1
Add indent specs for dolist, dotimes, when, unless.
Dave Love <fx@gnu.org>
parents:
27303
diff
changeset
|
986 (put 'dotimes 'lisp-indent-function 1) |
a681b4de47a1
Add indent specs for dolist, dotimes, when, unless.
Dave Love <fx@gnu.org>
parents:
27303
diff
changeset
|
987 (put 'when 'lisp-indent-function 1) |
a681b4de47a1
Add indent specs for dolist, dotimes, when, unless.
Dave Love <fx@gnu.org>
parents:
27303
diff
changeset
|
988 (put 'unless 'lisp-indent-function 1) |
213 | 989 |
990 (defun indent-sexp (&optional endpos) | |
991 "Indent each line of the list starting just after point. | |
992 If optional arg ENDPOS is given, indent each line, stopping when | |
993 ENDPOS is encountered." | |
994 (interactive) | |
727 | 995 (let ((indent-stack (list nil)) |
996 (next-depth 0) | |
10594
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
997 ;; If ENDPOS is non-nil, use nil as STARTING-POINT |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
998 ;; so that calculate-lisp-indent will find the beginning of |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
999 ;; the defun we are in. |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1000 ;; If ENDPOS is nil, it is safe not to scan before point |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1001 ;; since every line we indent is more deeply nested than point is. |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1002 (starting-point (if endpos nil (point))) |
727 | 1003 (last-point (point)) |
1004 last-depth bol outer-loop-done inner-loop-done state this-indent) | |
10594
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1005 (or endpos |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1006 ;; Get error now if we don't have a complete sexp after point. |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1007 (save-excursion (forward-sexp 1))) |
213 | 1008 (save-excursion |
1009 (setq outer-loop-done nil) | |
1010 (while (if endpos (< (point) endpos) | |
1011 (not outer-loop-done)) | |
1012 (setq last-depth next-depth | |
1013 inner-loop-done nil) | |
1014 ;; Parse this line so we can learn the state | |
1015 ;; to indent the next line. | |
1016 ;; This inner loop goes through only once | |
1017 ;; unless a line ends inside a string. | |
1018 (while (and (not inner-loop-done) | |
1019 (not (setq outer-loop-done (eobp)))) | |
1020 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point)) | |
1021 nil nil state)) | |
1022 (setq next-depth (car state)) | |
1023 ;; If the line contains a comment other than the sort | |
1024 ;; that is indented like code, | |
1025 ;; indent it now with indent-for-comment. | |
1026 ;; Comments indented like code are right already. | |
1027 ;; In any case clear the in-comment flag in the state | |
1028 ;; because parse-partial-sexp never sees the newlines. | |
1029 (if (car (nthcdr 4 state)) | |
1030 (progn (indent-for-comment) | |
1031 (end-of-line) | |
1032 (setcar (nthcdr 4 state) nil))) | |
1033 ;; If this line ends inside a string, | |
1034 ;; go straight to next line, remaining within the inner loop, | |
1035 ;; and turn off the \-flag. | |
1036 (if (car (nthcdr 3 state)) | |
1037 (progn | |
1038 (forward-line 1) | |
1039 (setcar (nthcdr 5 state) nil)) | |
1040 (setq inner-loop-done t))) | |
1041 (and endpos | |
727 | 1042 (<= next-depth 0) |
1043 (progn | |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
1044 (setq indent-stack (nconc indent-stack |
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
1045 (make-list (- next-depth) nil)) |
727 | 1046 last-depth (- last-depth next-depth) |
1047 next-depth 0))) | |
10594
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1048 (or outer-loop-done endpos |
213 | 1049 (setq outer-loop-done (<= next-depth 0))) |
1050 (if outer-loop-done | |
3241
6c9b5f6dca70
(indent-sexp): Even if outer-loop-done is t, still move down one line.
Richard M. Stallman <rms@gnu.org>
parents:
2933
diff
changeset
|
1051 (forward-line 1) |
213 | 1052 (while (> last-depth next-depth) |
1053 (setq indent-stack (cdr indent-stack) | |
1054 last-depth (1- last-depth))) | |
1055 (while (< last-depth next-depth) | |
1056 (setq indent-stack (cons nil indent-stack) | |
1057 last-depth (1+ last-depth))) | |
1058 ;; Now go to the next line and indent it according | |
1059 ;; to what we learned from parsing the previous one. | |
1060 (forward-line 1) | |
1061 (setq bol (point)) | |
1062 (skip-chars-forward " \t") | |
1063 ;; But not if the line is blank, or just a comment | |
1064 ;; (except for double-semi comments; indent them as usual). | |
1065 (if (or (eobp) (looking-at "\\s<\\|\n")) | |
1066 nil | |
1067 (if (and (car indent-stack) | |
1068 (>= (car indent-stack) 0)) | |
1069 (setq this-indent (car indent-stack)) | |
1070 (let ((val (calculate-lisp-indent | |
1071 (if (car indent-stack) (- (car indent-stack)) | |
727 | 1072 starting-point)))) |
17308
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1073 (if (null val) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1074 (setq this-indent val) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1075 (if (integerp val) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1076 (setcar indent-stack |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1077 (setq this-indent val)) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1078 (setcar indent-stack (- (car (cdr val)))) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1079 (setq this-indent (car val)))))) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1080 (if (and this-indent (/= (current-column) this-indent)) |
213 | 1081 (progn (delete-region bol (point)) |
1082 (indent-to this-indent))))) | |
1083 (or outer-loop-done | |
1084 (setq outer-loop-done (= (point) last-point)) | |
1085 (setq last-point (point))))))) | |
1086 | |
1087 (defun lisp-indent-region (start end) | |
27809 | 1088 "Indent every line whose first char is between START and END inclusive." |
213 | 1089 (save-excursion |
1090 (let ((endmark (copy-marker end))) | |
10594
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1091 (goto-char start) |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1092 (and (bolp) (not (eolp)) |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1093 (lisp-indent-line)) |
213 | 1094 (indent-sexp endmark) |
1095 (set-marker endmark nil)))) | |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
1096 |
55805
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1097 (defun indent-pp-sexp (&optional arg) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1098 "Indent each line of the list or, with prefix ARG, pretty-printify the list." |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1099 (interactive "P") |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1100 (if arg |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1101 (save-excursion |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1102 (save-restriction |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1103 (narrow-to-region (point) (progn (forward-sexp 1) (point))) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1104 (pp-buffer) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1105 (goto-char (point-max)) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1106 (if (eq (char-before) ?\n) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1107 (delete-char -1))))) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1108 (indent-sexp)) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1109 |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1110 ;;;; Lisp paragraph filling commands. |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1111 |
50001
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1112 (defcustom emacs-lisp-docstring-fill-column 65 |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1113 "Value of `fill-column' to use when filling a docstring. |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1114 Any non-integer value means do not use a different value of |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1115 `fill-column' when filling docstrings." |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1116 :type '(choice (integer) |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1117 (const :tag "Use the current `fill-column'" t)) |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1118 :group 'lisp) |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1119 |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1120 (defun lisp-fill-paragraph (&optional justify) |
50001
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1121 "Like \\[fill-paragraph], but handle Emacs Lisp comments and docstrings. |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1122 If any of the current line is a comment, fill the comment or the |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1123 paragraph of it that point is in, preserving the comment's indentation |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1124 and initial semicolons." |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1125 (interactive "P") |
48127
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1126 (or (fill-comment-paragraph justify) |
50001
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1127 ;; Point is on a program line (a line no comment); we are interested |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1128 ;; particularly in docstring lines. |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1129 ;; |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1130 ;; We bind `paragraph-start' and `paragraph-separate' temporarily. They |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1131 ;; are buffer-local, but we avoid changing them so that they can be set |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1132 ;; to make `forward-paragraph' and friends do something the user wants. |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1133 ;; |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1134 ;; `paragraph-start': The `(' in the character alternative and the |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1135 ;; left-singlequote plus `(' sequence after the \\| alternative prevent |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1136 ;; sexps and backquoted sexps that follow a docstring from being filled |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1137 ;; with the docstring. This setting has the consequence of inhibiting |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1138 ;; filling many program lines that are not docstrings, which is sensible, |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1139 ;; because the user probably asked to fill program lines by accident, or |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1140 ;; expecting indentation (perhaps we should try to do indenting in that |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1141 ;; case). The `;' and `:' stop the paragraph being filled at following |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1142 ;; comment lines and at keywords (e.g., in `defcustom'). Left parens are |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1143 ;; escaped to keep font-locking, filling, & paren matching in the source |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1144 ;; file happy. |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1145 ;; |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1146 ;; `paragraph-separate': A clever regexp distinguishes the first line of |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1147 ;; a docstring and identifies it as a paragraph separator, so that it |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1148 ;; won't be filled. (Since the first line of documentation stands alone |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1149 ;; in some contexts, filling should not alter the contents the author has |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1150 ;; chosen.) Only the first line of a docstring begins with whitespace |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1151 ;; and a quotation mark and ends with a period or (rarely) a comma. |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1152 ;; |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1153 ;; The `fill-column' is temporarily bound to |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1154 ;; `emacs-lisp-docstring-fill-column' if that value is an integer. |
48127
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1155 (let ((paragraph-start (concat paragraph-start |
50001
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1156 "\\|\\s-*\\([\(;:\"]\\|`\(\\)")) |
48127
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1157 (paragraph-separate |
50001
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1158 (concat paragraph-separate "\\|\\s-*\".*[,\\.]$")) |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1159 (fill-column (if (integerp emacs-lisp-docstring-fill-column) |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1160 emacs-lisp-docstring-fill-column |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1161 fill-column))) |
48127
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1162 (fill-paragraph justify)) |
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1163 ;; Never return nil. |
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1164 t)) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
1165 |
213 | 1166 (defun indent-code-rigidly (start end arg &optional nochange-regexp) |
1167 "Indent all lines of code, starting in the region, sideways by ARG columns. | |
1168 Does not affect lines starting inside comments or strings, assuming that | |
1169 the start of the region is not inside them. | |
1170 | |
1171 Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP. | |
1172 The last is a regexp which, if matched at the beginning of a line, | |
1173 means don't indent that line." | |
1174 (interactive "r\np") | |
1175 (let (state) | |
1176 (save-excursion | |
1177 (goto-char end) | |
1178 (setq end (point-marker)) | |
1179 (goto-char start) | |
1180 (or (bolp) | |
1181 (setq state (parse-partial-sexp (point) | |
1182 (progn | |
1183 (forward-line 1) (point)) | |
1184 nil nil state))) | |
1185 (while (< (point) end) | |
1186 (or (car (nthcdr 3 state)) | |
1187 (and nochange-regexp | |
1188 (looking-at nochange-regexp)) | |
1189 ;; If line does not start in string, indent it | |
1190 (let ((indent (current-indentation))) | |
1191 (delete-region (point) (progn (skip-chars-forward " \t") (point))) | |
1192 (or (eolp) | |
1193 (indent-to (max 0 (+ indent arg)) 0)))) | |
1194 (setq state (parse-partial-sexp (point) | |
1195 (progn | |
1196 (forward-line 1) (point)) | |
1197 nil nil state)))))) | |
584 | 1198 |
1199 (provide 'lisp-mode) | |
1200 | |
52401 | 1201 ;;; arch-tag: 414c7f93-c245-4b77-8ed5-ed05ef7ff1bf |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1202 ;;; lisp-mode.el ends here |