Mercurial > emacs
annotate lisp/emacs-lisp/lisp-mode.el @ 94374:bb784189a8b3
Doc fix.
author | Vinicius Jose Latorre <viniciusjl@ig.com.br> |
---|---|
date | Sat, 26 Apr 2008 12:38:54 +0000 |
parents | 72eb648a4690 |
children | 2f4d6806f156 |
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 |
64751
5b1a238fcbb4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64349
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1999, 2000, 2001, 2002, 2003, 2004, |
79704 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
5 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
6 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: lisp, languages |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
8 |
213 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
78217
935157c0b596
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
78180
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
213 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
213 | 25 |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
26 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
27 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
28 ;; The base major mode for editing Lisp code (used also for Emacs Lisp). |
27809 | 29 ;; 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
|
30 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
31 ;;; Code: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
32 |
65200
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
33 (defvar font-lock-comment-face) |
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
34 (defvar font-lock-doc-face) |
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
35 (defvar font-lock-keywords-case-fold-search) |
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
36 (defvar font-lock-string-face) |
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
37 |
27809 | 38 (defvar lisp-mode-abbrev-table nil) |
213 | 39 |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
40 (define-abbrev-table 'lisp-mode-abbrev-table ()) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
41 |
27809 | 42 (defvar emacs-lisp-mode-syntax-table |
43 (let ((table (make-syntax-table))) | |
213 | 44 (let ((i 0)) |
45 (while (< i ?0) | |
27809 | 46 (modify-syntax-entry i "_ " table) |
213 | 47 (setq i (1+ i))) |
48 (setq i (1+ ?9)) | |
49 (while (< i ?A) | |
27809 | 50 (modify-syntax-entry i "_ " table) |
213 | 51 (setq i (1+ i))) |
52 (setq i (1+ ?Z)) | |
53 (while (< i ?a) | |
27809 | 54 (modify-syntax-entry i "_ " table) |
213 | 55 (setq i (1+ i))) |
56 (setq i (1+ ?z)) | |
57 (while (< i 128) | |
27809 | 58 (modify-syntax-entry i "_ " table) |
213 | 59 (setq i (1+ i))) |
65200
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
60 (modify-syntax-entry ?\s " " table) |
82216
86901570c4a7
(emacs-lisp-mode-syntax-table): Treat non-break space as whitespace in Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
78217
diff
changeset
|
61 ;; Non-break space acts as whitespace. |
86901570c4a7
(emacs-lisp-mode-syntax-table): Treat non-break space as whitespace in Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
78217
diff
changeset
|
62 (modify-syntax-entry ?\x8a0 " " table) |
27809 | 63 (modify-syntax-entry ?\t " " table) |
64 (modify-syntax-entry ?\f " " table) | |
65 (modify-syntax-entry ?\n "> " table) | |
65852
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
66 ;; This is probably obsolete since nowadays such features use overlays. |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
67 ;; ;; Give CR the same syntax as newline, for selective-display. |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
68 ;; (modify-syntax-entry ?\^m "> " table) |
27809 | 69 (modify-syntax-entry ?\; "< " table) |
70 (modify-syntax-entry ?` "' " table) | |
71 (modify-syntax-entry ?' "' " table) | |
72 (modify-syntax-entry ?, "' " table) | |
50677
152c21ba1618
(emacs-lisp-mode-syntax-table): Give @ prefix syntax.
Richard M. Stallman <rms@gnu.org>
parents:
50585
diff
changeset
|
73 (modify-syntax-entry ?@ "' " table) |
213 | 74 ;; Used to be singlequote; changed for flonums. |
27809 | 75 (modify-syntax-entry ?. "_ " table) |
76 (modify-syntax-entry ?# "' " table) | |
77 (modify-syntax-entry ?\" "\" " table) | |
78 (modify-syntax-entry ?\\ "\\ " table) | |
79 (modify-syntax-entry ?\( "() " table) | |
80 (modify-syntax-entry ?\) ")( " table) | |
81 (modify-syntax-entry ?\[ "(] " table) | |
27814
f2abbe1d6b47
Don't change syntax of multibyte
Kenichi Handa <handa@m17n.org>
parents:
27809
diff
changeset
|
82 (modify-syntax-entry ?\] ")[ " table)) |
27809 | 83 table)) |
213 | 84 |
27809 | 85 (defvar lisp-mode-syntax-table |
86 (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table))) | |
87 (modify-syntax-entry ?\[ "_ " table) | |
88 (modify-syntax-entry ?\] "_ " table) | |
65852
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
89 (modify-syntax-entry ?# "' 14b" table) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
90 (modify-syntax-entry ?| "\" 23bn" table) |
27809 | 91 table)) |
285 | 92 |
12701
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
93 (defvar lisp-imenu-generic-expression |
27809 | 94 (list |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
95 (list nil |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
96 (purecopy (concat "^\\s-*(" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
97 (eval-when-compile |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
98 (regexp-opt |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
99 '("defun" "defun*" "defsubst" "defmacro" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
100 "defadvice" "define-skeleton" |
67295
df35219b6508
Put `doc-string-elt' property on
Juri Linkov <juri@jurta.org>
parents:
67276
diff
changeset
|
101 "define-minor-mode" "define-global-minor-mode" |
75641
0c165a40f76b
define-global-minor-mode changed to define-globalized-minor-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
75346
diff
changeset
|
102 "define-globalized-minor-mode" |
67295
df35219b6508
Put `doc-string-elt' property on
Juri Linkov <juri@jurta.org>
parents:
67276
diff
changeset
|
103 "define-derived-mode" "define-generic-mode" |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
104 "define-compiler-macro" "define-modify-macro" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
105 "defsetf" "define-setf-expander" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
106 "define-method-combination" |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
107 "defgeneric" "defmethod") t)) |
67276
249c0ac46fca
(lisp-imenu-generic-expression): Fix bug whereby names of length one
Eli Zaretskii <eliz@gnu.org>
parents:
66747
diff
changeset
|
108 "\\s-+\\(\\(\\sw\\|\\s_\\)+\\)")) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
109 2) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
110 (list (purecopy "Variables") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
111 (purecopy (concat "^\\s-*(" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
112 (eval-when-compile |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
113 (regexp-opt |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
114 '("defvar" "defconst" "defconstant" "defcustom" |
40790
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
115 "defparameter" "define-symbol-macro") t)) |
67276
249c0ac46fca
(lisp-imenu-generic-expression): Fix bug whereby names of length one
Eli Zaretskii <eliz@gnu.org>
parents:
66747
diff
changeset
|
116 "\\s-+\\(\\(\\sw\\|\\s_\\)+\\)")) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
117 2) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
118 (list (purecopy "Types") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
119 (purecopy (concat "^\\s-*(" |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
120 (eval-when-compile |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
121 (regexp-opt |
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
122 '("defgroup" "deftheme" "deftype" "defstruct" |
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
123 "defclass" "define-condition" "define-widget" |
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
124 "defface" "defpackage") t)) |
67276
249c0ac46fca
(lisp-imenu-generic-expression): Fix bug whereby names of length one
Eli Zaretskii <eliz@gnu.org>
parents:
66747
diff
changeset
|
125 "\\s-+'?\\(\\(\\sw\\|\\s_\\)+\\)")) |
12701
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
126 2)) |
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
127 |
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
128 "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
|
129 |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
130 ;; 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
|
131 (put 'autoload 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
132 (put 'defun 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
133 (put 'defun* 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
134 (put 'defvar 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
135 (put 'defcustom 'doc-string-elt 3) |
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
136 (put 'deftheme 'doc-string-elt 2) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
137 (put 'defconst 'doc-string-elt 3) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
138 (put 'defmacro 'doc-string-elt 3) |
41812
fb0d648feaa6
(toplevel): Define docstring offset for `defmacro*'.
Colin Walters <walters@gnu.org>
parents:
41702
diff
changeset
|
139 (put 'defmacro* 'doc-string-elt 3) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
140 (put 'defsubst 'doc-string-elt 3) |
63108
a19780959d63
(defstruct): Set 'doc-string-elt property.
Juanma Barranquero <lekktu@gmail.com>
parents:
62363
diff
changeset
|
141 (put 'defstruct 'doc-string-elt 2) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
142 (put 'define-skeleton 'doc-string-elt 2) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
143 (put 'define-derived-mode 'doc-string-elt 4) |
56996
5418c6e288fc
(define-compilation-mode): Specify `doc-string-elt' property.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
56840
diff
changeset
|
144 (put 'define-compilation-mode 'doc-string-elt 3) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
145 (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
|
146 (put 'define-minor-mode 'doc-string-elt 2) |
67295
df35219b6508
Put `doc-string-elt' property on
Juri Linkov <juri@jurta.org>
parents:
67276
diff
changeset
|
147 (put 'easy-mmode-define-global-mode 'doc-string-elt 2) |
df35219b6508
Put `doc-string-elt' property on
Juri Linkov <juri@jurta.org>
parents:
67276
diff
changeset
|
148 (put 'define-global-minor-mode 'doc-string-elt 2) |
75641
0c165a40f76b
define-global-minor-mode changed to define-globalized-minor-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
75346
diff
changeset
|
149 (put 'define-globalized-minor-mode 'doc-string-elt 2) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
150 (put 'define-generic-mode 'doc-string-elt 7) |
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
151 (put 'define-ibuffer-filter 'doc-string-elt 2) |
42699
1da0dfa86ab5
Handle define-ibuffer-column, define-ibuffer-filter,
Colin Walters <walters@gnu.org>
parents:
42235
diff
changeset
|
152 (put 'define-ibuffer-op 'doc-string-elt 3) |
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
parents:
48127
diff
changeset
|
153 (put 'define-ibuffer-sorter 'doc-string-elt 2) |
65851
c9b01535e163
(lambda): Add its doc-string-elt property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65849
diff
changeset
|
154 (put 'lambda 'doc-string-elt 2) |
66404
48fff88992ce
(easy-mmode-define-global-mode): Don't add a dummy doc-string-elt property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65852
diff
changeset
|
155 (put 'defalias 'doc-string-elt 3) |
48fff88992ce
(easy-mmode-define-global-mode): Don't add a dummy doc-string-elt property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65852
diff
changeset
|
156 (put 'defvaralias 'doc-string-elt 3) |
48fff88992ce
(easy-mmode-define-global-mode): Don't add a dummy doc-string-elt property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65852
diff
changeset
|
157 (put 'define-category 'doc-string-elt 2) |
65851
c9b01535e163
(lambda): Add its doc-string-elt property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65849
diff
changeset
|
158 |
c9b01535e163
(lambda): Add its doc-string-elt property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65849
diff
changeset
|
159 (defvar lisp-doc-string-elt-property 'doc-string-elt |
c9b01535e163
(lambda): Add its doc-string-elt property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65849
diff
changeset
|
160 "The symbol property that holds the docstring position info.") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
161 |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
162 (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
|
163 (if (nth 3 state) |
65852
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
164 ;; This might be a (doc)string or a |...| symbol. |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
165 (let ((startpos (nth 8 state))) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
166 (if (eq (char-after startpos) ?|) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
167 ;; This is not a string, but a |...| symbol. |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
168 nil |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
169 (let* ((listbeg (nth 1 state)) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
170 (firstsym (and listbeg |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
171 (save-excursion |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
172 (goto-char listbeg) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
173 (and (looking-at "([ \t\n]*\\(\\(\\sw\\|\\s_\\)+\\)") |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
174 (match-string 1))))) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
175 (docelt (and firstsym (get (intern-soft firstsym) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
176 lisp-doc-string-elt-property)))) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
177 (if (and docelt |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
178 ;; It's a string in a form that can have a docstring. |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
179 ;; Check whether it's in docstring position. |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
180 (save-excursion |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
181 (when (functionp docelt) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
182 (goto-char (match-end 1)) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
183 (setq docelt (funcall docelt))) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
184 (goto-char listbeg) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
185 (forward-char 1) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
186 (condition-case nil |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
187 (while (and (> docelt 0) (< (point) startpos) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
188 (progn (forward-sexp 1) t)) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
189 (setq docelt (1- docelt))) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
190 (error nil)) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
191 (and (zerop docelt) (<= (point) startpos) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
192 (progn (forward-comment (point-max)) t) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
193 (= (point) (nth 8 state))))) |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
194 font-lock-doc-face |
4b5af439906f
(lisp-mode-syntax-table): Move the nesting bit from # to |.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65851
diff
changeset
|
195 font-lock-string-face)))) |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
196 font-lock-comment-face)) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
197 |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
198 ;; 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
|
199 ;; (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
|
200 (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
|
201 (when lisp-syntax |
3b3c00fa282a
(lisp-imenu-generic-expression): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40759
diff
changeset
|
202 (set-syntax-table lisp-mode-syntax-table)) |
213 | 203 (setq local-abbrev-table lisp-mode-abbrev-table) |
204 (make-local-variable 'paragraph-ignore-fill-prefix) | |
205 (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
|
206 (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
|
207 (setq fill-paragraph-function 'lisp-fill-paragraph) |
64088
6b665a797211
(lisp-mode-variables): Prevent adaptive
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
208 ;; Adaptive fill mode gets the fill wrong for a one-line paragraph made of |
6b665a797211
(lisp-mode-variables): Prevent adaptive
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
209 ;; a single docstring. Let's fix it here. |
6b665a797211
(lisp-mode-variables): Prevent adaptive
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
210 (set (make-local-variable 'adaptive-fill-function) |
6b665a797211
(lisp-mode-variables): Prevent adaptive
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
211 (lambda () (if (looking-at "\\s-+\"[^\n\"]+\"\\s-*$") ""))) |
14495
fc4be3d538e0
(lisp-mode-variables): Locally clear adaptive-fill-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14379
diff
changeset
|
212 ;; 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
|
213 ;; 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
|
214 ;; 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
|
215 ;; 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
|
216 ;;(set (make-local-variable 'adaptive-fill-mode) nil) |
213 | 217 (make-local-variable 'indent-line-function) |
218 (setq indent-line-function 'lisp-indent-line) | |
219 (make-local-variable 'parse-sexp-ignore-comments) | |
220 (setq parse-sexp-ignore-comments t) | |
6076
4f76564fc2cd
(lisp-mode-variables): Set outline-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
5103
diff
changeset
|
221 (make-local-variable 'outline-regexp) |
60074
65b1f2f4ce8f
(lisp-mode-variables): Add ;;;###autoload to `outline-regexp'.
Lute Kamstra <lute@gnu.org>
parents:
59848
diff
changeset
|
222 (setq outline-regexp ";;;\\(;* [^ \t\n]\\|###autoload\\)\\|(") |
26682
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
223 (make-local-variable 'outline-level) |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
224 (setq outline-level 'lisp-outline-level) |
213 | 225 (make-local-variable 'comment-start) |
226 (setq comment-start ";") | |
227 (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
|
228 ;; 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
|
229 ;; 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
|
230 (setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *") |
62363
6a0ab1c93beb
(lisp-mode-variables): Set font-lock-comment-start-skip.
Richard M. Stallman <rms@gnu.org>
parents:
60874
diff
changeset
|
231 (make-local-variable 'font-lock-comment-start-skip) |
6a0ab1c93beb
(lisp-mode-variables): Set font-lock-comment-start-skip.
Richard M. Stallman <rms@gnu.org>
parents:
60874
diff
changeset
|
232 ;; Font lock mode uses this only when it KNOWS a comment is starting. |
63108
a19780959d63
(defstruct): Set 'doc-string-elt property.
Juanma Barranquero <lekktu@gmail.com>
parents:
62363
diff
changeset
|
233 (setq font-lock-comment-start-skip ";+ *") |
28994
0388cb689633
(lisp-mode-variables): Set comment-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28324
diff
changeset
|
234 (make-local-variable 'comment-add) |
0388cb689633
(lisp-mode-variables): Set comment-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28324
diff
changeset
|
235 (setq comment-add 1) ;default to `;;' in comment-region |
213 | 236 (make-local-variable 'comment-column) |
237 (setq comment-column 40) | |
54315
cad9b29a5224
(lisp-mode-variables): Set it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53922
diff
changeset
|
238 ;; Don't get confused by `;' in doc strings when paragraph-filling. |
cad9b29a5224
(lisp-mode-variables): Set it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53922
diff
changeset
|
239 (set (make-local-variable 'comment-use-global-state) t) |
12701
c50826e44362
(lisp-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
12682
diff
changeset
|
240 (make-local-variable 'imenu-generic-expression) |
27814
f2abbe1d6b47
Don't change syntax of multibyte
Kenichi Handa <handa@m17n.org>
parents:
27809
diff
changeset
|
241 (setq imenu-generic-expression lisp-imenu-generic-expression) |
f2abbe1d6b47
Don't change syntax of multibyte
Kenichi Handa <handa@m17n.org>
parents:
27809
diff
changeset
|
242 (make-local-variable 'multibyte-syntax-as-symbol) |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
243 (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
|
244 (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
|
245 (setq font-lock-defaults |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
246 '((lisp-font-lock-keywords |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
247 lisp-font-lock-keywords-1 lisp-font-lock-keywords-2) |
60738
7b87c7b7cc11
(lisp-mode-variables): Recognize `@' in function names.
Eli Zaretskii <eliz@gnu.org>
parents:
60074
diff
changeset
|
248 nil nil (("+-*/.<>=!?$%_&~^:@" . "w")) nil |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
249 (font-lock-mark-block-function . mark-defun) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
250 (font-lock-syntactic-face-function |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
251 . lisp-font-lock-syntactic-face-function)))) |
26682
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
252 |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
253 (defun lisp-outline-level () |
57098e9f96e8
(lisp-mode-variables): Change
Gerd Moellmann <gerd@gnu.org>
parents:
25723
diff
changeset
|
254 "Lisp mode `outline-level' function." |
60074
65b1f2f4ce8f
(lisp-mode-variables): Add ;;;###autoload to `outline-regexp'.
Lute Kamstra <lute@gnu.org>
parents:
59848
diff
changeset
|
255 (let ((len (- (match-end 0) (match-beginning 0)))) |
65b1f2f4ce8f
(lisp-mode-variables): Add ;;;###autoload to `outline-regexp'.
Lute Kamstra <lute@gnu.org>
parents:
59848
diff
changeset
|
256 (if (looking-at "(\\|;;;###autoload") |
65b1f2f4ce8f
(lisp-mode-variables): Add ;;;###autoload to `outline-regexp'.
Lute Kamstra <lute@gnu.org>
parents:
59848
diff
changeset
|
257 1000 |
65b1f2f4ce8f
(lisp-mode-variables): Add ;;;###autoload to `outline-regexp'.
Lute Kamstra <lute@gnu.org>
parents:
59848
diff
changeset
|
258 len))) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
259 |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
260 (defvar lisp-mode-shared-map |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
261 (let ((map (make-sparse-keymap))) |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
262 (define-key map "\e\C-q" 'indent-sexp) |
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
263 (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
|
264 ;; 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
|
265 ;; 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
|
266 ;; 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
|
267 ;;;(define-key map [backspace] 'backward-delete-char-untabify) |
33467
09da172d93be
(lisp-mode-variables):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33238
diff
changeset
|
268 map) |
213 | 269 "Keymap for commands shared by all sorts of Lisp modes.") |
270 | |
94167
3f795454be96
(lisp-comment-indent): Add WHEN to obsolescence declaration.
Juanma Barranquero <lekktu@gmail.com>
parents:
93806
diff
changeset
|
271 (defvar emacs-lisp-mode-map |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
272 (let ((map (make-sparse-keymap "Emacs-Lisp")) |
92937
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
273 (menu-map (make-sparse-keymap "Emacs-Lisp")) |
93534
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
274 (prof-map (make-sparse-keymap)) |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
275 (tracing-map (make-sparse-keymap))) |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
276 (set-keymap-parent map lisp-mode-shared-map) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
277 (define-key map "\e\t" 'lisp-complete-symbol) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
278 (define-key map "\e\C-x" 'eval-defun) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
279 (define-key map "\e\C-q" 'indent-pp-sexp) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
280 (define-key map [menu-bar emacs-lisp] (cons "Emacs-Lisp" menu-map)) |
93034
a155e008f7c7
(emacs-lisp-mode-map): Add menu entries for eldoc and ielm.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93008
diff
changeset
|
281 (define-key menu-map [eldoc] |
a155e008f7c7
(emacs-lisp-mode-map): Add menu entries for eldoc and ielm.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93008
diff
changeset
|
282 '(menu-item "Auto-Display Documentation Strings" eldoc-mode |
93326
e430e106fa7b
(emacs-lisp-mode-map): Fix predicate.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93147
diff
changeset
|
283 :button (:toggle . (bound-and-true-p eldoc-mode)) |
93034
a155e008f7c7
(emacs-lisp-mode-map): Add menu entries for eldoc and ielm.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93008
diff
changeset
|
284 :help "Display the documentation string for the item under cursor")) |
a155e008f7c7
(emacs-lisp-mode-map): Add menu entries for eldoc and ielm.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93008
diff
changeset
|
285 (define-key menu-map [checkdoc] |
a155e008f7c7
(emacs-lisp-mode-map): Add menu entries for eldoc and ielm.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93008
diff
changeset
|
286 '(menu-item "Check Documentation Strings" checkdoc |
a155e008f7c7
(emacs-lisp-mode-map): Add menu entries for eldoc and ielm.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93008
diff
changeset
|
287 :help "Check documentation strings for style requirements")) |
93534
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
288 (define-key menu-map [re-builder] |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
289 '(menu-item "Construct Regexp" re-builder |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
290 :help "Construct a regexp interactively")) |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
291 (define-key menu-map [tracing] (cons "Tracing" tracing-map)) |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
292 (define-key tracing-map [tr-a] |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
293 '(menu-item "Untrace all" untrace-all |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
294 :help "Untraces all currently traced functions")) |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
295 (define-key tracing-map [tr-uf] |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
296 '(menu-item "Untrace function..." untrace-function |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
297 :help "Untraces FUNCTION and possibly activates all remaining advice")) |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
298 (define-key tracing-map [tr-sep] '("--")) |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
299 (define-key tracing-map [tr-q] |
93806
e3bcfa0ca892
*** empty log message ***
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93534
diff
changeset
|
300 '(menu-item "Trace function quietly..." trace-function-background |
93534
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
301 :help "Trace the function with trace output going quietly to a buffer")) |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
302 (define-key tracing-map [tr-f] |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
303 '(menu-item "Trace function..." trace-function |
8bdec2731742
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93326
diff
changeset
|
304 :help "Trace the function given as a argument")) |
92937
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
305 (define-key menu-map [profiling] (cons "Profiling" prof-map)) |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
306 (define-key prof-map [prof-restall] |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
307 '(menu-item "Remove Instrumentation for All Functions" elp-restore-all |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
308 :help "Restore the original definitions of all functions being profiled")) |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
309 (define-key prof-map [prof-restfunc] |
93147
641cbad340a8
(emacs-lisp-mode-map): Add ... where
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93120
diff
changeset
|
310 '(menu-item "Remove Instrumentation for Function..." elp-restore-function |
92937
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
311 :help "Restore an instrumented function to its original definition")) |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
312 |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
313 (define-key prof-map [sep-rem] '("--")) |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
314 (define-key prof-map [prof-resall] |
93008 | 315 '(menu-item "Reset Counters for All Functions" elp-reset-all |
92937
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
316 :help "Reset the profiling information for all functions being profiled")) |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
317 (define-key prof-map [prof-resfunc] |
93147
641cbad340a8
(emacs-lisp-mode-map): Add ... where
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93120
diff
changeset
|
318 '(menu-item "Reset Counters for Function..." elp-reset-function |
92937
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
319 :help "Reset the profiling information for a function")) |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
320 (define-key prof-map [prof-res] |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
321 '(menu-item "Show Profiling Results" elp-results |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
322 :help "Display current profiling results")) |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
323 (define-key prof-map [prof-pack] |
93147
641cbad340a8
(emacs-lisp-mode-map): Add ... where
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93120
diff
changeset
|
324 '(menu-item "Instrument Package..." elp-instrument-package |
92937
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
325 :help "Instrument for profiling all function that start with a prefix")) |
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
326 (define-key prof-map [prof-func] |
93147
641cbad340a8
(emacs-lisp-mode-map): Add ... where
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93120
diff
changeset
|
327 '(menu-item "Instrument Function..." elp-instrument-function |
92937
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
328 :help "Instrument a function for profiling")) |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
329 (define-key menu-map [edebug-defun] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
330 '(menu-item "Instrument Function for Debugging" edebug-defun |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
331 :help "Evaluate the top level form point is in, stepping through with Edebug" |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
332 :keys "C-u C-M-x")) |
92937
9b852833cd26
(emacs-lisp-mode-map): Add menu entries
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92736
diff
changeset
|
333 (define-key menu-map [separator-byte] '("--")) |
93120
ade33d67202c
(emacs-lisp-mode-map): Add menu entry for disassemble.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93034
diff
changeset
|
334 (define-key menu-map [disas] |
93147
641cbad340a8
(emacs-lisp-mode-map): Add ... where
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93120
diff
changeset
|
335 '(menu-item "Disassemble byte compiled object..." disassemble |
93120
ade33d67202c
(emacs-lisp-mode-map): Add menu entry for disassemble.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93034
diff
changeset
|
336 :help "Print disassembled code for OBJECT in a buffer")) |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
337 (define-key menu-map [byte-recompile] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
338 '(menu-item "Byte-recompile Directory..." byte-recompile-directory |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
339 :help "Recompile every `.el' file in DIRECTORY that needs recompilation")) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
340 (define-key menu-map [emacs-byte-compile-and-load] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
341 '(menu-item "Byte-compile And Load" emacs-lisp-byte-compile-and-load |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
342 :help "Byte-compile the current file (if it has changed), then load compiled code")) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
343 (define-key menu-map [byte-compile] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
344 '(menu-item "Byte-compile This File" emacs-lisp-byte-compile |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
345 :help "Byte compile the file containing the current buffer")) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
346 (define-key menu-map [separator-eval] '("--")) |
93034
a155e008f7c7
(emacs-lisp-mode-map): Add menu entries for eldoc and ielm.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93008
diff
changeset
|
347 (define-key menu-map [ielm] |
a155e008f7c7
(emacs-lisp-mode-map): Add menu entries for eldoc and ielm.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93008
diff
changeset
|
348 '(menu-item "Interactive Expression Evaluation" ielm |
a155e008f7c7
(emacs-lisp-mode-map): Add menu entries for eldoc and ielm.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93008
diff
changeset
|
349 :help "Interactively evaluate Emacs Lisp expressions")) |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
350 (define-key menu-map [eval-buffer] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
351 '(menu-item "Evaluate Buffer" eval-buffer |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
352 :help "Execute the current buffer as Lisp code")) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
353 (define-key menu-map [eval-region] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
354 '(menu-item "Evaluate Region" eval-region |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
355 :help "Execute the region as Lisp code" |
92534
cdc0b4ed6c22
* emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Bugfix: replaced
Bastien Guerry <bzg@altern.org>
parents:
92493
diff
changeset
|
356 :enable mark-active)) |
94167
3f795454be96
(lisp-comment-indent): Add WHEN to obsolescence declaration.
Juanma Barranquero <lekktu@gmail.com>
parents:
93806
diff
changeset
|
357 (define-key menu-map [eval-sexp] |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
358 '(menu-item "Evaluate Last S-expression" eval-last-sexp |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
359 :help "Evaluate sexp before point; print value in minibuffer")) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
360 (define-key menu-map [separator-format] '("--")) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
361 (define-key menu-map [comment-region] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
362 '(menu-item "Comment Out Region" comment-region |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
363 :help "Comment or uncomment each line in the region" |
92534
cdc0b4ed6c22
* emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Bugfix: replaced
Bastien Guerry <bzg@altern.org>
parents:
92493
diff
changeset
|
364 :enable mark-active)) |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
365 (define-key menu-map [indent-region] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
366 '(menu-item "Indent Region" indent-region |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
367 :help "Indent each nonblank line in the region" |
92534
cdc0b4ed6c22
* emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Bugfix: replaced
Bastien Guerry <bzg@altern.org>
parents:
92493
diff
changeset
|
368 :enable mark-active)) |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
369 (define-key menu-map [indent-line] '("Indent Line" . lisp-indent-line)) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
370 map) |
213 | 371 "Keymap for Emacs Lisp mode. |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
372 All commands in `lisp-mode-shared-map' are inherited by this map.") |
213 | 373 |
12035
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
374 (defun emacs-lisp-byte-compile () |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
375 "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
|
376 (interactive) |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
377 (if buffer-file-name |
c3747e64cff0
(emacs-lisp-mode-map): Add a menu.
Karl Heuer <kwzh@gnu.org>
parents:
10968
diff
changeset
|
378 (byte-compile-file buffer-file-name) |
14116
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
379 (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
|
380 |
14719
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
381 (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
|
382 "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
|
383 (interactive) |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
384 (or buffer-file-name |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
385 (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
|
386 (require 'bytecomp) |
5f985037b64f
(emacs-lisp-byte-compile): Fix error message.
Karl Heuer <kwzh@gnu.org>
parents:
13802
diff
changeset
|
387 ;; 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
|
388 (if (and (buffer-modified-p) |
27809 | 389 (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
|
390 (save-buffer)) |
d477c6f756df
Save if reqd in emacs-lisp-byte-compile-and-load.
Simon Marshall <simon@gnu.org>
parents:
14628
diff
changeset
|
391 (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
|
392 (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
|
393 (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
|
394 (byte-compile-file buffer-file-name t)))) |
213 | 395 |
25630
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
396 (defcustom emacs-lisp-mode-hook nil |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
397 "Hook run when entering Emacs Lisp mode." |
27809 | 398 :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
|
399 :type 'hook |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
400 :group 'lisp) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
401 |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
402 (defcustom lisp-mode-hook nil |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
403 "Hook run when entering Lisp mode." |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
404 :options '(imenu-add-menubar-index) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
405 :type 'hook |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
406 :group 'lisp) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
407 |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
408 (defcustom lisp-interaction-mode-hook nil |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
409 "Hook run when entering Lisp Interaction mode." |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
410 :options '(turn-on-eldoc-mode) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
411 :type 'hook |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
412 :group 'lisp) |
4feb8ce584a5
(lisp-imenu-generic-expression): Recognize define-widget.
Dave Love <fx@gnu.org>
parents:
25434
diff
changeset
|
413 |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
414 (defun emacs-lisp-mode () |
213 | 415 "Major mode for editing Lisp code to run in Emacs. |
416 Commands: | |
417 Delete converts tabs to spaces as it moves back. | |
418 Blank lines separate paragraphs. Semicolons start comments. | |
419 \\{emacs-lisp-mode-map} | |
420 Entry to this mode calls the value of `emacs-lisp-mode-hook' | |
421 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
|
422 (interactive) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
423 (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
|
424 (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
|
425 (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
|
426 (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
|
427 (setq mode-name "Emacs-Lisp") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
428 (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
|
429 (setq imenu-case-fold-search nil) |
51981
e363b422bcd4
(emacs-lisp-mode): Use run-mode-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
51439
diff
changeset
|
430 (run-mode-hooks 'emacs-lisp-mode-hook)) |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
431 (put 'emacs-lisp-mode 'custom-mode-group 'lisp) |
213 | 432 |
27809 | 433 (defvar lisp-mode-map |
434 (let ((map (make-sparse-keymap))) | |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
435 (set-keymap-parent map lisp-mode-shared-map) |
27809 | 436 (define-key map "\e\C-x" 'lisp-eval-defun) |
437 (define-key map "\C-c\C-z" 'run-lisp) | |
438 map) | |
213 | 439 "Keymap for ordinary Lisp mode. |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
440 All commands in `lisp-mode-shared-map' are inherited by this map.") |
213 | 441 |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
442 (defun lisp-mode () |
213 | 443 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp. |
444 Commands: | |
445 Delete converts tabs to spaces as it moves back. | |
446 Blank lines separate paragraphs. Semicolons start comments. | |
447 \\{lisp-mode-map} | |
448 Note that `run-lisp' may be used either to start an inferior Lisp job | |
449 or to switch back to an existing one. | |
450 | |
451 Entry to this mode calls the value of `lisp-mode-hook' | |
452 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
|
453 (interactive) |
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
454 (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
|
455 (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
|
456 (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
|
457 (setq mode-name "Lisp") |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
458 (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
|
459 (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
|
460 (setq comment-start-skip |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
461 "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\)\\(;+\\|#|\\) *") |
41332
15d7e3180dcf
(lisp-mode, emacs-lisp-mode): Don't use define-derived-mode.
Richard M. Stallman <rms@gnu.org>
parents:
41310
diff
changeset
|
462 (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
|
463 (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
|
464 (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
|
465 (set-syntax-table lisp-mode-syntax-table) |
51981
e363b422bcd4
(emacs-lisp-mode): Use run-mode-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
51439
diff
changeset
|
466 (run-mode-hooks 'lisp-mode-hook)) |
55773
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
467 (put 'lisp-mode 'find-tag-default-function 'lisp-find-tag-default) |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
468 |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
469 (defun lisp-find-tag-default () |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
470 (let ((default (find-tag-default))) |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
471 (when (stringp default) |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
472 (if (string-match ":+" default) |
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
parents:
55521
diff
changeset
|
473 (substring default (match-end 0)) |
56829 | 474 default)))) |
213 | 475 |
52288 | 476 ;; Used in old LispM code. |
477 (defalias 'common-lisp-mode 'lisp-mode) | |
478 | |
28324
979a905864ab
(lisp-eval-defun): Make arglist compatible with inf-lisp version.
Dave Love <fx@gnu.org>
parents:
27934
diff
changeset
|
479 ;; 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
|
480 (defun lisp-eval-defun (&optional and-go) |
213 | 481 "Send the current defun to the Lisp process made by \\[run-lisp]." |
482 (interactive) | |
483 (error "Process lisp does not exist")) | |
484 | |
27809 | 485 (defvar lisp-interaction-mode-map |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
486 (let ((map (make-sparse-keymap)) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
487 (menu-map (make-sparse-keymap "Lisp-Interaction"))) |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
488 (set-keymap-parent map lisp-mode-shared-map) |
27809 | 489 (define-key map "\e\C-x" 'eval-defun) |
55805
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
490 (define-key map "\e\C-q" 'indent-pp-sexp) |
27809 | 491 (define-key map "\e\t" 'lisp-complete-symbol) |
492 (define-key map "\n" 'eval-print-last-sexp) | |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
493 (define-key map [menu-bar lisp-interaction] (cons "Lisp-Interaction" menu-map)) |
94167
3f795454be96
(lisp-comment-indent): Add WHEN to obsolescence declaration.
Juanma Barranquero <lekktu@gmail.com>
parents:
93806
diff
changeset
|
494 (define-key menu-map [eval-defun] |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
495 '(menu-item "Evaluate Defun" eval-defun |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
496 :help "Evaluate the top-level form containing point, or after point")) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
497 (define-key menu-map [eval-print-last-sexp] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
498 '(menu-item "Evaluate and print" eval-print-last-sexp |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
499 :help "Evaluate sexp before point; print value into current buffer")) |
92736
48d82b59381a
(lisp-interaction-mode-map): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92534
diff
changeset
|
500 (define-key menu-map [edebug-defun-lisp-interaction] |
92493
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
501 '(menu-item "Instrument Function for Debugging" edebug-defun |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
502 :help "Evaluate the top level form point is in, stepping through with Edebug" |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
503 :keys "C-u C-M-x")) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
504 (define-key menu-map [indent-pp-sexp] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
505 '(menu-item "Indent or Pretty-Print" indent-pp-sexp |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
506 :help "Indent each line of the list starting just after point, or prettyprint it")) |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
507 (define-key menu-map [lisp-complete-symbol] |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
508 '(menu-item "Complete Lisp Symbol" lisp-complete-symbol |
402ee2cfca27
* bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
509 :help "Perform completion on Lisp symbol preceding point")) |
27809 | 510 map) |
23738
2ef2813414b6
(lisp-interaction-mode-map): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
23723
diff
changeset
|
511 "Keymap for Lisp Interaction mode. |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
512 All commands in `lisp-mode-shared-map' are inherited by this map.") |
213 | 513 |
41512
4f4835967793
(lisp-mode-variables): Set syntax-begin-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41509
diff
changeset
|
514 (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
|
515 (define-derived-mode lisp-interaction-mode emacs-lisp-mode "Lisp Interaction" |
213 | 516 "Major mode for typing and evaluating Lisp forms. |
517 Like Lisp mode except that \\[eval-print-last-sexp] evals the Lisp expression | |
518 before point, and prints its value into the buffer, advancing point. | |
41085 | 519 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
|
520 and `eval-expression-print-level'. |
213 | 521 |
522 Commands: | |
523 Delete converts tabs to spaces as it moves back. | |
524 Paragraphs are separated only by blank lines. | |
525 Semicolons start comments. | |
526 \\{lisp-interaction-mode-map} | |
527 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
|
528 if that value is non-nil.") |
213 | 529 |
248 | 530 (defun eval-print-last-sexp () |
38560
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
531 "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
|
532 |
69851
169719af1b5e
(eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
68648
diff
changeset
|
533 If `eval-expression-debug-on-error' is non-nil, which is the default, |
169719af1b5e
(eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
68648
diff
changeset
|
534 this command arranges for all errors to enter the debugger. |
169719af1b5e
(eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
68648
diff
changeset
|
535 |
38560
df8cff64f0f3
(eval-print-last-sexp, eval-defun):
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
536 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
|
537 `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
|
538 which see." |
248 | 539 (interactive) |
422 | 540 (let ((standard-output (current-buffer))) |
541 (terpri) | |
542 (eval-last-sexp t) | |
543 (terpri))) | |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
544 |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
545 |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
546 (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
|
547 "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
|
548 BEG and END are the start and end of the output in current-buffer. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49522
diff
changeset
|
549 VALUE is the Lisp value printed, ALT1 and ALT2 are strings for the |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
550 alternative printed representations that can be displayed." |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
551 (let ((map (make-sparse-keymap))) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
552 (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
|
553 (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
|
554 (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
|
555 (add-text-properties |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49522
diff
changeset
|
556 beg end |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
557 `(printed-value (,value ,alt1 ,alt2) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49522
diff
changeset
|
558 mouse-face highlight |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
559 keymap ,map |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
560 help-echo "RET, mouse-2: toggle abbreviated display" |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
561 rear-nonsticky (mouse-face keymap help-echo |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
562 printed-value))))) |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
563 |
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
564 |
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
565 (defun last-sexp-toggle-display (&optional arg) |
38585
f2c0f6df43ab
(last-sexp-setup-props): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38578
diff
changeset
|
566 "Toggle between abbreviated and unabbreviated printed representations." |
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
567 (interactive "P") |
51290
0e0d3c3dca7f
(last-sexp-toggle-display):
Richard M. Stallman <rms@gnu.org>
parents:
51261
diff
changeset
|
568 (save-restriction |
0e0d3c3dca7f
(last-sexp-toggle-display):
Richard M. Stallman <rms@gnu.org>
parents:
51261
diff
changeset
|
569 (widen) |
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
570 (let ((value (get-text-property (point) 'printed-value))) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
571 (when value |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
572 (let ((beg (or (previous-single-property-change (min (point-max) (1+ (point))) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
573 'printed-value) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
574 (point))) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
575 (end (or (next-single-char-property-change (point) 'printed-value) (point))) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
576 (standard-output (current-buffer)) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
577 (point (point))) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
578 (delete-region beg end) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
579 (insert (nth 1 value)) |
75302
45c72f1f789d
(last-sexp-toggle-display): Fixed cursor position when toggle abbreviated
Eli Zaretskii <eliz@gnu.org>
parents:
71626
diff
changeset
|
580 (or (= beg point) |
45c72f1f789d
(last-sexp-toggle-display): Fixed cursor position when toggle abbreviated
Eli Zaretskii <eliz@gnu.org>
parents:
71626
diff
changeset
|
581 (setq point (1- (point)))) |
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
582 (last-sexp-setup-props beg (point) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
583 (nth 0 value) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
584 (nth 2 value) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
585 (nth 1 value)) |
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
parents:
50463
diff
changeset
|
586 (goto-char (min (point-max) point))))))) |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
587 |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
588 (defun prin1-char (char) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
589 "Return a string representing CHAR as a character rather than as an integer. |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
590 If CHAR is not a character, return nil." |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
591 (and (integerp char) |
55521
ea0f46cadeb2
(prin1-char): Use eventp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54501
diff
changeset
|
592 (eventp char) |
56825
dcd7b1b4690d
(prin1-char): Put `shift' modifier into the basic character,
Richard M. Stallman <rms@gnu.org>
parents:
56686
diff
changeset
|
593 (let ((c (event-basic-type char)) |
56840
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
594 (mods (event-modifiers char)) |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
595 string) |
56825
dcd7b1b4690d
(prin1-char): Put `shift' modifier into the basic character,
Richard M. Stallman <rms@gnu.org>
parents:
56686
diff
changeset
|
596 ;; Prevent ?A from turning into ?\S-a. |
dcd7b1b4690d
(prin1-char): Put `shift' modifier into the basic character,
Richard M. Stallman <rms@gnu.org>
parents:
56686
diff
changeset
|
597 (if (and (memq 'shift mods) |
56840
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
598 (zerop (logand char ?\S-\^@)) |
56825
dcd7b1b4690d
(prin1-char): Put `shift' modifier into the basic character,
Richard M. Stallman <rms@gnu.org>
parents:
56686
diff
changeset
|
599 (not (let ((case-fold-search nil)) |
dcd7b1b4690d
(prin1-char): Put `shift' modifier into the basic character,
Richard M. Stallman <rms@gnu.org>
parents:
56686
diff
changeset
|
600 (char-equal c (upcase c))))) |
dcd7b1b4690d
(prin1-char): Put `shift' modifier into the basic character,
Richard M. Stallman <rms@gnu.org>
parents:
56686
diff
changeset
|
601 (setq c (upcase c) mods nil)) |
56840
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
602 ;; What string are we considering using? |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
603 (condition-case nil |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
604 (setq string |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
605 (concat |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
606 "?" |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
607 (mapconcat |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
608 (lambda (modif) |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
609 (cond ((eq modif 'super) "\\s-") |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
610 (t (string ?\\ (upcase (aref (symbol-name modif) 0)) ?-)))) |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
611 mods "") |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
612 (cond |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
613 ((memq c '(?\; ?\( ?\) ?\{ ?\} ?\[ ?\] ?\" ?\' ?\\)) (string ?\\ c)) |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
614 ((eq c 127) "\\C-?") |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
615 (t |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
616 (string c))))) |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
617 (error nil)) |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
618 ;; Verify the string reads a CHAR, not to some other character. |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
619 ;; If it doesn't, return nil instead. |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
620 (and string |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
621 (= (car (read-from-string string)) char) |
14c8ead25d14
(prin1-char): Don't turn S-a into A.
Richard M. Stallman <rms@gnu.org>
parents:
56829
diff
changeset
|
622 string)))) |
56996
5418c6e288fc
(define-compilation-mode): Specify `doc-string-elt' property.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
56840
diff
changeset
|
623 |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
624 |
78597
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
625 (defun preceding-sexp () |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
626 "Return sexp before the point." |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
627 (let ((opoint (point)) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
628 ignore-quotes |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
629 expr) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
630 (save-excursion |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
631 (with-syntax-table emacs-lisp-mode-syntax-table |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
632 ;; If this sexp appears to be enclosed in `...' |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
633 ;; then ignore the surrounding quotes. |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
634 (setq ignore-quotes |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
635 (or (eq (following-char) ?\') |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
636 (eq (preceding-char) ?\'))) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
637 (forward-sexp -1) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
638 ;; If we were after `?\e' (or similar case), |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
639 ;; use the whole thing, not just the `e'. |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
640 (when (eq (preceding-char) ?\\) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
641 (forward-char -1) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
642 (when (eq (preceding-char) ??) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
643 (forward-char -1))) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
644 |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
645 ;; Skip over `#N='s. |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
646 (when (eq (preceding-char) ?=) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
647 (let (labeled-p) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
648 (save-excursion |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
649 (skip-chars-backward "0-9#=") |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
650 (setq labeled-p (looking-at "\\(#[0-9]+=\\)+"))) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
651 (when labeled-p |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
652 (forward-sexp -1)))) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
653 |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
654 (save-restriction |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
655 ;; vladimir@cs.ualberta.ca 30-Jul-1997: skip ` in |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
656 ;; `variable' so that the value is returned, not the |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
657 ;; name |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
658 (if (and ignore-quotes |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
659 (eq (following-char) ?`)) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
660 (forward-char)) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
661 (narrow-to-region (point-min) opoint) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
662 (setq expr (read (current-buffer))) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
663 ;; If it's an (interactive ...) form, it's more |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
664 ;; useful to show how an interactive call would |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
665 ;; use it. |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
666 (and (consp expr) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
667 (eq (car expr) 'interactive) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
668 (setq expr |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
669 (list 'call-interactively |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
670 (list 'quote |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
671 (list 'lambda |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
672 '(&rest args) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
673 expr |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
674 'args))))) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
675 expr))))) |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
676 |
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
677 |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
678 (defun eval-last-sexp-1 (eval-last-sexp-arg-internal) |
213 | 679 "Evaluate sexp before point; print value in minibuffer. |
680 With argument, print output into current buffer." | |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
681 (let ((standard-output (if eval-last-sexp-arg-internal (current-buffer) t))) |
78597
06f0300fda43
preceding-sexp
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
78217
diff
changeset
|
682 (eval-last-sexp-print-value (eval (preceding-sexp))))) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
683 |
52208
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
684 |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
685 (defun eval-last-sexp-print-value (value) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
686 (let ((unabbreviated (let ((print-length nil) (print-level nil)) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
687 (prin1-to-string value))) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
688 (print-length eval-expression-print-length) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
689 (print-level eval-expression-print-level) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
690 (beg (point)) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
691 end) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
692 (prog1 |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
693 (prin1 value) |
55829
fcd2e17daffa
(prin1-char): Catch errors from `string'.
Richard M. Stallman <rms@gnu.org>
parents:
55805
diff
changeset
|
694 (let ((str (eval-expression-print-format value))) |
fcd2e17daffa
(prin1-char): Catch errors from `string'.
Richard M. Stallman <rms@gnu.org>
parents:
55805
diff
changeset
|
695 (if str (princ str))) |
52208
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
696 (setq end (point)) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
697 (when (and (bufferp standard-output) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
698 (or (not (null print-length)) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
699 (not (null print-level))) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
700 (not (string= unabbreviated |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
701 (buffer-substring-no-properties beg end)))) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
702 (last-sexp-setup-props beg end value |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
703 unabbreviated |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
704 (buffer-substring-no-properties beg end)) |
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
parents:
51981
diff
changeset
|
705 )))) |
38572
107f826252d2
(last-sexp-print): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
38566
diff
changeset
|
706 |
213 | 707 |
56686
c28ce21eb5ae
(eval-last-sexp): Don't cons a new symbol each time.
Richard M. Stallman <rms@gnu.org>
parents:
56003
diff
changeset
|
708 (defvar eval-last-sexp-fake-value (make-symbol "t")) |
c28ce21eb5ae
(eval-last-sexp): Don't cons a new symbol each time.
Richard M. Stallman <rms@gnu.org>
parents:
56003
diff
changeset
|
709 |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
710 (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
|
711 "Evaluate sexp before point; print value in minibuffer. |
69851
169719af1b5e
(eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
68648
diff
changeset
|
712 Interactively, with prefix argument, print output into current buffer. |
169719af1b5e
(eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
68648
diff
changeset
|
713 |
169719af1b5e
(eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
68648
diff
changeset
|
714 If `eval-expression-debug-on-error' is non-nil, which is the default, |
169719af1b5e
(eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
68648
diff
changeset
|
715 this command arranges for all errors to enter the debugger." |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
716 (interactive "P") |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
717 (if (null eval-expression-debug-on-error) |
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
718 (eval-last-sexp-1 eval-last-sexp-arg-internal) |
78073
36ddacf0d44b
(eval-last-sexp): Avoid introducing any
Andreas Schwab <schwab@suse.de>
parents:
76880
diff
changeset
|
719 (let ((value |
36ddacf0d44b
(eval-last-sexp): Avoid introducing any
Andreas Schwab <schwab@suse.de>
parents:
76880
diff
changeset
|
720 (let ((debug-on-error eval-last-sexp-fake-value)) |
36ddacf0d44b
(eval-last-sexp): Avoid introducing any
Andreas Schwab <schwab@suse.de>
parents:
76880
diff
changeset
|
721 (cons (eval-last-sexp-1 eval-last-sexp-arg-internal) |
36ddacf0d44b
(eval-last-sexp): Avoid introducing any
Andreas Schwab <schwab@suse.de>
parents:
76880
diff
changeset
|
722 debug-on-error)))) |
36ddacf0d44b
(eval-last-sexp): Avoid introducing any
Andreas Schwab <schwab@suse.de>
parents:
76880
diff
changeset
|
723 (unless (eq (cdr value) eval-last-sexp-fake-value) |
36ddacf0d44b
(eval-last-sexp): Avoid introducing any
Andreas Schwab <schwab@suse.de>
parents:
76880
diff
changeset
|
724 (setq debug-on-error (cdr value))) |
36ddacf0d44b
(eval-last-sexp): Avoid introducing any
Andreas Schwab <schwab@suse.de>
parents:
76880
diff
changeset
|
725 (car value)))) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
726 |
25434
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
727 (defun eval-defun-1 (form) |
56003
9650d55ad73d
(eval-defun-1): Add `defface'. Fix docstring.
Juri Linkov <juri@jurta.org>
parents:
55829
diff
changeset
|
728 "Treat some expressions specially. |
9650d55ad73d
(eval-defun-1): Add `defface'. Fix docstring.
Juri Linkov <juri@jurta.org>
parents:
55829
diff
changeset
|
729 Reset the `defvar' and `defcustom' variables to the initial value. |
9650d55ad73d
(eval-defun-1): Add `defface'. Fix docstring.
Juri Linkov <juri@jurta.org>
parents:
55829
diff
changeset
|
730 Reinitialize the face according to the `defface' specification." |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
731 ;; 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
|
732 ;; 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
|
733 (cond ((not (listp form)) |
103ed59cfd30
(eval-defun-1): Cope with atoms as args.
Richard M. Stallman <rms@gnu.org>
parents:
41812
diff
changeset
|
734 form) |
103ed59cfd30
(eval-defun-1): Cope with atoms as args.
Richard M. Stallman <rms@gnu.org>
parents:
41812
diff
changeset
|
735 ((and (eq (car form) 'defvar) |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
736 (cdr-safe (cdr-safe form)) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
737 (boundp (cadr form))) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
738 ;; Force variable to be re-set. |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
739 `(progn (defvar ,(nth 1 form) nil ,@(nthcdr 3 form)) |
59755
c4bcae7d90b4
(eval-defun-1): Make sure `defvar' always sets the default value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59571
diff
changeset
|
740 (setq-default ,(nth 1 form) ,(nth 2 form)))) |
28324
979a905864ab
(lisp-eval-defun): Make arglist compatible with inf-lisp version.
Dave Love <fx@gnu.org>
parents:
27934
diff
changeset
|
741 ;; `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
|
742 ;; `custom-declare-variable' with a quoted value arg. |
27809 | 743 ((and (eq (car form) 'custom-declare-variable) |
744 (default-boundp (eval (nth 1 form)))) | |
25434
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
745 ;; 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
|
746 (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
|
747 form) |
56003
9650d55ad73d
(eval-defun-1): Add `defface'. Fix docstring.
Juri Linkov <juri@jurta.org>
parents:
55829
diff
changeset
|
748 ;; `defface' is macroexpanded to `custom-declare-face'. |
9650d55ad73d
(eval-defun-1): Add `defface'. Fix docstring.
Juri Linkov <juri@jurta.org>
parents:
55829
diff
changeset
|
749 ((eq (car form) 'custom-declare-face) |
9650d55ad73d
(eval-defun-1): Add `defface'. Fix docstring.
Juri Linkov <juri@jurta.org>
parents:
55829
diff
changeset
|
750 ;; Reset the face. |
9650d55ad73d
(eval-defun-1): Add `defface'. Fix docstring.
Juri Linkov <juri@jurta.org>
parents:
55829
diff
changeset
|
751 (setq face-new-frame-defaults |
9650d55ad73d
(eval-defun-1): Add `defface'. Fix docstring.
Juri Linkov <juri@jurta.org>
parents:
55829
diff
changeset
|
752 (assq-delete-all (eval (nth 1 form)) face-new-frame-defaults)) |
63638 | 753 (put (eval (nth 1 form)) 'face-defface-spec nil) |
754 ;; Setting `customized-face' to the new spec after calling | |
755 ;; the form, but preserving the old saved spec in `saved-face', | |
756 ;; imitates the situation when the new face spec is set | |
757 ;; temporarily for the current session in the customize | |
758 ;; buffer, thus allowing `face-user-default-spec' to use the | |
759 ;; new customized spec instead of the saved spec. | |
760 ;; Resetting `saved-face' temporarily to nil is needed to let | |
761 ;; `defface' change the spec, regardless of a saved spec. | |
762 (prog1 `(prog1 ,form | |
63988
7f1acc9f0399
(eval-defun-1): Remove unnecessary quotes.
Juri Linkov <juri@jurta.org>
parents:
63764
diff
changeset
|
763 (put ,(nth 1 form) 'saved-face |
63638 | 764 ',(get (eval (nth 1 form)) 'saved-face)) |
63988
7f1acc9f0399
(eval-defun-1): Remove unnecessary quotes.
Juri Linkov <juri@jurta.org>
parents:
63764
diff
changeset
|
765 (put ,(nth 1 form) 'customized-face |
7f1acc9f0399
(eval-defun-1): Remove unnecessary quotes.
Juri Linkov <juri@jurta.org>
parents:
63764
diff
changeset
|
766 ,(nth 2 form))) |
63638 | 767 (put (eval (nth 1 form)) 'saved-face nil))) |
25434
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
768 ((eq (car form) 'progn) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
769 (cons 'progn (mapcar 'eval-defun-1 (cdr form)))) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
770 (t form))) |
9a7891b32d1a
(eval-defun): Expand macros,
Richard M. Stallman <rms@gnu.org>
parents:
25109
diff
changeset
|
771 |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
772 (defun eval-defun-2 () |
248 | 773 "Evaluate defun that point is in or before. |
24895 | 774 The value is displayed in the minibuffer. |
775 If the current defun is actually a call to `defvar', | |
776 then reset the variable using the initial value expression | |
777 even if the variable already has some other value. | |
778 \(Normally `defvar' does not change the variable's value | |
779 if it already has a value.\) | |
780 | |
23388
8aa1f99efb66
(eval-defun): Return the evaluation result.
Karl Heuer <kwzh@gnu.org>
parents:
23191
diff
changeset
|
781 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
|
782 Return the result of evaluation." |
213 | 783 (interactive "P") |
94187
72eb648a4690
* emacs-lisp/lisp-mode.el (lisp-mode-auto-fill): Make it an alias.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94167
diff
changeset
|
784 ;; FIXME: the print-length/level bindings should only be applied while |
72eb648a4690
* emacs-lisp/lisp-mode.el (lisp-mode-auto-fill): Make it an alias.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94167
diff
changeset
|
785 ;; printing, not while evaluating. |
25703
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
786 (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
|
787 (print-length eval-expression-print-length) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
788 (print-level eval-expression-print-level)) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
789 (save-excursion |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
790 ;; 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
|
791 ;; 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
|
792 ;; variable. Re-written using `apply' to avoid capturing |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
793 ;; variables like `end'. |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
794 (apply |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
795 #'eval-region |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
796 (let ((standard-output t) |
25703
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
797 beg end form) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
798 ;; 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
|
799 (save-excursion |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
800 (end-of-defun) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
801 (beginning-of-defun) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
802 (setq beg (point)) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
803 (setq form (read (current-buffer))) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
804 (setq end (point))) |
56003
9650d55ad73d
(eval-defun-1): Add `defface'. Fix docstring.
Juri Linkov <juri@jurta.org>
parents:
55829
diff
changeset
|
805 ;; Alter the form if necessary. |
25703
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
806 (setq form (eval-defun-1 (macroexpand form))) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
807 (list beg end standard-output |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
808 `(lambda (ignore) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
809 ;; Skipping to the end of the specified region |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
810 ;; will make eval-region return. |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
811 (goto-char ,end) |
00b4eac00979
(eval-defun, eval-last-sexp):
Richard M. Stallman <rms@gnu.org>
parents:
25642
diff
changeset
|
812 ',form)))))) |
25107 | 813 ;; The result of evaluation has been put onto VALUES. So return it. |
814 (car values)) | |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
815 |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
816 (defun eval-defun (edebug-it) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
817 "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
|
818 |
40409 | 819 If the current defun is actually a call to `defvar' or `defcustom', |
820 evaluating it this way resets the variable using its initial value | |
821 expression even if the variable already has some other value. | |
822 \(Normally `defvar' and `defcustom' do not alter the value if there | |
78096
8e308ce2d884
(eval-defun): Explain special handling of `defface'.
Richard M. Stallman <rms@gnu.org>
parents:
78073
diff
changeset
|
823 already is one.) In an analogous way, evaluating a `defface' |
8e308ce2d884
(eval-defun): Explain special handling of `defface'.
Richard M. Stallman <rms@gnu.org>
parents:
78073
diff
changeset
|
824 overrides any customizations of the face, so that it becomes |
8e308ce2d884
(eval-defun): Explain special handling of `defface'.
Richard M. Stallman <rms@gnu.org>
parents:
78073
diff
changeset
|
825 defined exactly as the `defface' expression says. |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
826 |
69851
169719af1b5e
(eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
68648
diff
changeset
|
827 If `eval-expression-debug-on-error' is non-nil, which is the default, |
169719af1b5e
(eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
68648
diff
changeset
|
828 this command arranges for all errors to enter the debugger. |
169719af1b5e
(eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
68648
diff
changeset
|
829 |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
830 With a prefix argument, instrument the code for Edebug. |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
831 |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
832 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
|
833 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
|
834 instrumented, just FUNCTION is printed. |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
835 |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
836 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
|
837 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
|
838 `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
|
839 which see." |
27303
6af9b684a1a0
(eval-last-sexp-1): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27300
diff
changeset
|
840 (interactive "P") |
30055
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
841 (cond (edebug-it |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
842 (require 'edebug) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
843 (eval-defun (not edebug-all-defs))) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
844 (t |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
845 (if (null eval-expression-debug-on-error) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
846 (eval-defun-2) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
847 (let ((old-value (make-symbol "t")) new-value value) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
848 (let ((debug-on-error old-value)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
849 (setq value (eval-defun-2)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
850 (setq new-value debug-on-error)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
851 (unless (eq old-value new-value) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
852 (setq debug-on-error new-value)) |
16e560dd4ab8
(eval-defun-2): Remove parameter
Gerd Moellmann <gerd@gnu.org>
parents:
28994
diff
changeset
|
853 value))))) |
66747
d7776140d845
(lisp-mode-variables): Don't set comment-indent-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66404
diff
changeset
|
854 |
d7776140d845
(lisp-mode-variables): Don't set comment-indent-function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66404
diff
changeset
|
855 ;; May still be used by some external Lisp-mode variant. |
94167
3f795454be96
(lisp-comment-indent): Add WHEN to obsolescence declaration.
Juanma Barranquero <lekktu@gmail.com>
parents:
93806
diff
changeset
|
856 (define-obsolete-function-alias 'lisp-comment-indent |
3f795454be96
(lisp-comment-indent): Add WHEN to obsolescence declaration.
Juanma Barranquero <lekktu@gmail.com>
parents:
93806
diff
changeset
|
857 'comment-indent-default "22.1") |
94187
72eb648a4690
* emacs-lisp/lisp-mode.el (lisp-mode-auto-fill): Make it an alias.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94167
diff
changeset
|
858 (define-obsolete-function-alias 'lisp-mode-auto-fill 'do-auto-fill "23.1") |
20333
3627bd4b83d9
(lisp-mode-auto-fill): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20013
diff
changeset
|
859 |
78730
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
860 (defcustom lisp-indent-offset nil |
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
861 "If non-nil, indent second line of expressions that many more columns." |
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
862 :group 'lisp |
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
863 :type '(choice nil integer)) |
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
864 (put 'lisp-body-indent 'safe-local-variable |
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
865 (lambda (x) (or (null x) (integerp x)))) |
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
866 |
27809 | 867 (defvar lisp-indent-function 'lisp-indent-function) |
213 | 868 |
869 (defun lisp-indent-line (&optional whole-exp) | |
870 "Indent current line as Lisp code. | |
871 With argument, indent any additional lines of the same expression | |
872 rigidly along with this one." | |
873 (interactive "P") | |
39564
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
874 (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
|
875 (pos (- (point-max) (point))) |
0e059993ad95
(lisp-imenu-generic-expression): Use regexp-opt.
Gerd Moellmann <gerd@gnu.org>
parents:
38585
diff
changeset
|
876 (beg (progn (beginning-of-line) (point)))) |
213 | 877 (skip-chars-forward " \t") |
17308
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
878 (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
|
879 ;; 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
|
880 ;; or a line that starts in a string. |
677
7a9b4ea68565
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
659
diff
changeset
|
881 (goto-char (- (point-max) pos)) |
213 | 882 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<"))) |
883 ;; Single-semicolon comment lines should be indented | |
884 ;; as comment lines, not as code. | |
885 (progn (indent-for-comment) (forward-char -1)) | |
886 (if (listp indent) (setq indent (car indent))) | |
887 (setq shift-amt (- indent (current-column))) | |
888 (if (zerop shift-amt) | |
889 nil | |
890 (delete-region beg (point)) | |
891 (indent-to indent))) | |
892 ;; If initial point was within line's indentation, | |
893 ;; position after the indentation. Else stay at same point in text. | |
894 (if (> (- (point-max) pos) (point)) | |
895 (goto-char (- (point-max) pos))) | |
896 ;; If desired, shift remaining lines of expression the same amount. | |
897 (and whole-exp (not (zerop shift-amt)) | |
898 (save-excursion | |
899 (goto-char beg) | |
900 (forward-sexp 1) | |
901 (setq end (point)) | |
902 (goto-char beg) | |
903 (forward-line 1) | |
904 (setq beg (point)) | |
905 (> end beg)) | |
906 (indent-code-rigidly beg end shift-amt))))) | |
907 | |
9424
738999b0296f
Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
9423
diff
changeset
|
908 (defvar calculate-lisp-indent-last-sexp) |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
909 |
213 | 910 (defun calculate-lisp-indent (&optional parse-start) |
911 "Return appropriate indentation for current line as Lisp code. | |
912 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
|
913 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
|
914 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
|
915 |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
916 The value can also be a list of the form (COLUMN CONTAINING-SEXP-START). |
213 | 917 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
|
918 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
|
919 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
|
920 is the buffer position of the start of the containing expression." |
213 | 921 (save-excursion |
922 (beginning-of-line) | |
923 (let ((indent-point (point)) | |
924 state paren-depth | |
925 ;; setting this to a number inhibits calling hook | |
926 (desired-indent nil) | |
927 (retry t) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
928 calculate-lisp-indent-last-sexp containing-sexp) |
213 | 929 (if parse-start |
930 (goto-char parse-start) | |
931 (beginning-of-defun)) | |
932 ;; Find outermost containing sexp | |
933 (while (< (point) indent-point) | |
934 (setq state (parse-partial-sexp (point) indent-point 0))) | |
935 ;; Find innermost containing sexp | |
936 (while (and retry | |
937 state | |
938 (> (setq paren-depth (elt state 0)) 0)) | |
939 (setq retry nil) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
940 (setq calculate-lisp-indent-last-sexp (elt state 2)) |
213 | 941 (setq containing-sexp (elt state 1)) |
942 ;; Position following last unclosed open. | |
943 (goto-char (1+ containing-sexp)) | |
944 ;; Is there a complete sexp since then? | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
945 (if (and calculate-lisp-indent-last-sexp |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
946 (> calculate-lisp-indent-last-sexp (point))) |
213 | 947 ;; 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
|
948 (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
|
949 indent-point 0))) |
213 | 950 (if (setq retry (car (cdr peek))) (setq state peek))))) |
951 (if retry | |
952 nil | |
953 ;; Innermost containing sexp found | |
954 (goto-char (1+ containing-sexp)) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
955 (if (not calculate-lisp-indent-last-sexp) |
213 | 956 ;; indent-point immediately follows open paren. |
957 ;; Don't call hook. | |
958 (setq desired-indent (current-column)) | |
959 ;; 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
|
960 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t) |
213 | 961 (cond ((looking-at "\\s(") |
962 ;; First element of containing sexp is a list. | |
963 ;; Indent under that list. | |
964 ) | |
965 ((> (save-excursion (forward-line 1) (point)) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
966 calculate-lisp-indent-last-sexp) |
213 | 967 ;; This is the first line to start within the containing sexp. |
968 ;; It's almost certainly a function call. | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
969 (if (= (point) calculate-lisp-indent-last-sexp) |
213 | 970 ;; Containing sexp has nothing before this line |
971 ;; except the first element. Indent under that element. | |
972 nil | |
973 ;; Skip the first element, find start of second (the first | |
974 ;; argument of the function call) and indent under. | |
975 (progn (forward-sexp 1) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
976 (parse-partial-sexp (point) |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
977 calculate-lisp-indent-last-sexp |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
978 0 t))) |
213 | 979 (backward-prefix-chars)) |
980 (t | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
981 ;; Indent beneath first sexp on same line as |
27809 | 982 ;; `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
|
983 ;; almost certainly a function call. |
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
984 (goto-char calculate-lisp-indent-last-sexp) |
213 | 985 (beginning-of-line) |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
986 (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
|
987 0 t) |
213 | 988 (backward-prefix-chars))))) |
989 ;; 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
|
990 ;; Call indentation hook except when overridden by lisp-indent-offset |
213 | 991 ;; or if the desired indentation has already been computed. |
992 (let ((normal-indent (current-column))) | |
993 (cond ((elt state 3) | |
994 ;; 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
|
995 nil) |
213 | 996 ((and (integerp lisp-indent-offset) containing-sexp) |
997 ;; Indent by constant offset | |
998 (goto-char containing-sexp) | |
999 (+ (current-column) lisp-indent-offset)) | |
76324
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1000 ;; in this case calculate-lisp-indent-last-sexp is not nil |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1001 (calculate-lisp-indent-last-sexp |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1002 (or |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1003 ;; try to align the parameters of a known function |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1004 (and lisp-indent-function |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1005 (not retry) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1006 (funcall lisp-indent-function indent-point state)) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1007 ;; If the function has no special alignment |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1008 ;; or it does not apply to this argument, |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1009 ;; try to align a constant-symbol under the last |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1010 ;; preceding constant symbol, if there is such one of |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1011 ;; the last 2 preceding symbols, in the previous |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1012 ;; uncommented line. |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1013 (and (save-excursion |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1014 (goto-char indent-point) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1015 (skip-chars-forward " \t") |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1016 (looking-at ":")) |
78180
b22beb3e496f
(calculate-lisp-indent): In the
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
78096
diff
changeset
|
1017 ;; The last sexp may not be at the indentation |
b22beb3e496f
(calculate-lisp-indent): In the
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
78096
diff
changeset
|
1018 ;; where it begins, so find that one, instead. |
b22beb3e496f
(calculate-lisp-indent): In the
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
78096
diff
changeset
|
1019 (save-excursion |
b22beb3e496f
(calculate-lisp-indent): In the
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
78096
diff
changeset
|
1020 (goto-char calculate-lisp-indent-last-sexp) |
b22beb3e496f
(calculate-lisp-indent): In the
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
78096
diff
changeset
|
1021 (while (and (not (looking-back "^[ \t]*")) |
b22beb3e496f
(calculate-lisp-indent): In the
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
78096
diff
changeset
|
1022 (or (not containing-sexp) |
b22beb3e496f
(calculate-lisp-indent): In the
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
78096
diff
changeset
|
1023 (< (1+ containing-sexp) (point)))) |
b22beb3e496f
(calculate-lisp-indent): In the
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
78096
diff
changeset
|
1024 (forward-sexp -1) |
b22beb3e496f
(calculate-lisp-indent): In the
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
78096
diff
changeset
|
1025 (backward-prefix-chars)) |
b22beb3e496f
(calculate-lisp-indent): In the
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
78096
diff
changeset
|
1026 (setq calculate-lisp-indent-last-sexp (point))) |
76324
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1027 (> calculate-lisp-indent-last-sexp |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1028 (save-excursion |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1029 (goto-char (1+ containing-sexp)) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1030 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1031 (point))) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1032 (let ((parse-sexp-ignore-comments t) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1033 indent) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1034 (goto-char calculate-lisp-indent-last-sexp) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1035 (or (and (looking-at ":") |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1036 (setq indent (current-column))) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1037 (and (< (save-excursion (beginning-of-line) (point)) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1038 (prog2 (backward-sexp) (point))) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1039 (looking-at ":") |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1040 (setq indent (current-column)))) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1041 indent)) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1042 ;; another symbols or constants not preceded by a constant |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1043 ;; as defined above. |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1044 normal-indent)) |
b72eb510e3d7
(calculate-lisp-indent): Redo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
75977
diff
changeset
|
1045 ;; in this case calculate-lisp-indent-last-sexp is nil |
213 | 1046 (desired-indent) |
1047 (t | |
214 | 1048 normal-indent)))))) |
213 | 1049 |
1050 (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
|
1051 "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
|
1052 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
|
1053 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
|
1054 |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
1055 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
|
1056 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
|
1057 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
|
1058 |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
1059 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
|
1060 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
|
1061 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
|
1062 * `defun', meaning indent `defun'-style; |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
1063 * an integer N, meaning indent the first N arguments specially |
59846
e760650016fc
(lisp-indent-function): Doc fix.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
59755
diff
changeset
|
1064 like ordinary function arguments and then indent any further |
e760650016fc
(lisp-indent-function): Doc fix.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
59755
diff
changeset
|
1065 arguments like a body; |
41509
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
1066 * a function to call just as this function was called. |
59848
d992bb330d29
(lisp-indent-function): Fix bug:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
59846
diff
changeset
|
1067 If that function returns nil, that means it doesn't specify |
d992bb330d29
(lisp-indent-function): Fix bug:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
59846
diff
changeset
|
1068 the indentation. |
41509
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
1069 |
aeb0c4a140d2
(lisp-indent-function): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents:
41334
diff
changeset
|
1070 This function also returns nil meaning don't specify the indentation." |
213 | 1071 (let ((normal-indent (current-column))) |
1072 (goto-char (1+ (elt state 1))) | |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
1073 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t) |
213 | 1074 (if (and (elt state 2) |
1075 (not (looking-at "\\sw\\|\\s_"))) | |
46159 | 1076 ;; car of form doesn't seem to be a symbol |
213 | 1077 (progn |
1078 (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
|
1079 calculate-lisp-indent-last-sexp)) |
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
1080 (progn (goto-char calculate-lisp-indent-last-sexp) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
1081 (beginning-of-line) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
1082 (parse-partial-sexp (point) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
1083 calculate-lisp-indent-last-sexp 0 t))) |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
1084 ;; Indent under the list or under the first sexp on the same |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
1085 ;; line as calculate-lisp-indent-last-sexp. Note that first |
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50677
diff
changeset
|
1086 ;; thing on that line has to be complete sexp since we are |
9423
9076245a9fed
(calculate-lisp-indent): Local var
Richard M. Stallman <rms@gnu.org>
parents:
9415
diff
changeset
|
1087 ;; inside the innermost containing sexp. |
213 | 1088 (backward-prefix-chars) |
1089 (current-column)) | |
1090 (let ((function (buffer-substring (point) | |
1091 (progn (forward-sexp 1) (point)))) | |
1092 method) | |
3638
45169f86d3a4
(lisp-indent-function): Look for either
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1093 (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
|
1094 (get (intern-soft function) 'lisp-indent-hook))) |
213 | 1095 (cond ((or (eq method 'defun) |
1096 (and (null method) | |
1097 (> (length function) 3) | |
1098 (string-match "\\`def" function))) | |
1099 (lisp-indent-defform state indent-point)) | |
1100 ((integerp method) | |
1101 (lisp-indent-specform method state | |
1102 indent-point normal-indent)) | |
1103 (method | |
59848
d992bb330d29
(lisp-indent-function): Fix bug:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
59846
diff
changeset
|
1104 (funcall method indent-point state))))))) |
213 | 1105 |
78730
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
1106 (defcustom lisp-body-indent 2 |
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
1107 "Number of columns to indent the second line of a `(def...)' form." |
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
1108 :group 'lisp |
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
1109 :type 'integer) |
7191ad0f348d
(lisp-indent-offset): Make defcustom. Add `safe-local-variable' property.
Richard M. Stallman <rms@gnu.org>
parents:
78597
diff
changeset
|
1110 (put 'lisp-body-indent 'safe-local-variable 'integerp) |
213 | 1111 |
1112 (defun lisp-indent-specform (count state indent-point normal-indent) | |
1113 (let ((containing-form-start (elt state 1)) | |
1114 (i count) | |
1115 body-indent containing-form-column) | |
1116 ;; Move to the start of containing form, calculate indentation | |
1117 ;; to use for non-distinguished forms (> count), and move past the | |
1118 ;; function symbol. lisp-indent-function guarantees that there is at | |
1119 ;; least one word or symbol character following open paren of containing | |
1120 ;; form. | |
1121 (goto-char containing-form-start) | |
1122 (setq containing-form-column (current-column)) | |
1123 (setq body-indent (+ lisp-body-indent containing-form-column)) | |
1124 (forward-char 1) | |
1125 (forward-sexp 1) | |
1126 ;; Now find the start of the last form. | |
1127 (parse-partial-sexp (point) indent-point 1 t) | |
1128 (while (and (< (point) indent-point) | |
1129 (condition-case () | |
1130 (progn | |
1131 (setq count (1- count)) | |
1132 (forward-sexp 1) | |
1133 (parse-partial-sexp (point) indent-point 1 t)) | |
1134 (error nil)))) | |
1135 ;; Point is sitting on first character of last (or count) sexp. | |
1136 (if (> count 0) | |
1137 ;; A distinguished form. If it is the first or second form use double | |
1138 ;; lisp-body-indent, else normal indent. With lisp-body-indent bound | |
1139 ;; to 2 (the default), this just happens to work the same with if as | |
1140 ;; the older code, but it makes unwind-protect, condition-case, | |
1141 ;; with-output-to-temp-buffer, et. al. much more tasteful. The older, | |
1142 ;; less hacked, behavior can be obtained by replacing below with | |
1143 ;; (list normal-indent containing-form-start). | |
1144 (if (<= (- i count) 1) | |
1145 (list (+ containing-form-column (* 2 lisp-body-indent)) | |
1146 containing-form-start) | |
1147 (list normal-indent containing-form-start)) | |
1148 ;; A non-distinguished form. Use body-indent if there are no | |
1149 ;; distinguished forms and this is the first undistinguished form, | |
1150 ;; or if this is the first undistinguished form and the preceding | |
1151 ;; distinguished form has indentation at least as great as body-indent. | |
1152 (if (or (and (= i 0) (= count 0)) | |
1153 (and (= count 0) (<= body-indent normal-indent))) | |
1154 body-indent | |
1155 normal-indent)))) | |
1156 | |
1157 (defun lisp-indent-defform (state indent-point) | |
1158 (goto-char (car (cdr state))) | |
1159 (forward-line 1) | |
1160 (if (> (point) (car (cdr (cdr state)))) | |
1161 (progn | |
1162 (goto-char (car (cdr state))) | |
1163 (+ lisp-body-indent (current-column))))) | |
1164 | |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
1165 |
213 | 1166 ;; (put 'progn 'lisp-indent-function 0), say, causes progn to be indented |
1167 ;; like defun if the first form is placed on the next line, otherwise | |
1168 ;; it is indented like any other form (i.e. forms line up under first). | |
1169 | |
1170 (put 'lambda 'lisp-indent-function 'defun) | |
1171 (put 'autoload 'lisp-indent-function 'defun) | |
1172 (put 'progn 'lisp-indent-function 0) | |
1173 (put 'prog1 'lisp-indent-function 1) | |
1174 (put 'prog2 'lisp-indent-function 2) | |
1175 (put 'save-excursion 'lisp-indent-function 0) | |
1176 (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
|
1177 (put 'save-selected-window 'lisp-indent-function 0) |
213 | 1178 (put 'save-restriction 'lisp-indent-function 0) |
1163 | 1179 (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
|
1180 (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
|
1181 (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
|
1182 (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
|
1183 (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
|
1184 (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
|
1185 (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
|
1186 (put 'with-temp-message 'lisp-indent-function 1) |
27300
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26682
diff
changeset
|
1187 (put 'with-syntax-table 'lisp-indent-function 1) |
213 | 1188 (put 'let 'lisp-indent-function 1) |
1189 (put 'let* 'lisp-indent-function 1) | |
1190 (put 'while 'lisp-indent-function 1) | |
1191 (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
|
1192 (put 'read-if 'lisp-indent-function 2) |
213 | 1193 (put 'catch 'lisp-indent-function 1) |
1194 (put 'condition-case 'lisp-indent-function 2) | |
1195 (put 'unwind-protect 'lisp-indent-function 1) | |
1196 (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
|
1197 (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
|
1198 (put 'dolist 'lisp-indent-function 1) |
a681b4de47a1
Add indent specs for dolist, dotimes, when, unless.
Dave Love <fx@gnu.org>
parents:
27303
diff
changeset
|
1199 (put 'dotimes 'lisp-indent-function 1) |
a681b4de47a1
Add indent specs for dolist, dotimes, when, unless.
Dave Love <fx@gnu.org>
parents:
27303
diff
changeset
|
1200 (put 'when 'lisp-indent-function 1) |
a681b4de47a1
Add indent specs for dolist, dotimes, when, unless.
Dave Love <fx@gnu.org>
parents:
27303
diff
changeset
|
1201 (put 'unless 'lisp-indent-function 1) |
213 | 1202 |
1203 (defun indent-sexp (&optional endpos) | |
1204 "Indent each line of the list starting just after point. | |
1205 If optional arg ENDPOS is given, indent each line, stopping when | |
1206 ENDPOS is encountered." | |
1207 (interactive) | |
727 | 1208 (let ((indent-stack (list nil)) |
1209 (next-depth 0) | |
10594
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1210 ;; 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
|
1211 ;; 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
|
1212 ;; 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
|
1213 ;; 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
|
1214 ;; 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
|
1215 (starting-point (if endpos nil (point))) |
727 | 1216 (last-point (point)) |
1217 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
|
1218 (or endpos |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1219 ;; 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
|
1220 (save-excursion (forward-sexp 1))) |
213 | 1221 (save-excursion |
1222 (setq outer-loop-done nil) | |
1223 (while (if endpos (< (point) endpos) | |
1224 (not outer-loop-done)) | |
1225 (setq last-depth next-depth | |
1226 inner-loop-done nil) | |
1227 ;; Parse this line so we can learn the state | |
1228 ;; to indent the next line. | |
1229 ;; This inner loop goes through only once | |
1230 ;; unless a line ends inside a string. | |
1231 (while (and (not inner-loop-done) | |
1232 (not (setq outer-loop-done (eobp)))) | |
1233 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point)) | |
1234 nil nil state)) | |
1235 (setq next-depth (car state)) | |
1236 ;; If the line contains a comment other than the sort | |
1237 ;; that is indented like code, | |
1238 ;; indent it now with indent-for-comment. | |
1239 ;; Comments indented like code are right already. | |
1240 ;; In any case clear the in-comment flag in the state | |
1241 ;; because parse-partial-sexp never sees the newlines. | |
1242 (if (car (nthcdr 4 state)) | |
1243 (progn (indent-for-comment) | |
1244 (end-of-line) | |
1245 (setcar (nthcdr 4 state) nil))) | |
1246 ;; If this line ends inside a string, | |
1247 ;; go straight to next line, remaining within the inner loop, | |
1248 ;; and turn off the \-flag. | |
1249 (if (car (nthcdr 3 state)) | |
1250 (progn | |
1251 (forward-line 1) | |
1252 (setcar (nthcdr 5 state) nil)) | |
1253 (setq inner-loop-done t))) | |
1254 (and endpos | |
727 | 1255 (<= next-depth 0) |
1256 (progn | |
32294
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
1257 (setq indent-stack (nconc indent-stack |
a6eff9b566ae
(lisp-imenu-generic-expression): Don't
Dave Love <fx@gnu.org>
parents:
30666
diff
changeset
|
1258 (make-list (- next-depth) nil)) |
727 | 1259 last-depth (- last-depth next-depth) |
1260 next-depth 0))) | |
75798
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1261 (forward-line 1) |
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1262 ;; Decide whether to exit. |
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1263 (if endpos |
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1264 ;; If we have already reached the specified end, |
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1265 ;; give up and do not reindent this line. |
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1266 (if (<= endpos (point)) |
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1267 (setq outer-loop-done t)) |
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1268 ;; If no specified end, we are done if we have finished one sexp. |
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1269 (if (<= next-depth 0) |
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1270 (setq outer-loop-done t))) |
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1271 (unless outer-loop-done |
213 | 1272 (while (> last-depth next-depth) |
1273 (setq indent-stack (cdr indent-stack) | |
1274 last-depth (1- last-depth))) | |
1275 (while (< last-depth next-depth) | |
1276 (setq indent-stack (cons nil indent-stack) | |
1277 last-depth (1+ last-depth))) | |
75798
8496bd7b062a
(indent-sexp): Clean up termination condition -- don't fail to stop at endpos.
Richard M. Stallman <rms@gnu.org>
parents:
75641
diff
changeset
|
1278 ;; Now indent the next line according |
213 | 1279 ;; to what we learned from parsing the previous one. |
1280 (setq bol (point)) | |
1281 (skip-chars-forward " \t") | |
1282 ;; But not if the line is blank, or just a comment | |
1283 ;; (except for double-semi comments; indent them as usual). | |
1284 (if (or (eobp) (looking-at "\\s<\\|\n")) | |
1285 nil | |
1286 (if (and (car indent-stack) | |
1287 (>= (car indent-stack) 0)) | |
1288 (setq this-indent (car indent-stack)) | |
1289 (let ((val (calculate-lisp-indent | |
1290 (if (car indent-stack) (- (car indent-stack)) | |
727 | 1291 starting-point)))) |
17308
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1292 (if (null val) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1293 (setq this-indent val) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1294 (if (integerp val) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1295 (setcar indent-stack |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1296 (setq this-indent val)) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1297 (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
|
1298 (setq this-indent (car val)))))) |
e52fa60d97e8
(indent-sexp): If calculate-lisp-indent returns nil,
Richard M. Stallman <rms@gnu.org>
parents:
17144
diff
changeset
|
1299 (if (and this-indent (/= (current-column) this-indent)) |
213 | 1300 (progn (delete-region bol (point)) |
1301 (indent-to this-indent))))) | |
1302 (or outer-loop-done | |
1303 (setq outer-loop-done (= (point) last-point)) | |
1304 (setq last-point (point))))))) | |
1305 | |
1306 (defun lisp-indent-region (start end) | |
27809 | 1307 "Indent every line whose first char is between START and END inclusive." |
213 | 1308 (save-excursion |
1309 (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
|
1310 (goto-char start) |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1311 (and (bolp) (not (eolp)) |
aadef46f00f7
(lisp-indent-region): Set endmark before indenting first line.
Richard M. Stallman <rms@gnu.org>
parents:
9424
diff
changeset
|
1312 (lisp-indent-line)) |
213 | 1313 (indent-sexp endmark) |
1314 (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
|
1315 |
55805
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1316 (defun indent-pp-sexp (&optional arg) |
59571
04043e03826a
(indent-pp-sexp): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
57401
diff
changeset
|
1317 "Indent each line of the list starting just after point, or prettyprint it. |
04043e03826a
(indent-pp-sexp): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
57401
diff
changeset
|
1318 A prefix argument specifies pretty-printing." |
55805
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1319 (interactive "P") |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1320 (if arg |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1321 (save-excursion |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1322 (save-restriction |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1323 (narrow-to-region (point) (progn (forward-sexp 1) (point))) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1324 (pp-buffer) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1325 (goto-char (point-max)) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1326 (if (eq (char-before) ?\n) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1327 (delete-char -1))))) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1328 (indent-sexp)) |
a4c5317be59a
* emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
Juri Linkov <juri@jurta.org>
parents:
55773
diff
changeset
|
1329 |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1330 ;;;; Lisp paragraph filling commands. |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1331 |
50001
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1332 (defcustom emacs-lisp-docstring-fill-column 65 |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1333 "Value of `fill-column' to use when filling a docstring. |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1334 Any non-integer value means do not use a different value of |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1335 `fill-column' when filling docstrings." |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1336 :type '(choice (integer) |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1337 (const :tag "Use the current `fill-column'" t)) |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1338 :group 'lisp) |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1339 |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1340 (defun lisp-fill-paragraph (&optional justify) |
50001
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1341 "Like \\[fill-paragraph], but handle Emacs Lisp comments and docstrings. |
1865
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1342 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
|
1343 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
|
1344 and initial semicolons." |
05be3e0c082f
* lisp-mode.el (lisp-fill-paragraph): New function.
Jim Blandy <jimb@redhat.com>
parents:
1163
diff
changeset
|
1345 (interactive "P") |
48127
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1346 (or (fill-comment-paragraph justify) |
57401
b1bdc11085c9
(lisp-fill-paragraph): Fix backslashes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57393
diff
changeset
|
1347 ;; Since fill-comment-paragraph returned nil, that means we're not in |
b1bdc11085c9
(lisp-fill-paragraph): Fix backslashes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57393
diff
changeset
|
1348 ;; a comment: Point is on a program line; we are interested |
50001
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1349 ;; particularly in docstring lines. |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1350 ;; |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1351 ;; We bind `paragraph-start' and `paragraph-separate' temporarily. They |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1352 ;; are buffer-local, but we avoid changing them so that they can be set |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1353 ;; to make `forward-paragraph' and friends do something the user wants. |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1354 ;; |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1355 ;; `paragraph-start': The `(' in the character alternative and the |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1356 ;; left-singlequote plus `(' sequence after the \\| alternative prevent |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1357 ;; sexps and backquoted sexps that follow a docstring from being filled |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1358 ;; with the docstring. This setting has the consequence of inhibiting |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1359 ;; filling many program lines that are not docstrings, which is sensible, |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1360 ;; because the user probably asked to fill program lines by accident, or |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1361 ;; expecting indentation (perhaps we should try to do indenting in that |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1362 ;; case). The `;' and `:' stop the paragraph being filled at following |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1363 ;; comment lines and at keywords (e.g., in `defcustom'). Left parens are |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1364 ;; escaped to keep font-locking, filling, & paren matching in the source |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1365 ;; file happy. |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1366 ;; |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1367 ;; `paragraph-separate': A clever regexp distinguishes the first line of |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1368 ;; a docstring and identifies it as a paragraph separator, so that it |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1369 ;; won't be filled. (Since the first line of documentation stands alone |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1370 ;; in some contexts, filling should not alter the contents the author has |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1371 ;; chosen.) Only the first line of a docstring begins with whitespace |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1372 ;; and a quotation mark and ends with a period or (rarely) a comma. |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1373 ;; |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1374 ;; The `fill-column' is temporarily bound to |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1375 ;; `emacs-lisp-docstring-fill-column' if that value is an integer. |
48127
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1376 (let ((paragraph-start (concat paragraph-start |
57401
b1bdc11085c9
(lisp-fill-paragraph): Fix backslashes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57393
diff
changeset
|
1377 "\\|\\s-*\\([(;:\"]\\|`(\\|#'(\\)")) |
48127
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1378 (paragraph-separate |
50001
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1379 (concat paragraph-separate "\\|\\s-*\".*[,\\.]$")) |
76880
def0f242e449
(lisp-fill-paragraph): Only obey emacs-lisp-docstring-fill-column in
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76324
diff
changeset
|
1380 (fill-column (if (and (integerp emacs-lisp-docstring-fill-column) |
def0f242e449
(lisp-fill-paragraph): Only obey emacs-lisp-docstring-fill-column in
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76324
diff
changeset
|
1381 (derived-mode-p 'emacs-lisp-mode)) |
50001
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1382 emacs-lisp-docstring-fill-column |
745c2428aae8
(emacs-lisp-docstring-fill-column): New custom variable.
Matthew Swift <swift@alum.mit.edu>
parents:
49598
diff
changeset
|
1383 fill-column))) |
48127
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1384 (fill-paragraph justify)) |
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1385 ;; Never return nil. |
ebfdb0351da6
(lisp-fill-paragraph): Use fill-comment-paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48119
diff
changeset
|
1386 t)) |
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
parents:
34366
diff
changeset
|
1387 |
213 | 1388 (defun indent-code-rigidly (start end arg &optional nochange-regexp) |
1389 "Indent all lines of code, starting in the region, sideways by ARG columns. | |
1390 Does not affect lines starting inside comments or strings, assuming that | |
1391 the start of the region is not inside them. | |
1392 | |
1393 Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP. | |
1394 The last is a regexp which, if matched at the beginning of a line, | |
1395 means don't indent that line." | |
1396 (interactive "r\np") | |
1397 (let (state) | |
1398 (save-excursion | |
1399 (goto-char end) | |
1400 (setq end (point-marker)) | |
1401 (goto-char start) | |
1402 (or (bolp) | |
1403 (setq state (parse-partial-sexp (point) | |
1404 (progn | |
1405 (forward-line 1) (point)) | |
1406 nil nil state))) | |
1407 (while (< (point) end) | |
1408 (or (car (nthcdr 3 state)) | |
1409 (and nochange-regexp | |
1410 (looking-at nochange-regexp)) | |
1411 ;; If line does not start in string, indent it | |
1412 (let ((indent (current-indentation))) | |
1413 (delete-region (point) (progn (skip-chars-forward " \t") (point))) | |
1414 (or (eolp) | |
1415 (indent-to (max 0 (+ indent arg)) 0)))) | |
1416 (setq state (parse-partial-sexp (point) | |
1417 (progn | |
1418 (forward-line 1) (point)) | |
1419 nil nil state)))))) | |
584 | 1420 |
1421 (provide 'lisp-mode) | |
1422 | |
57401
b1bdc11085c9
(lisp-fill-paragraph): Fix backslashes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57393
diff
changeset
|
1423 ;; arch-tag: 414c7f93-c245-4b77-8ed5-ed05ef7ff1bf |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1424 ;;; lisp-mode.el ends here |