Mercurial > emacs
annotate lisp/emacs-lisp/lisp-mode.el @ 45246:aec4852e765a
(functionp): Catch errors in indirect-function.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 12 May 2002 16:41:11 +0000 |
parents | 1da0dfa86ab5 |
children | bd315b9fa3f0 |
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 |
37640
a4403e99257a
(lisp-interaction-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
35638
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1999, 2000, 2001 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) | |
213 | 62 ;; Used to be singlequote; changed for flonums. |
27809 | 63 (modify-syntax-entry ?. "_ " table) |
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) | |
27814
f2abbe1d6b47
Don't change syntax of multibyte
Kenichi Handa <handa@m17n.org>
parents:
27809
diff
changeset
|
70 (modify-syntax-entry ?\] ")[ " table)) |
27809 | 71 table)) |
213 | 72 |
27809 | 73 (defvar lisp-mode-syntax-table |
74 (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table))) | |
75 (modify-syntax-entry ?\[ "_ " table) | |
76 (modify-syntax-entry ?\] "_ " table) | |
77 (modify-syntax-entry ?# "' 14bn" table) | |
27934
8c28c1c31e9b
(lisp-mode-syntax-table): Fix syntax of |.
Dave Love <fx@gnu.org>
parents:
27814
diff
changeset
|
78 (modify-syntax-entry ?| "\" 23b" table) |
27809 | 79 table)) |
285 | 80 |
213 | 81 (define-abbrev-table 'lisp-mode-abbrev-table ()) |
82 | |
12701
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
83 (defvar lisp-imenu-generic-expression |
27809 | 84 (list |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
85 (list nil |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
86 (purecopy (concat "^\\s-*(" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
87 (eval-when-compile |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
88 (regexp-opt |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
89 '("defun" "defun*" "defsubst" "defmacro" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
90 "defadvice" "define-skeleton" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
91 "define-minor-mode" "define-derived-mode" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
92 "define-compiler-macro" "define-modify-macro" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
93 "defsetf" "define-setf-expander" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
94 "define-method-combination" |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
95 "defgeneric" "defmethod") t)) |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
96 "\\s-+\\(\\sw\\(\\sw\\|\\s_\\)+\\)")) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
97 2) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
98 (list (purecopy "Variables") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
99 (purecopy (concat "^\\s-*(" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
100 (eval-when-compile |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
101 (regexp-opt |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
102 '("defvar" "defconst" "defconstant" "defcustom" |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
103 "defparameter" "define-symbol-macro") t)) |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
104 "\\s-+\\(\\sw\\(\\sw\\|\\s_\\)+\\)")) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
105 2) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
106 (list (purecopy "Types") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
107 (purecopy (concat "^\\s-*(" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
108 (eval-when-compile |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
109 (regexp-opt |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
110 '("defgroup" "deftype" "defstruct" "defclass" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
111 "define-condition" "define-widget" "defface" |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
112 "defpackage") t)) |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
113 "\\s-+'?\\(\\sw\\(\\sw\\|\\s_\\)+\\)")) |
12701
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
114 2)) |
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
115 |
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
116 "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
|
117 |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
118 ;; 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
|
119 (put 'autoload 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
120 (put 'defun '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 'defvar 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
123 (put 'defcustom 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
124 (put 'defconst 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
125 (put 'defmacro 'doc-string-elt 3) |
41812
fb0d648feaa6
(toplevel): Define docstring offset for `defmacro*'.
Colin Walters <walters@gnu.org>
parents:
41702
diff
changeset
|
126 (put 'defmacro* 'doc-string-elt 3) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
127 (put 'defsubst 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
128 (put 'define-skeleton 'doc-string-elt 2) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
129 (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
|
130 (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
|
131 (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
|
132 (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
|
133 ;; define-global-mode has no explicit docstring. |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
134 (put 'easy-mmode-define-global-mode 'doc-string-elt 0) |
42699
1da0dfa86ab5
Handle define-ibuffer-column, define-ibuffer-filter,
Colin Walters <walters@gnu.org>
parents:
42235
diff
changeset
|
135 (put 'define-ibuffer-filter 'doc-string-elt 3) |
1da0dfa86ab5
Handle define-ibuffer-column, define-ibuffer-filter,
Colin Walters <walters@gnu.org>
parents:
42235
diff
changeset
|
136 (put 'define-ibuffer-op 'doc-string-elt 3) |
1da0dfa86ab5
Handle define-ibuffer-column, define-ibuffer-filter,
Colin Walters <walters@gnu.org>
parents:
42235
diff
changeset
|
137 (put 'define-ibuffer-sorter 'doc-string-elt 3) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
138 |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
139 (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
|
140 (if (nth 3 state) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
141 (if (and (eq (nth 0 state) 1) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
142 ;; This might be a docstring. |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
143 (save-excursion |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
144 (let ((n 0)) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
145 (goto-char (nth 8 state)) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
146 (condition-case nil |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
147 (while (progn (backward-sexp 1) (setq n (1+ n)))) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
148 (scan-error nil)) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
149 (when (> n 0) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
150 (let ((sym (intern-soft |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
151 (buffer-substring |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
152 (point) (progn (forward-sexp 1) (point)))))) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
153 (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
|
154 font-lock-doc-face |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
155 font-lock-string-face) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
156 font-lock-comment-face)) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
157 |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
158 ;; 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
|
159 ;; (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
|
160 (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
|
161 (when lisp-syntax |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
162 (set-syntax-table lisp-mode-syntax-table)) |
213 | 163 (setq local-abbrev-table lisp-mode-abbrev-table) |
164 (make-local-variable 'paragraph-ignore-fill-prefix) | |
165 (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
|
166 (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
|
167 (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
|
168 ;; 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
|
169 ;; 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
|
170 ;; 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
|
171 ;; 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
|
172 ;;(set (make-local-variable 'adaptive-fill-mode) nil) |
20333
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
173 (make-local-variable 'normal-auto-fill-function) |
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
174 (setq normal-auto-fill-function 'lisp-mode-auto-fill) |
213 | 175 (make-local-variable 'indent-line-function) |
176 (setq indent-line-function 'lisp-indent-line) | |
177 (make-local-variable 'indent-region-function) | |
178 (setq indent-region-function 'lisp-indent-region) | |
179 (make-local-variable 'parse-sexp-ignore-comments) | |
180 (setq parse-sexp-ignore-comments t) | |
6076
4f76564fc2cd
(lisp-mode-variables): Set outline-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
5103
diff
changeset
|
181 (make-local-variable 'outline-regexp) |
26682
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
182 (setq outline-regexp ";;;;* \\|(") |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
183 (make-local-variable 'outline-level) |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
184 (setq outline-level 'lisp-outline-level) |
213 | 185 (make-local-variable 'comment-start) |
186 (setq comment-start ";") | |
187 (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
|
188 ;; 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
|
189 ;; 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
|
190 (setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *") |
28994
0388cb689633
(lisp-mode-variables): Set comment-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28324
diff
changeset
|
191 (make-local-variable 'comment-add) |
0388cb689633
(lisp-mode-variables): Set comment-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28324
diff
changeset
|
192 (setq comment-add 1) ;default to `;;' in comment-region |
213 | 193 (make-local-variable 'comment-column) |
194 (setq comment-column 40) | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
195 (make-local-variable 'comment-indent-function) |
12701
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
196 (setq comment-indent-function 'lisp-comment-indent) |
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
197 (make-local-variable 'imenu-generic-expression) |
27814
f2abbe1d6b47
Don't change syntax of multibyte
Kenichi Handa <handa@m17n.org>
parents:
27809
diff
changeset
|
198 (setq imenu-generic-expression lisp-imenu-generic-expression) |
f2abbe1d6b47
Don't change syntax of multibyte
Kenichi Handa <handa@m17n.org>
parents:
27809
diff
changeset
|
199 (make-local-variable 'multibyte-syntax-as-symbol) |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
200 (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
|
201 (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
|
202 (setq font-lock-defaults |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
203 '((lisp-font-lock-keywords |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
204 lisp-font-lock-keywords-1 lisp-font-lock-keywords-2) |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
205 nil nil (("+-*/.<>=!?$%_&~^:" . "w")) beginning-of-defun |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
206 (font-lock-mark-block-function . mark-defun) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
207 (font-lock-syntactic-face-function |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
208 . lisp-font-lock-syntactic-face-function)))) |
26682
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
209 |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
210 (defun lisp-outline-level () |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
211 "Lisp mode `outline-level' function." |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
212 (if (looking-at "(") |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
213 1000 |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
214 (looking-at outline-regexp) |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
215 (- (match-end 0) (match-beginning 0)))) |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
216 |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
217 |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
218 (defvar lisp-mode-shared-map |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
219 (let ((map (make-sparse-keymap))) |
38315
d34fd7c9092b
(lisp-mode-shared-map): Bind TAB
Gerd Moellmann <gerd@gnu.org>
parents:
38169
diff
changeset
|
220 (define-key map "\t" 'lisp-indent-line) |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
221 (define-key map "\e\C-q" 'indent-sexp) |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
222 (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
|
223 ;; 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
|
224 ;; 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
|
225 ;; 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
|
226 ;;;(define-key map [backspace] 'backward-delete-char-untabify) |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
227 map) |
213 | 228 "Keymap for commands shared by all sorts of Lisp modes.") |
229 | |
230 (defvar emacs-lisp-mode-map () | |
231 "Keymap for Emacs Lisp mode. | |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
232 All commands in `lisp-mode-shared-map' are inherited by this map.") |
213 | 233 |
234 (if emacs-lisp-mode-map | |
235 () | |
12035
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
236 (let ((map (make-sparse-keymap "Emacs-Lisp"))) |
21116
ccf251830c66
(lisp-interaction-mode-map)
Richard M. Stallman <rms@gnu.org>
parents:
20459
diff
changeset
|
237 (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
|
238 (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
|
239 (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
|
240 (define-key emacs-lisp-mode-map "\e\C-x" 'eval-defun) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
241 (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
|
242 (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
|
243 (cons "Emacs-Lisp" map)) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
244 (define-key map [edebug-defun] |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
245 '("Instrument Function for Debugging" . edebug-defun)) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
246 (define-key map [byte-recompile] |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
247 '("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
|
248 (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
|
249 '("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
|
250 (define-key map [byte-compile] |
12035
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
251 '("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
|
252 (define-key map [separator-eval] '("--")) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
253 (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
|
254 (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
|
255 (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
|
256 (define-key map [separator-format] '("--")) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
257 (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
|
258 (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
|
259 (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
|
260 (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
|
261 (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
|
262 (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
|
263 |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
264 (defun emacs-lisp-byte-compile () |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
265 "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
|
266 (interactive) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
267 (if buffer-file-name |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
268 (byte-compile-file buffer-file-name) |
14116
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
269 (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
|
270 |
14719
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
271 (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
|
272 "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
|
273 (interactive) |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
274 (or buffer-file-name |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
275 (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
|
276 (require 'bytecomp) |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
277 ;; 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
|
278 (if (and (buffer-modified-p) |
27809 | 279 (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
|
280 (save-buffer)) |
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
281 (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
|
282 (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
|
283 (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
|
284 (byte-compile-file buffer-file-name t)))) |
213 | 285 |
25630
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
286 (defcustom emacs-lisp-mode-hook nil |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
287 "Hook run when entering Emacs Lisp mode." |
27809 | 288 :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
|
289 :type 'hook |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
290 :group 'lisp) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
291 |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
292 (defcustom lisp-mode-hook nil |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
293 "Hook run when entering Lisp mode." |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
294 :options '(imenu-add-menubar-index) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
295 :type 'hook |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
296 :group 'lisp) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
297 |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
298 (defcustom lisp-interaction-mode-hook nil |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
299 "Hook run when entering Lisp Interaction mode." |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
300 :options '(turn-on-eldoc-mode) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
301 :type 'hook |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
302 :group 'lisp) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
303 |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
304 (defun emacs-lisp-mode () |
213 | 305 "Major mode for editing Lisp code to run in Emacs. |
306 Commands: | |
307 Delete converts tabs to spaces as it moves back. | |
308 Blank lines separate paragraphs. Semicolons start comments. | |
309 \\{emacs-lisp-mode-map} | |
310 Entry to this mode calls the value of `emacs-lisp-mode-hook' | |
311 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
|
312 (interactive) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
313 (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
|
314 (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
|
315 (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
|
316 (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
|
317 (setq mode-name "Emacs-Lisp") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
318 (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
|
319 (setq imenu-case-fold-search nil) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
320 (run-hooks 'emacs-lisp-mode-hook)) |
213 | 321 |
27809 | 322 (defvar lisp-mode-map |
323 (let ((map (make-sparse-keymap))) | |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
324 (set-keymap-parent map lisp-mode-shared-map) |
27809 | 325 (define-key map "\e\C-x" 'lisp-eval-defun) |
326 (define-key map "\C-c\C-z" 'run-lisp) | |
327 map) | |
213 | 328 "Keymap for ordinary Lisp mode. |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
329 All commands in `lisp-mode-shared-map' are inherited by this map.") |
213 | 330 |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
331 (defun lisp-mode () |
213 | 332 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp. |
333 Commands: | |
334 Delete converts tabs to spaces as it moves back. | |
335 Blank lines separate paragraphs. Semicolons start comments. | |
336 \\{lisp-mode-map} | |
337 Note that `run-lisp' may be used either to start an inferior Lisp job | |
338 or to switch back to an existing one. | |
339 | |
340 Entry to this mode calls the value of `lisp-mode-hook' | |
341 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
|
342 (interactive) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
343 (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
|
344 (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
|
345 (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
|
346 (setq mode-name "Lisp") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
347 (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
|
348 (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
|
349 (setq comment-start-skip |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
350 "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\)\\(;+\\|#|\\) *") |
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 '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
|
352 (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
|
353 (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
|
354 (set-syntax-table 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
|
355 (run-hooks 'lisp-mode-hook)) |
213 | 356 |
28324
979a905864ab
(lisp-eval-defun): Make arglist compatible with inf-lisp version.
Dave Love <fx@gnu.org>
parents:
27934
diff
changeset
|
357 ;; 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
|
358 (defun lisp-eval-defun (&optional and-go) |
213 | 359 "Send the current defun to the Lisp process made by \\[run-lisp]." |
360 (interactive) | |
361 (error "Process lisp does not exist")) | |
362 | |
27809 | 363 (defvar lisp-interaction-mode-map |
364 (let ((map (make-sparse-keymap))) | |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
365 (set-keymap-parent map lisp-mode-shared-map) |
27809 | 366 (define-key map "\e\C-x" 'eval-defun) |
367 (define-key map "\e\t" 'lisp-complete-symbol) | |
368 (define-key map "\n" 'eval-print-last-sexp) | |
369 map) | |
23738
2ef2813414b6
(lisp-interaction-mode-map): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
23723
diff
changeset
|
370 "Keymap for Lisp Interaction mode. |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
371 All commands in `lisp-mode-shared-map' are inherited by this map.") |
213 | 372 |
41512
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
373 (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
|
374 (define-derived-mode lisp-interaction-mode emacs-lisp-mode "Lisp Interaction" |
213 | 375 "Major mode for typing and evaluating Lisp forms. |
376 Like Lisp mode except that \\[eval-print-last-sexp] evals the Lisp expression | |
377 before point, and prints its value into the buffer, advancing point. | |
41085 | 378 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
|
379 and `eval-expression-print-level'. |
213 | 380 |
381 Commands: | |
382 Delete converts tabs to spaces as it moves back. | |
383 Paragraphs are separated only by blank lines. | |
384 Semicolons start comments. | |
385 \\{lisp-interaction-mode-map} | |
386 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
|
387 if that value is non-nil.") |
213 | 388 |
248 | 389 (defun eval-print-last-sexp () |
38560
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
390 "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
|
391 |
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
392 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
|
393 `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
|
394 which see." |
248 | 395 (interactive) |
422 | 396 (let ((standard-output (current-buffer))) |
397 (terpri) | |
398 (eval-last-sexp t) | |
399 (terpri))) | |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
400 |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
401 |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
402 (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
|
403 "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
|
404 BEG and END are the start and end of the output in current-buffer. |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
405 VALUE is the Lisp value printed, ALT1 and ALT2 are strings for the |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
406 alternative printed representations that can be displayed." |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
407 (let ((map (make-sparse-keymap))) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
408 (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
|
409 (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
|
410 (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
|
411 (add-text-properties |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
412 beg end |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
413 `(printed-value (,value ,alt1 ,alt2) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
414 mouse-face highlight |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
415 keymap ,map |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
416 help-echo "RET, mouse-2: toggle abbreviated display" |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
417 rear-nonsticky (mouse-face keymap help-echo |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
418 printed-value))))) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
419 |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
420 |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
421 (defun last-sexp-toggle-display () |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
422 "Toggle between abbreviated and unabbreviated printed representations." |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
423 (interactive) |
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
424 (let ((value (get-text-property (point) 'printed-value))) |
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
425 (when value |
40730
b1a039465517
(last-sexp-toggle-display): Cope if previous-single-property-change or
Richard M. Stallman <rms@gnu.org>
parents:
40409
diff
changeset
|
426 (let ((beg (or (previous-single-property-change (point) 'printed-value) (point))) |
b1a039465517
(last-sexp-toggle-display): Cope if previous-single-property-change or
Richard M. Stallman <rms@gnu.org>
parents:
40409
diff
changeset
|
427 (end (or (next-single-char-property-change (point) 'printed-value) (point))) |
38578
4dce109d0aa3
(eval-last-sexp-1): Don't search for
Gerd Moellmann <gerd@gnu.org>
parents:
38576
diff
changeset
|
428 (standard-output (current-buffer)) |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
429 (point (point))) |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
430 (delete-region beg end) |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
431 (insert (nth 1 value)) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
432 (last-sexp-setup-props beg (point) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
433 (nth 0 value) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
434 (nth 2 value) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
435 (nth 1 value)) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
436 (goto-char (min (point-max) point)))))) |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
437 |
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
438 |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
439 (defun eval-last-sexp-1 (eval-last-sexp-arg-internal) |
213 | 440 "Evaluate sexp before point; print value in minibuffer. |
441 With argument, print output into current buffer." | |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
442 (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
|
443 (let ((value |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
444 (eval (let ((stab (syntax-table)) |
17066
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
445 (opoint (point)) |
19057
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
446 ignore-quotes |
17066
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
447 expr) |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
448 (unwind-protect |
249 | 449 (save-excursion |
450 (set-syntax-table emacs-lisp-mode-syntax-table) | |
19057
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
451 ;; If this sexp appears to be enclosed in `...' |
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
452 ;; then ignore the surrounding quotes. |
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
453 (setq ignore-quotes |
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
454 (or (eq (following-char) ?\') |
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
455 (eq (preceding-char) ?\'))) |
249 | 456 (forward-sexp -1) |
25642
556711217681
(eval-last-sexp): If after ?\LETTER, use all of that as the sexp.
Richard M. Stallman <rms@gnu.org>
parents:
25630
diff
changeset
|
457 ;; If we were after `?\e' (or similar case), |
556711217681
(eval-last-sexp): If after ?\LETTER, use all of that as the sexp.
Richard M. Stallman <rms@gnu.org>
parents:
25630
diff
changeset
|
458 ;; use the whole thing, not just the `e'. |
556711217681
(eval-last-sexp): If after ?\LETTER, use all of that as the sexp.
Richard M. Stallman <rms@gnu.org>
parents:
25630
diff
changeset
|
459 (when (eq (preceding-char) ?\\) |
556711217681
(eval-last-sexp): If after ?\LETTER, use all of that as the sexp.
Richard M. Stallman <rms@gnu.org>
parents:
25630
diff
changeset
|
460 (forward-char -1) |
556711217681
(eval-last-sexp): If after ?\LETTER, use all of that as the sexp.
Richard M. Stallman <rms@gnu.org>
parents:
25630
diff
changeset
|
461 (when (eq (preceding-char) ??) |
556711217681
(eval-last-sexp): If after ?\LETTER, use all of that as the sexp.
Richard M. Stallman <rms@gnu.org>
parents:
25630
diff
changeset
|
462 (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
|
463 |
30666
d470d496fd53
(eval-last-sexp-1): Handle `#N=' labels.
Gerd Moellmann <gerd@gnu.org>
parents:
30055
diff
changeset
|
464 ;; Skip over `#N='s. |
d470d496fd53
(eval-last-sexp-1): Handle `#N=' labels.
Gerd Moellmann <gerd@gnu.org>
parents:
30055
diff
changeset
|
465 (when (eq (preceding-char) ?=) |
d470d496fd53
(eval-last-sexp-1): Handle `#N=' labels.
Gerd Moellmann <gerd@gnu.org>
parents:
30055
diff
changeset
|
466 (let (labeled-p) |
d470d496fd53
(eval-last-sexp-1): Handle `#N=' labels.
Gerd Moellmann <gerd@gnu.org>
parents:
30055
diff
changeset
|
467 (save-excursion |
d470d496fd53
(eval-last-sexp-1): Handle `#N=' labels.
Gerd Moellmann <gerd@gnu.org>
parents:
30055
diff
changeset
|
468 (skip-chars-backward "0-9#=") |
d470d496fd53
(eval-last-sexp-1): Handle `#N=' labels.
Gerd Moellmann <gerd@gnu.org>
parents:
30055
diff
changeset
|
469 (setq labeled-p (looking-at "\\(#[0-9]+=\\)+"))) |
d470d496fd53
(eval-last-sexp-1): Handle `#N=' labels.
Gerd Moellmann <gerd@gnu.org>
parents:
30055
diff
changeset
|
470 (when labeled-p |
d470d496fd53
(eval-last-sexp-1): Handle `#N=' labels.
Gerd Moellmann <gerd@gnu.org>
parents:
30055
diff
changeset
|
471 (forward-sexp -1)))) |
d470d496fd53
(eval-last-sexp-1): Handle `#N=' labels.
Gerd Moellmann <gerd@gnu.org>
parents:
30055
diff
changeset
|
472 |
1163 | 473 (save-restriction |
19057
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
474 ;; vladimir@cs.ualberta.ca 30-Jul-1997: skip ` in |
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
475 ;; `variable' so that the value is returned, not the |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
476 ;; name |
19057
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
477 (if (and ignore-quotes |
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
478 (eq (following-char) ?`)) |
b1251bcaaa0e
(eval-last-sexp): Ignore `...' around sexp.
Richard M. Stallman <rms@gnu.org>
parents:
17353
diff
changeset
|
479 (forward-char)) |
1163 | 480 (narrow-to-region (point-min) opoint) |
17066
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
481 (setq expr (read (current-buffer))) |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
482 ;; If it's an (interactive ...) form, it's more |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
483 ;; useful to show how an interactive call would |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
484 ;; use it. |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
485 (and (consp expr) |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
486 (eq (car expr) 'interactive) |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
487 (setq expr |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
488 (list 'call-interactively |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
489 (list 'quote |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
490 (list 'lambda |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
491 '(&rest args) |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
492 expr |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
493 'args))))) |
852e90e67fff
(eval-last-sexp): Allow let-bindings to terminate
Karl Heuer <kwzh@gnu.org>
parents:
16687
diff
changeset
|
494 expr)) |
25703
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
495 (set-syntax-table stab)))))) |
38578
4dce109d0aa3
(eval-last-sexp-1): Don't search for
Gerd Moellmann <gerd@gnu.org>
parents:
38576
diff
changeset
|
496 (let ((unabbreviated (let ((print-length nil) (print-level nil)) |
4dce109d0aa3
(eval-last-sexp-1): Don't search for
Gerd Moellmann <gerd@gnu.org>
parents:
38576
diff
changeset
|
497 (prin1-to-string value))) |
4dce109d0aa3
(eval-last-sexp-1): Don't search for
Gerd Moellmann <gerd@gnu.org>
parents:
38576
diff
changeset
|
498 (print-length eval-expression-print-length) |
38566
795feb9422e4
(eval-last-sexp-1): If standard-output
Gerd Moellmann <gerd@gnu.org>
parents:
38560
diff
changeset
|
499 (print-level eval-expression-print-level) |
38576
c6a3a3a3c0de
(eval-last-sexp-1): Look for a `...'
Gerd Moellmann <gerd@gnu.org>
parents:
38572
diff
changeset
|
500 (beg (point)) |
c6a3a3a3c0de
(eval-last-sexp-1): Look for a `...'
Gerd Moellmann <gerd@gnu.org>
parents:
38572
diff
changeset
|
501 end) |
40759
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
502 (prog1 |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
503 (prin1 value) |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
504 (setq end (point)) |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
505 (when (and (bufferp standard-output) |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
506 (or (not (null print-length)) |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
507 (not (null print-level))) |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
508 (not (string= unabbreviated |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
509 (buffer-substring-no-properties beg end)))) |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
510 (last-sexp-setup-props beg end value |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
511 unabbreviated |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
512 (buffer-substring-no-properties beg end)) |
7441fb1a40ac
(eval-last-sexp-1): Return the value of the evaluated form.
Richard M. Stallman <rms@gnu.org>
parents:
40730
diff
changeset
|
513 )))))) |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
514 |
213 | 515 |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
516 (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
|
517 "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
|
518 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
|
519 (interactive "P") |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
520 (if (null eval-expression-debug-on-error) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
521 (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
|
522 (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
|
523 (let ((debug-on-error old-value)) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
524 (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
|
525 (setq new-value debug-on-error)) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
526 (unless (eq old-value new-value) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
527 (setq debug-on-error new-value)) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
528 value))) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
529 |
25434
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
530 (defun eval-defun-1 (form) |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
531 "Change defvar into defconst within FORM. |
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
532 Likewise for other constructs as necessary." |
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
533 ;; 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
|
534 ;; 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
|
535 (cond ((not (listp form)) |
103ed59cfd30
(eval-defun-1): Cope with atoms as args.
Richard M. Stallman <rms@gnu.org>
parents:
41812
diff
changeset
|
536 form) |
103ed59cfd30
(eval-defun-1): Cope with atoms as args.
Richard M. Stallman <rms@gnu.org>
parents:
41812
diff
changeset
|
537 ((and (eq (car form) 'defvar) |
25434
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
538 (cdr-safe (cdr-safe form))) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
539 ;; Force variable to be bound. |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
540 (cons 'defconst (cdr form))) |
28324
979a905864ab
(lisp-eval-defun): Make arglist compatible with inf-lisp version.
Dave Love <fx@gnu.org>
parents:
27934
diff
changeset
|
541 ;; `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
|
542 ;; `custom-declare-variable' with a quoted value arg. |
27809 | 543 ((and (eq (car form) 'custom-declare-variable) |
544 (default-boundp (eval (nth 1 form)))) | |
25434
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
545 ;; 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
|
546 (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
|
547 form) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
548 ((eq (car form) 'progn) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
549 (cons 'progn (mapcar 'eval-defun-1 (cdr form)))) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
550 (t form))) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
551 |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
552 (defun eval-defun-2 () |
248 | 553 "Evaluate defun that point is in or before. |
24895 | 554 The value is displayed in the minibuffer. |
555 If the current defun is actually a call to `defvar', | |
556 then reset the variable using the initial value expression | |
557 even if the variable already has some other value. | |
558 \(Normally `defvar' does not change the variable's value | |
559 if it already has a value.\) | |
560 | |
23388
8aa1f99efb66
(eval-defun): Return the evaluation result.
Karl Heuer <kwzh@gnu.org>
parents:
23191
diff
changeset
|
561 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
|
562 Return the result of evaluation." |
213 | 563 (interactive "P") |
25703
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
564 (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
|
565 (print-length eval-expression-print-length) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
566 (print-level eval-expression-print-level)) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
567 (save-excursion |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
568 ;; 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
|
569 ;; 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
|
570 ;; variable. Re-written using `apply' to avoid capturing |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
571 ;; variables like `end'. |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
572 (apply |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
573 #'eval-region |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
574 (let ((standard-output t) |
25703
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
575 beg end form) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
576 ;; 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
|
577 (save-excursion |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
578 (end-of-defun) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
579 (beginning-of-defun) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
580 (setq beg (point)) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
581 (setq form (read (current-buffer))) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
582 (setq end (point))) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
583 ;; 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
|
584 (setq form (eval-defun-1 (macroexpand form))) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
585 (list beg end standard-output |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
586 `(lambda (ignore) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
587 ;; Skipping to the end of the specified region |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
588 ;; will make eval-region return. |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
589 (goto-char ,end) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
590 ',form)))))) |
25107 | 591 ;; The result of evaluation has been put onto VALUES. So return it. |
592 (car values)) | |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
593 |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
594 (defun eval-defun (edebug-it) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
595 "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
|
596 |
40409 | 597 If the current defun is actually a call to `defvar' or `defcustom', |
598 evaluating it this way resets the variable using its initial value | |
599 expression even if the variable already has some other value. | |
600 \(Normally `defvar' and `defcustom' do not alter the value if there | |
601 already is one.) | |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
602 |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
603 With a prefix argument, instrument the code for Edebug. |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
604 |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
605 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
|
606 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
|
607 instrumented, just FUNCTION is printed. |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
608 |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
609 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
|
610 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
|
611 `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
|
612 which see." |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
613 (interactive "P") |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
614 (cond (edebug-it |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
615 (require 'edebug) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
616 (eval-defun (not edebug-all-defs))) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
617 (t |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
618 (if (null eval-expression-debug-on-error) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
619 (eval-defun-2) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
620 (let ((old-value (make-symbol "t")) new-value value) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
621 (let ((debug-on-error old-value)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
622 (setq value (eval-defun-2)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
623 (setq new-value debug-on-error)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
624 (unless (eq old-value new-value) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
625 (setq debug-on-error new-value)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
626 value))))) |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
627 |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
628 |
213 | 629 (defun lisp-comment-indent () |
630 (if (looking-at "\\s<\\s<\\s<") | |
631 (current-column) | |
632 (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
|
633 (let ((tem (or (calculate-lisp-indent) (current-column)))) |
213 | 634 (if (listp tem) (car tem) tem)) |
635 (skip-chars-backward " \t") | |
636 (max (if (bolp) 0 (1+ (current-column))) | |
637 comment-column)))) | |
638 | |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
639 ;; 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
|
640 ;; 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
|
641 ;; taking a `;' inside a string started on another line for a comment starter. |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
642 ;; Note: `newcomment' gets it right in 99% of the cases if you're using |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
643 ;; font-lock, anyway, 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
|
644 (defun lisp-mode-auto-fill () |
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
645 (if (> (current-column) (current-fill-column)) |
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
646 (if (save-excursion |
41512
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
647 (nth 4 (syntax-ppss (point)))) |
20333
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
648 (do-auto-fill) |
41512
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
649 (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
|
650 comment-auto-fill-only-comments) |
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
651 (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
|
652 (do-auto-fill)))))) |
20333
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
653 |
37991
908deaf5c7f5
(lisp-indent-offset): Add a doc string.
Eli Zaretskii <eliz@gnu.org>
parents:
37739
diff
changeset
|
654 (defvar lisp-indent-offset nil |
908deaf5c7f5
(lisp-indent-offset): Add a doc string.
Eli Zaretskii <eliz@gnu.org>
parents:
37739
diff
changeset
|
655 "If non-nil, indent second line of expressions that many more columns.") |
27809 | 656 (defvar lisp-indent-function 'lisp-indent-function) |
213 | 657 |
658 (defun lisp-indent-line (&optional whole-exp) | |
659 "Indent current line as Lisp code. | |
660 With argument, indent any additional lines of the same expression | |
661 rigidly along with this one." | |
662 (interactive "P") | |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
663 (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
|
664 (pos (- (point-max) (point))) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
665 (beg (progn (beginning-of-line) (point)))) |
213 | 666 (skip-chars-forward " \t") |
17308
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
667 (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
|
668 ;; 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
|
669 ;; or a line that starts in a string. |
677
7a9b4ea68565
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
659
diff
changeset
|
670 (goto-char (- (point-max) pos)) |
213 | 671 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<"))) |
672 ;; Single-semicolon comment lines should be indented | |
673 ;; as comment lines, not as code. | |
674 (progn (indent-for-comment) (forward-char -1)) | |
675 (if (listp indent) (setq indent (car indent))) | |
676 (setq shift-amt (- indent (current-column))) | |
677 (if (zerop shift-amt) | |
678 nil | |
679 (delete-region beg (point)) | |
680 (indent-to indent))) | |
681 ;; If initial point was within line's indentation, | |
682 ;; position after the indentation. Else stay at same point in text. | |
683 (if (> (- (point-max) pos) (point)) | |
684 (goto-char (- (point-max) pos))) | |
685 ;; If desired, shift remaining lines of expression the same amount. | |
686 (and whole-exp (not (zerop shift-amt)) | |
687 (save-excursion | |
688 (goto-char beg) | |
689 (forward-sexp 1) | |
690 (setq end (point)) | |
691 (goto-char beg) | |
692 (forward-line 1) | |
693 (setq beg (point)) | |
694 (> end beg)) | |
695 (indent-code-rigidly beg end shift-amt))))) | |
696 | |
9424
738999b0296f
Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
9423
diff
changeset
|
697 (defvar calculate-lisp-indent-last-sexp) |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
698 |
213 | 699 (defun calculate-lisp-indent (&optional parse-start) |
700 "Return appropriate indentation for current line as Lisp code. | |
701 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
|
702 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
|
703 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
|
704 |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
705 The value can also be a list of the form (COLUMN CONTAINING-SEXP-START). |
213 | 706 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
|
707 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
|
708 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
|
709 is the buffer position of the start of the containing expression." |
213 | 710 (save-excursion |
711 (beginning-of-line) | |
712 (let ((indent-point (point)) | |
713 state paren-depth | |
714 ;; setting this to a number inhibits calling hook | |
715 (desired-indent nil) | |
716 (retry t) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
717 calculate-lisp-indent-last-sexp containing-sexp) |
213 | 718 (if parse-start |
719 (goto-char parse-start) | |
720 (beginning-of-defun)) | |
721 ;; Find outermost containing sexp | |
722 (while (< (point) indent-point) | |
723 (setq state (parse-partial-sexp (point) indent-point 0))) | |
724 ;; Find innermost containing sexp | |
725 (while (and retry | |
726 state | |
727 (> (setq paren-depth (elt state 0)) 0)) | |
728 (setq retry nil) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
729 (setq calculate-lisp-indent-last-sexp (elt state 2)) |
213 | 730 (setq containing-sexp (elt state 1)) |
731 ;; Position following last unclosed open. | |
732 (goto-char (1+ containing-sexp)) | |
733 ;; Is there a complete sexp since then? | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
734 (if (and calculate-lisp-indent-last-sexp |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
735 (> calculate-lisp-indent-last-sexp (point))) |
213 | 736 ;; 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
|
737 (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
|
738 indent-point 0))) |
213 | 739 (if (setq retry (car (cdr peek))) (setq state peek))))) |
740 (if retry | |
741 nil | |
742 ;; Innermost containing sexp found | |
743 (goto-char (1+ containing-sexp)) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
744 (if (not calculate-lisp-indent-last-sexp) |
213 | 745 ;; indent-point immediately follows open paren. |
746 ;; Don't call hook. | |
747 (setq desired-indent (current-column)) | |
748 ;; 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
|
749 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t) |
213 | 750 (cond ((looking-at "\\s(") |
751 ;; First element of containing sexp is a list. | |
752 ;; Indent under that list. | |
753 ) | |
754 ((> (save-excursion (forward-line 1) (point)) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
755 calculate-lisp-indent-last-sexp) |
213 | 756 ;; This is the first line to start within the containing sexp. |
757 ;; It's almost certainly a function call. | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
758 (if (= (point) calculate-lisp-indent-last-sexp) |
213 | 759 ;; Containing sexp has nothing before this line |
760 ;; except the first element. Indent under that element. | |
761 nil | |
762 ;; Skip the first element, find start of second (the first | |
763 ;; argument of the function call) and indent under. | |
764 (progn (forward-sexp 1) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
765 (parse-partial-sexp (point) |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
766 calculate-lisp-indent-last-sexp |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
767 0 t))) |
213 | 768 (backward-prefix-chars)) |
769 (t | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
770 ;; Indent beneath first sexp on same line as |
27809 | 771 ;; `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
|
772 ;; almost certainly a function call. |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
773 (goto-char calculate-lisp-indent-last-sexp) |
213 | 774 (beginning-of-line) |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
775 (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
|
776 0 t) |
213 | 777 (backward-prefix-chars))))) |
778 ;; 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
|
779 ;; Call indentation hook except when overridden by lisp-indent-offset |
213 | 780 ;; or if the desired indentation has already been computed. |
781 (let ((normal-indent (current-column))) | |
782 (cond ((elt state 3) | |
783 ;; 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
|
784 nil) |
213 | 785 ((and (integerp lisp-indent-offset) containing-sexp) |
786 ;; Indent by constant offset | |
787 (goto-char containing-sexp) | |
788 (+ (current-column) lisp-indent-offset)) | |
789 (desired-indent) | |
790 ((and (boundp 'lisp-indent-function) | |
791 lisp-indent-function | |
792 (not retry)) | |
793 (or (funcall lisp-indent-function indent-point state) | |
794 normal-indent)) | |
795 (t | |
214 | 796 normal-indent)))))) |
213 | 797 |
798 (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
|
799 "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
|
800 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
|
801 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
|
802 |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
803 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
|
804 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
|
805 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
|
806 |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
807 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
|
808 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
|
809 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
|
810 * `defun', meaning indent `defun'-style; |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
811 * 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
|
812 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
|
813 aruments like a body; |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
814 * 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
|
815 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
|
816 the indentation. |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
817 |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
818 This function also returns nil meaning don't specify the indentation." |
213 | 819 (let ((normal-indent (current-column))) |
820 (goto-char (1+ (elt state 1))) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
821 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t) |
213 | 822 (if (and (elt state 2) |
823 (not (looking-at "\\sw\\|\\s_"))) | |
824 ;; car of form doesn't seem to be a a symbol | |
825 (progn | |
826 (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
|
827 calculate-lisp-indent-last-sexp)) |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
828 (progn (goto-char calculate-lisp-indent-last-sexp) |
213 | 829 (beginning-of-line) |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
830 (parse-partial-sexp (point) |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
831 calculate-lisp-indent-last-sexp 0 t))) |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
832 ;; Indent under the list or under the first sexp on the same |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
833 ;; line as calculate-lisp-indent-last-sexp. Note that first |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
834 ;; thing on that line has to be complete sexp since we are |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
835 ;; inside the innermost containing sexp. |
213 | 836 (backward-prefix-chars) |
837 (current-column)) | |
838 (let ((function (buffer-substring (point) | |
839 (progn (forward-sexp 1) (point)))) | |
840 method) | |
3638
45169f86d3a4
(lisp-indent-function): Look for either
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
841 (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
|
842 (get (intern-soft function) 'lisp-indent-hook))) |
213 | 843 (cond ((or (eq method 'defun) |
844 (and (null method) | |
845 (> (length function) 3) | |
846 (string-match "\\`def" function))) | |
847 (lisp-indent-defform state indent-point)) | |
848 ((integerp method) | |
849 (lisp-indent-specform method state | |
850 indent-point normal-indent)) | |
851 (method | |
852 (funcall method state indent-point))))))) | |
853 | |
16687
049c87a96dca
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16563
diff
changeset
|
854 (defvar lisp-body-indent 2 |
2933
420dfaaacfc5
(lisp-body-indent): Add doc.
Richard M. Stallman <rms@gnu.org>
parents:
2450
diff
changeset
|
855 "Number of columns to indent the second line of a `(def...)' form.") |
213 | 856 |
857 (defun lisp-indent-specform (count state indent-point normal-indent) | |
858 (let ((containing-form-start (elt state 1)) | |
859 (i count) | |
860 body-indent containing-form-column) | |
861 ;; Move to the start of containing form, calculate indentation | |
862 ;; to use for non-distinguished forms (> count), and move past the | |
863 ;; function symbol. lisp-indent-function guarantees that there is at | |
864 ;; least one word or symbol character following open paren of containing | |
865 ;; form. | |
866 (goto-char containing-form-start) | |
867 (setq containing-form-column (current-column)) | |
868 (setq body-indent (+ lisp-body-indent containing-form-column)) | |
869 (forward-char 1) | |
870 (forward-sexp 1) | |
871 ;; Now find the start of the last form. | |
872 (parse-partial-sexp (point) indent-point 1 t) | |
873 (while (and (< (point) indent-point) | |
874 (condition-case () | |
875 (progn | |
876 (setq count (1- count)) | |
877 (forward-sexp 1) | |
878 (parse-partial-sexp (point) indent-point 1 t)) | |
879 (error nil)))) | |
880 ;; Point is sitting on first character of last (or count) sexp. | |
881 (if (> count 0) | |
882 ;; A distinguished form. If it is the first or second form use double | |
883 ;; lisp-body-indent, else normal indent. With lisp-body-indent bound | |
884 ;; to 2 (the default), this just happens to work the same with if as | |
885 ;; the older code, but it makes unwind-protect, condition-case, | |
886 ;; with-output-to-temp-buffer, et. al. much more tasteful. The older, | |
887 ;; less hacked, behavior can be obtained by replacing below with | |
888 ;; (list normal-indent containing-form-start). | |
889 (if (<= (- i count) 1) | |
890 (list (+ containing-form-column (* 2 lisp-body-indent)) | |
891 containing-form-start) | |
892 (list normal-indent containing-form-start)) | |
893 ;; A non-distinguished form. Use body-indent if there are no | |
894 ;; distinguished forms and this is the first undistinguished form, | |
895 ;; or if this is the first undistinguished form and the preceding | |
896 ;; distinguished form has indentation at least as great as body-indent. | |
897 (if (or (and (= i 0) (= count 0)) | |
898 (and (= count 0) (<= body-indent normal-indent))) | |
899 body-indent | |
900 normal-indent)))) | |
901 | |
902 (defun lisp-indent-defform (state indent-point) | |
903 (goto-char (car (cdr state))) | |
904 (forward-line 1) | |
905 (if (> (point) (car (cdr (cdr state)))) | |
906 (progn | |
907 (goto-char (car (cdr state))) | |
908 (+ lisp-body-indent (current-column))))) | |
909 | |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
910 |
213 | 911 ;; (put 'progn 'lisp-indent-function 0), say, causes progn to be indented |
912 ;; like defun if the first form is placed on the next line, otherwise | |
913 ;; it is indented like any other form (i.e. forms line up under first). | |
914 | |
915 (put 'lambda 'lisp-indent-function 'defun) | |
916 (put 'autoload 'lisp-indent-function 'defun) | |
917 (put 'progn 'lisp-indent-function 0) | |
918 (put 'prog1 'lisp-indent-function 1) | |
919 (put 'prog2 'lisp-indent-function 2) | |
920 (put 'save-excursion 'lisp-indent-function 0) | |
921 (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
|
922 (put 'save-selected-window 'lisp-indent-function 0) |
213 | 923 (put 'save-restriction 'lisp-indent-function 0) |
1163 | 924 (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
|
925 (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
|
926 (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
|
927 (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
|
928 (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
|
929 (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
|
930 (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
|
931 (put 'with-temp-message 'lisp-indent-function 1) |
27300
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26682
diff
changeset
|
932 (put 'with-syntax-table 'lisp-indent-function 1) |
213 | 933 (put 'let 'lisp-indent-function 1) |
934 (put 'let* 'lisp-indent-function 1) | |
935 (put 'while 'lisp-indent-function 1) | |
936 (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
|
937 (put 'read-if 'lisp-indent-function 2) |
213 | 938 (put 'catch 'lisp-indent-function 1) |
939 (put 'condition-case 'lisp-indent-function 2) | |
940 (put 'unwind-protect 'lisp-indent-function 1) | |
941 (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
|
942 (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
|
943 (put 'dolist 'lisp-indent-function 1) |
a681b4de47a1
Add indent specs for dolist, dotimes, when, unless.
Dave Love <fx@gnu.org>
parents:
27303
diff
changeset
|
944 (put 'dotimes 'lisp-indent-function 1) |
a681b4de47a1
Add indent specs for dolist, dotimes, when, unless.
Dave Love <fx@gnu.org>
parents:
27303
diff
changeset
|
945 (put 'when 'lisp-indent-function 1) |
a681b4de47a1
Add indent specs for dolist, dotimes, when, unless.
Dave Love <fx@gnu.org>
parents:
27303
diff
changeset
|
946 (put 'unless 'lisp-indent-function 1) |
213 | 947 |
948 (defun indent-sexp (&optional endpos) | |
949 "Indent each line of the list starting just after point. | |
950 If optional arg ENDPOS is given, indent each line, stopping when | |
951 ENDPOS is encountered." | |
952 (interactive) | |
727 | 953 (let ((indent-stack (list nil)) |
954 (next-depth 0) | |
10594
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
955 ;; 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
|
956 ;; 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
|
957 ;; 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
|
958 ;; 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
|
959 ;; 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
|
960 (starting-point (if endpos nil (point))) |
727 | 961 (last-point (point)) |
962 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
|
963 (or endpos |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
964 ;; 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
|
965 (save-excursion (forward-sexp 1))) |
213 | 966 (save-excursion |
967 (setq outer-loop-done nil) | |
968 (while (if endpos (< (point) endpos) | |
969 (not outer-loop-done)) | |
970 (setq last-depth next-depth | |
971 inner-loop-done nil) | |
972 ;; Parse this line so we can learn the state | |
973 ;; to indent the next line. | |
974 ;; This inner loop goes through only once | |
975 ;; unless a line ends inside a string. | |
976 (while (and (not inner-loop-done) | |
977 (not (setq outer-loop-done (eobp)))) | |
978 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point)) | |
979 nil nil state)) | |
980 (setq next-depth (car state)) | |
981 ;; If the line contains a comment other than the sort | |
982 ;; that is indented like code, | |
983 ;; indent it now with indent-for-comment. | |
984 ;; Comments indented like code are right already. | |
985 ;; In any case clear the in-comment flag in the state | |
986 ;; because parse-partial-sexp never sees the newlines. | |
987 (if (car (nthcdr 4 state)) | |
988 (progn (indent-for-comment) | |
989 (end-of-line) | |
990 (setcar (nthcdr 4 state) nil))) | |
991 ;; If this line ends inside a string, | |
992 ;; go straight to next line, remaining within the inner loop, | |
993 ;; and turn off the \-flag. | |
994 (if (car (nthcdr 3 state)) | |
995 (progn | |
996 (forward-line 1) | |
997 (setcar (nthcdr 5 state) nil)) | |
998 (setq inner-loop-done t))) | |
999 (and endpos | |
727 | 1000 (<= next-depth 0) |
1001 (progn | |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
1002 (setq indent-stack (nconc indent-stack |
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
1003 (make-list (- next-depth) nil)) |
727 | 1004 last-depth (- last-depth next-depth) |
1005 next-depth 0))) | |
10594
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1006 (or outer-loop-done endpos |
213 | 1007 (setq outer-loop-done (<= next-depth 0))) |
1008 (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
|
1009 (forward-line 1) |
213 | 1010 (while (> last-depth next-depth) |
1011 (setq indent-stack (cdr indent-stack) | |
1012 last-depth (1- last-depth))) | |
1013 (while (< last-depth next-depth) | |
1014 (setq indent-stack (cons nil indent-stack) | |
1015 last-depth (1+ last-depth))) | |
1016 ;; Now go to the next line and indent it according | |
1017 ;; to what we learned from parsing the previous one. | |
1018 (forward-line 1) | |
1019 (setq bol (point)) | |
1020 (skip-chars-forward " \t") | |
1021 ;; But not if the line is blank, or just a comment | |
1022 ;; (except for double-semi comments; indent them as usual). | |
1023 (if (or (eobp) (looking-at "\\s<\\|\n")) | |
1024 nil | |
1025 (if (and (car indent-stack) | |
1026 (>= (car indent-stack) 0)) | |
1027 (setq this-indent (car indent-stack)) | |
1028 (let ((val (calculate-lisp-indent | |
1029 (if (car indent-stack) (- (car indent-stack)) | |
727 | 1030 starting-point)))) |
17308
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1031 (if (null val) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1032 (setq this-indent val) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1033 (if (integerp val) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1034 (setcar indent-stack |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1035 (setq this-indent val)) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1036 (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
|
1037 (setq this-indent (car val)))))) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1038 (if (and this-indent (/= (current-column) this-indent)) |
213 | 1039 (progn (delete-region bol (point)) |
1040 (indent-to this-indent))))) | |
1041 (or outer-loop-done | |
1042 (setq outer-loop-done (= (point) last-point)) | |
1043 (setq last-point (point))))))) | |
1044 | |
1045 (defun lisp-indent-region (start end) | |
27809 | 1046 "Indent every line whose first char is between START and END inclusive." |
213 | 1047 (save-excursion |
1048 (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
|
1049 (goto-char start) |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1050 (and (bolp) (not (eolp)) |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1051 (lisp-indent-line)) |
213 | 1052 (indent-sexp endmark) |
1053 (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
|
1054 |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1055 ;;;; Lisp paragraph filling commands. |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1056 |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1057 (defun lisp-fill-paragraph (&optional justify) |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1058 "Like \\[fill-paragraph], but handle Emacs Lisp comments. |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1059 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
|
1060 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
|
1061 and initial semicolons." |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1062 (interactive "P") |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1063 (let ( |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1064 ;; Non-nil if the current line contains a comment. |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1065 has-comment |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1066 |
14817
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1067 ;; Non-nil if the current line contains code and a comment. |
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1068 has-code-and-comment |
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1069 |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1070 ;; If has-comment, the appropriate fill-prefix for the comment. |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1071 comment-fill-prefix |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1072 ) |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1073 |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1074 ;; Figure out what kind of comment we are looking at. |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1075 (save-excursion |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1076 (beginning-of-line) |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1077 (cond |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1078 |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1079 ;; A line with nothing but a comment on it? |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1080 ((looking-at "[ \t]*;[; \t]*") |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1081 (setq has-comment t |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1082 comment-fill-prefix (buffer-substring (match-beginning 0) |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1083 (match-end 0)))) |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1084 |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1085 ;; A line with some code, followed by a comment? Remember that the |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1086 ;; semi which starts the comment shouldn't be part of a string or |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1087 ;; character. |
41512
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
1088 ((let ((state (syntax-ppss (line-end-position)))) |
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
1089 (when (nth 4 state) |
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
1090 (goto-char (nth 8 state)) |
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
1091 (looking-at ";+[\t ]*"))) |
14817
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1092 (setq has-comment t has-code-and-comment t) |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1093 (setq comment-fill-prefix |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
1094 (concat (make-string (/ (current-column) tab-width) ?\t) |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
1095 (make-string (% (current-column) tab-width) ?\ ) |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1096 (buffer-substring (match-beginning 0) (match-end 0))))))) |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1097 |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1098 (if (not has-comment) |
21213 | 1099 ;; `paragraph-start' is set here (not in the buffer-local |
1100 ;; variable so that `forward-paragraph' et al work as | |
1101 ;; expected) so that filling (doc) strings works sensibly. | |
1102 ;; Adding the opening paren to avoid the following sexp being | |
1103 ;; filled means that sexps generally aren't filled as normal | |
1104 ;; text, which is probably sensible. The `;' and `:' stop the | |
1105 ;; filled para at following comment lines and keywords | |
1106 ;; (typically in `defcustom'). | |
1107 (let ((paragraph-start (concat paragraph-start | |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
1108 "\\|\\s-*[\(;:\"]")) |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
1109 ;; Avoid filling the first line of docstring. |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
1110 (paragraph-separate |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
1111 (concat paragraph-separate "\\|\\s-*\".*\\.$"))) |
21213 | 1112 (fill-paragraph justify)) |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1113 |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1114 ;; Narrow to include only the comment, and then fill the region. |
14628
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1115 (save-excursion |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1116 (save-restriction |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1117 (beginning-of-line) |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1118 (narrow-to-region |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1119 ;; Find the first line we should include in the region to fill. |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1120 (save-excursion |
41310
ab1a42ecf560
(lisp-fill-paragraph): Don't move back to a line without a comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41085
diff
changeset
|
1121 (while (and (zerop (forward-line -1)) |
ab1a42ecf560
(lisp-fill-paragraph): Don't move back to a line without a comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41085
diff
changeset
|
1122 (looking-at "[ \t]*;"))) |
ab1a42ecf560
(lisp-fill-paragraph): Don't move back to a line without a comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41085
diff
changeset
|
1123 ;; We may have gone too far. Go forward again. |
ab1a42ecf560
(lisp-fill-paragraph): Don't move back to a line without a comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41085
diff
changeset
|
1124 (or (looking-at ".*;") |
ab1a42ecf560
(lisp-fill-paragraph): Don't move back to a line without a comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41085
diff
changeset
|
1125 (forward-line 1)) |
14628
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1126 (point)) |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1127 ;; Find the beginning of the first line past the region to fill. |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1128 (save-excursion |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1129 (while (progn (forward-line 1) |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
1130 (looking-at "[ \t]*;"))) |
14628
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1131 (point))) |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1132 |
14628
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1133 ;; Lines with only semicolons on them can be paragraph boundaries. |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1134 (let* ((paragraph-start (concat paragraph-start "\\|[ \t;]*$")) |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1135 (paragraph-separate (concat paragraph-start "\\|[ \t;]*$")) |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1136 (paragraph-ignore-fill-prefix nil) |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1137 (fill-prefix comment-fill-prefix) |
14817
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1138 (after-line (if has-code-and-comment |
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1139 (save-excursion |
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1140 (forward-line 1) (point)))) |
14628
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1141 (end (progn |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1142 (forward-paragraph) |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1143 (or (bolp) (newline 1)) |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1144 (point))) |
14817
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1145 ;; If this comment starts on a line with code, |
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1146 ;; include that like in the filling. |
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1147 (beg (progn (backward-paragraph) |
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1148 (if (eq (point) after-line) |
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1149 (forward-line -1)) |
cdd8a024f000
(lisp-fill-paragraph): Treat code-and-comment case specially.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
1150 (point)))) |
14628
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1151 (fill-region-as-paragraph beg end |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1152 justify nil |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1153 (save-excursion |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1154 (goto-char beg) |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1155 (if (looking-at fill-prefix) |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1156 nil |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1157 (re-search-forward comment-start-skip) |
c932ad13ccd9
(lisp-fill-paragraph): When filling a comment,
Karl Heuer <kwzh@gnu.org>
parents:
14495
diff
changeset
|
1158 (point)))))))) |
10629
2c9bdcab7052
(lisp-fill-paragraph): Return t.
Richard M. Stallman <rms@gnu.org>
parents:
10628
diff
changeset
|
1159 t)) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
1160 |
213 | 1161 (defun indent-code-rigidly (start end arg &optional nochange-regexp) |
1162 "Indent all lines of code, starting in the region, sideways by ARG columns. | |
1163 Does not affect lines starting inside comments or strings, assuming that | |
1164 the start of the region is not inside them. | |
1165 | |
1166 Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP. | |
1167 The last is a regexp which, if matched at the beginning of a line, | |
1168 means don't indent that line." | |
1169 (interactive "r\np") | |
1170 (let (state) | |
1171 (save-excursion | |
1172 (goto-char end) | |
1173 (setq end (point-marker)) | |
1174 (goto-char start) | |
1175 (or (bolp) | |
1176 (setq state (parse-partial-sexp (point) | |
1177 (progn | |
1178 (forward-line 1) (point)) | |
1179 nil nil state))) | |
1180 (while (< (point) end) | |
1181 (or (car (nthcdr 3 state)) | |
1182 (and nochange-regexp | |
1183 (looking-at nochange-regexp)) | |
1184 ;; If line does not start in string, indent it | |
1185 (let ((indent (current-indentation))) | |
1186 (delete-region (point) (progn (skip-chars-forward " \t") (point))) | |
1187 (or (eolp) | |
1188 (indent-to (max 0 (+ indent arg)) 0)))) | |
1189 (setq state (parse-partial-sexp (point) | |
1190 (progn | |
1191 (forward-line 1) (point)) | |
1192 nil nil state)))))) | |
584 | 1193 |
1194 (provide 'lisp-mode) | |
1195 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1196 ;;; lisp-mode.el ends here |