Mercurial > emacs
annotate src/cmds.c @ 10724:1bc137a2c4eb
(pp-to-string): Don't use emacs-lisp-mode.
Just do the parts of it we actually want.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 13 Feb 1995 03:01:16 +0000 |
parents | caf4440e63e8 |
children | fb4f688fc2cf |
rev | line source |
---|---|
239 | 1 /* Simple built-in editing commands. |
7307 | 2 Copyright (C) 1985, 1993, 1994 Free Software Foundation, Inc. |
239 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
647 | 8 the Free Software Foundation; either version 2, or (at your option) |
239 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4561
diff
changeset
|
21 #include <config.h> |
239 | 22 #include "lisp.h" |
23 #include "commands.h" | |
24 #include "buffer.h" | |
25 #include "syntax.h" | |
8755 | 26 #include "window.h" |
239 | 27 |
28 Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function; | |
10425
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
29 Lisp_Object Vuse_hard_newlines; |
239 | 30 |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
31 /* A possible value for a buffer's overwrite-mode variable. */ |
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
32 Lisp_Object Qoverwrite_mode_binary; |
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
33 |
10425
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
34 #ifdef USE_TEXT_PROPERTIES |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
35 Lisp_Object Qhard; |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
36 #endif |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
37 |
239 | 38 |
39 DEFUN ("forward-char", Fforward_char, Sforward_char, 0, 1, "p", | |
40 "Move point right ARG characters (left if ARG negative).\n\ | |
41 On reaching end of buffer, stop and signal error.") | |
42 (n) | |
43 Lisp_Object n; | |
44 { | |
485 | 45 if (NILP (n)) |
9300
84822d6ed3be
(Fforward_char, Fbackward_char, Fbeginning_of_line, Fend_of_line): Don't use
Karl Heuer <kwzh@gnu.org>
parents:
9135
diff
changeset
|
46 XSETFASTINT (n, 1); |
239 | 47 else |
48 CHECK_NUMBER (n, 0); | |
49 | |
2777
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
50 /* This used to just set point to point + XINT (n), and then check |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
51 to see if it was within boundaries. But now that SET_PT can |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
52 potentially do a lot of stuff (calling entering and exiting |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
53 hooks, etcetera), that's not a good approach. So we validate the |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
54 proposed position, then set point. */ |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
55 { |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
56 int new_point = point + XINT (n); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
57 |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
58 if (new_point < BEGV) |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
59 { |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
60 SET_PT (BEGV); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
61 Fsignal (Qbeginning_of_buffer, Qnil); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
62 } |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
63 if (new_point > ZV) |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
64 { |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
65 SET_PT (ZV); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
66 Fsignal (Qend_of_buffer, Qnil); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
67 } |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
68 |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
69 SET_PT (new_point); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
70 } |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
71 |
239 | 72 return Qnil; |
73 } | |
74 | |
75 DEFUN ("backward-char", Fbackward_char, Sbackward_char, 0, 1, "p", | |
76 "Move point left ARG characters (right if ARG negative).\n\ | |
77 On attempt to pass beginning or end of buffer, stop and signal error.") | |
78 (n) | |
79 Lisp_Object n; | |
80 { | |
485 | 81 if (NILP (n)) |
9300
84822d6ed3be
(Fforward_char, Fbackward_char, Fbeginning_of_line, Fend_of_line): Don't use
Karl Heuer <kwzh@gnu.org>
parents:
9135
diff
changeset
|
82 XSETFASTINT (n, 1); |
239 | 83 else |
84 CHECK_NUMBER (n, 0); | |
85 | |
86 XSETINT (n, - XINT (n)); | |
87 return Fforward_char (n); | |
88 } | |
89 | |
90 DEFUN ("forward-line", Fforward_line, Sforward_line, 0, 1, "p", | |
91 "Move ARG lines forward (backward if ARG is negative).\n\ | |
92 Precisely, if point is on line I, move to the start of line I + ARG.\n\ | |
93 If there isn't room, go as far as possible (no error).\n\ | |
94 Returns the count of lines left to move. If moving forward,\n\ | |
95 that is ARG - number of lines moved; if backward, ARG + number moved.\n\ | |
96 With positive ARG, a non-empty line at the end counts as one line\n\ | |
97 successfully moved (for the return value).") | |
98 (n) | |
99 Lisp_Object n; | |
100 { | |
101 int pos2 = point; | |
102 int pos; | |
103 int count, shortage, negp; | |
104 | |
485 | 105 if (NILP (n)) |
239 | 106 count = 1; |
107 else | |
108 { | |
109 CHECK_NUMBER (n, 0); | |
110 count = XINT (n); | |
111 } | |
112 | |
113 negp = count <= 0; | |
9405
b7f3059c308a
* cmds.c (Fforward_line): Call scan_buffer with new args.
Jim Blandy <jimb@redhat.com>
parents:
9332
diff
changeset
|
114 pos = scan_buffer ('\n', pos2, 0, count - negp, &shortage, 1); |
239 | 115 if (shortage > 0 |
116 && (negp | |
647 | 117 || (ZV > BEGV |
118 && pos != pos2 | |
239 | 119 && FETCH_CHAR (pos - 1) != '\n'))) |
120 shortage--; | |
121 SET_PT (pos); | |
122 return make_number (negp ? - shortage : shortage); | |
123 } | |
124 | |
125 DEFUN ("beginning-of-line", Fbeginning_of_line, Sbeginning_of_line, | |
126 0, 1, "p", | |
127 "Move point to beginning of current line.\n\ | |
128 With argument ARG not nil or 1, move forward ARG - 1 lines first.\n\ | |
129 If scan reaches end of buffer, stop there without error.") | |
130 (n) | |
131 Lisp_Object n; | |
132 { | |
485 | 133 if (NILP (n)) |
9300
84822d6ed3be
(Fforward_char, Fbackward_char, Fbeginning_of_line, Fend_of_line): Don't use
Karl Heuer <kwzh@gnu.org>
parents:
9135
diff
changeset
|
134 XSETFASTINT (n, 1); |
239 | 135 else |
136 CHECK_NUMBER (n, 0); | |
137 | |
138 Fforward_line (make_number (XINT (n) - 1)); | |
139 return Qnil; | |
140 } | |
141 | |
142 DEFUN ("end-of-line", Fend_of_line, Send_of_line, | |
143 0, 1, "p", | |
144 "Move point to end of current line.\n\ | |
145 With argument ARG not nil or 1, move forward ARG - 1 lines first.\n\ | |
146 If scan reaches end of buffer, stop there without error.") | |
147 (n) | |
148 Lisp_Object n; | |
149 { | |
150 register int pos; | |
151 register int stop; | |
152 | |
485 | 153 if (NILP (n)) |
9300
84822d6ed3be
(Fforward_char, Fbackward_char, Fbeginning_of_line, Fend_of_line): Don't use
Karl Heuer <kwzh@gnu.org>
parents:
9135
diff
changeset
|
154 XSETFASTINT (n, 1); |
239 | 155 else |
156 CHECK_NUMBER (n, 0); | |
157 | |
9405
b7f3059c308a
* cmds.c (Fforward_line): Call scan_buffer with new args.
Jim Blandy <jimb@redhat.com>
parents:
9332
diff
changeset
|
158 SET_PT (find_before_next_newline (PT, 0, XINT (n) - (XINT (n) <= 0))); |
239 | 159 |
160 return Qnil; | |
161 } | |
162 | |
163 DEFUN ("delete-char", Fdelete_char, Sdelete_char, 1, 2, "p\nP", | |
164 "Delete the following ARG characters (previous, with negative arg).\n\ | |
165 Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).\n\ | |
166 Interactively, ARG is the prefix arg, and KILLFLAG is set if\n\ | |
167 ARG was explicitly specified.") | |
168 (n, killflag) | |
169 Lisp_Object n, killflag; | |
170 { | |
171 CHECK_NUMBER (n, 0); | |
172 | |
485 | 173 if (NILP (killflag)) |
239 | 174 { |
175 if (XINT (n) < 0) | |
176 { | |
177 if (point + XINT (n) < BEGV) | |
178 Fsignal (Qbeginning_of_buffer, Qnil); | |
179 else | |
180 del_range (point + XINT (n), point); | |
181 } | |
182 else | |
183 { | |
184 if (point + XINT (n) > ZV) | |
185 Fsignal (Qend_of_buffer, Qnil); | |
186 else | |
187 del_range (point, point + XINT (n)); | |
188 } | |
189 } | |
190 else | |
191 { | |
192 call1 (Qkill_forward_chars, n); | |
193 } | |
194 return Qnil; | |
195 } | |
196 | |
197 DEFUN ("delete-backward-char", Fdelete_backward_char, Sdelete_backward_char, | |
198 1, 2, "p\nP", | |
199 "Delete the previous ARG characters (following, with negative ARG).\n\ | |
200 Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).\n\ | |
201 Interactively, ARG is the prefix arg, and KILLFLAG is set if\n\ | |
202 ARG was explicitly specified.") | |
203 (n, killflag) | |
204 Lisp_Object n, killflag; | |
205 { | |
206 CHECK_NUMBER (n, 0); | |
207 return Fdelete_char (make_number (-XINT (n)), killflag); | |
208 } | |
209 | |
210 DEFUN ("self-insert-command", Fself_insert_command, Sself_insert_command, 1, 1, "p", | |
211 "Insert the character you type.\n\ | |
212 Whichever character you type to run this command is inserted.") | |
213 (arg) | |
214 Lisp_Object arg; | |
215 { | |
216 CHECK_NUMBER (arg, 0); | |
217 | |
218 /* Barf if the key that invoked this was not a character. */ | |
9135
551c9e4fa12a
(Fself_insert_command): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
8755
diff
changeset
|
219 if (!INTEGERP (last_command_char)) |
239 | 220 bitch_at_user (); |
221 else | |
222 while (XINT (arg) > 0) | |
223 { | |
9332
1ff5359ac932
(Fself_insert_command, Fnewline): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9300
diff
changeset
|
224 /* Ok since old and new vals both nonneg */ |
1ff5359ac932
(Fself_insert_command, Fnewline): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9300
diff
changeset
|
225 XSETFASTINT (arg, XFASTINT (arg) - 1); |
239 | 226 internal_self_insert (XINT (last_command_char), XFASTINT (arg) != 0); |
227 } | |
228 | |
229 return Qnil; | |
230 } | |
231 | |
232 DEFUN ("newline", Fnewline, Snewline, 0, 1, "P", | |
233 "Insert a newline. With arg, insert that many newlines.\n\ | |
234 In Auto Fill mode, if no numeric arg, break the preceding line if it's long.") | |
235 (arg1) | |
236 Lisp_Object arg1; | |
237 { | |
10425
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
238 int flag, i; |
239 | 239 Lisp_Object arg; |
240 char c1 = '\n'; | |
241 | |
242 arg = Fprefix_numeric_value (arg1); | |
243 | |
485 | 244 if (!NILP (current_buffer->read_only)) |
3480
9784ebc37245
(Fnewline): Use Fbarf_if_buffer_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3223
diff
changeset
|
245 Fbarf_if_buffer_read_only (); |
239 | 246 |
1986
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
247 /* Inserting a newline at the end of a line produces better |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3480
diff
changeset
|
248 redisplay in try_window_id than inserting at the beginning of a |
1986
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
249 line, and the textual result is the same. So, if we're at |
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
250 beginning of line, pretend to be at the end of the previous line. |
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
251 |
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
252 We can't use internal_self_insert in that case since it won't do |
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
253 the insertion correctly. Luckily, internal_self_insert's special |
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
254 features all do nothing in that case. */ |
239 | 255 |
256 flag = point > BEGV && FETCH_CHAR (point - 1) == '\n'; | |
8755 | 257 /* Don't do this if at the beginning of the window. */ |
258 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer | |
259 && marker_position (XWINDOW (selected_window)->start) == PT) | |
260 flag = 0; | |
261 | |
4561
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
262 #ifdef USE_TEXT_PROPERTIES |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
263 /* We cannot use this optimization if properties change |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
264 in the vicinity. |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
265 ??? We need to check for change hook properties, etc. */ |
239 | 266 if (flag) |
4561
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
267 if (! (point - 1 > BEGV && ! property_change_between_p (point - 2, point))) |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
268 flag = 0; |
4372
189b84c7dbc5
(Fnewline): Disable the "insert one position before"
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
269 #endif |
4561
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
270 |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
271 if (flag) |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
272 SET_PT (point - 1); |
239 | 273 |
10425
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
274 for (i = XINT (arg); i > 0; i--) |
239 | 275 { |
276 if (flag) | |
9884
cede2b87231a
(Fnewline): Always use insert_and_inherit.
Richard M. Stallman <rms@gnu.org>
parents:
9405
diff
changeset
|
277 insert_and_inherit (&c1, 1); |
239 | 278 else |
485 | 279 internal_self_insert ('\n', !NILP (arg1)); |
239 | 280 } |
281 | |
10425
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
282 #ifdef USE_TEXT_PROPERTIES |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
283 if (Vuse_hard_newlines) |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
284 { |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
285 Lisp_Object from, to, sticky; |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
286 XSETFASTINT (from, PT - arg); |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
287 XSETFASTINT (to, PT); |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
288 Fput_text_property (from, to, Qhard, Qt, Qnil); |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
289 /* If rear_nonsticky is not "t", locally add Qhard to the list. */ |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
290 sticky = Fget_text_property (from, Qrear_nonsticky, Qnil); |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
291 if (NILP (sticky) |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
292 || (CONSP (sticky) && NILP (Fmemq (Qhard, sticky)))) |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
293 { |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
294 sticky = Fcons (Qhard, sticky); |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
295 Fput_text_property (from, to, Qrear_nonsticky, sticky, Qnil); |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
296 } |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
297 } |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
298 #endif |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
299 |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
300 |
239 | 301 if (flag) |
302 SET_PT (point + 1); | |
303 | |
304 return Qnil; | |
305 } | |
306 | |
1022
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
307 /* Insert character C1. If NOAUTOFILL is nonzero, don't do autofill |
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
308 even if it is enabled. |
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
309 |
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
310 If this insertion is suitable for direct output (completely simple), |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
311 return 0. A value of 1 indicates this *might* not have been simple. |
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
312 A value of 2 means this did things that call for an undo boundary. */ |
1022
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
313 |
239 | 314 internal_self_insert (c1, noautofill) |
315 char c1; | |
316 int noautofill; | |
317 { | |
318 extern Lisp_Object Fexpand_abbrev (); | |
319 int hairy = 0; | |
320 Lisp_Object tem; | |
321 register enum syntaxcode synt; | |
322 register int c = c1; | |
6496
e1967b6d9a5c
(internal_self_insert): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
5754
diff
changeset
|
323 Lisp_Object overwrite; |
239 | 324 |
6496
e1967b6d9a5c
(internal_self_insert): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
5754
diff
changeset
|
325 overwrite = current_buffer->overwrite_mode; |
6788
4c912c5779f5
(internal_self_insert): Test Vafter_change_functions,
Richard M. Stallman <rms@gnu.org>
parents:
6496
diff
changeset
|
326 if (!NILP (Vbefore_change_function) || !NILP (Vafter_change_function) |
4c912c5779f5
(internal_self_insert): Test Vafter_change_functions,
Richard M. Stallman <rms@gnu.org>
parents:
6496
diff
changeset
|
327 || !NILP (Vbefore_change_functions) || !NILP (Vafter_change_functions)) |
239 | 328 hairy = 1; |
329 | |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
330 if (!NILP (overwrite) |
239 | 331 && point < ZV |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
332 && (EQ (overwrite, Qoverwrite_mode_binary) |
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
333 || (c != '\n' && FETCH_CHAR (point) != '\n')) |
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
334 && (EQ (overwrite, Qoverwrite_mode_binary) |
1948
e7b8107294b7
(syms_of_cmds): New var `overwrite-binary-mode'.
Richard M. Stallman <rms@gnu.org>
parents:
1098
diff
changeset
|
335 || FETCH_CHAR (point) != '\t' |
239 | 336 || XINT (current_buffer->tab_width) <= 0 |
2159
6a082f5ce7e6
(internal_self_insert): Check that tab_width does not
Richard M. Stallman <rms@gnu.org>
parents:
1986
diff
changeset
|
337 || XFASTINT (current_buffer->tab_width) > 20 |
239 | 338 || !((current_column () + 1) % XFASTINT (current_buffer->tab_width)))) |
339 { | |
340 del_range (point, point + 1); | |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
341 hairy = 2; |
239 | 342 } |
485 | 343 if (!NILP (current_buffer->abbrev_mode) |
239 | 344 && SYNTAX (c) != Sword |
485 | 345 && NILP (current_buffer->read_only) |
239 | 346 && point > BEGV && SYNTAX (FETCH_CHAR (point - 1)) == Sword) |
347 { | |
1098
79f020f34683
(internal_self_insert): Assume Fexpand_abbrev expanded
Richard M. Stallman <rms@gnu.org>
parents:
1022
diff
changeset
|
348 int modiff = MODIFF; |
1022
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
349 Fexpand_abbrev (); |
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
350 /* We can't trust the value of Fexpand_abbrev, |
1098
79f020f34683
(internal_self_insert): Assume Fexpand_abbrev expanded
Richard M. Stallman <rms@gnu.org>
parents:
1022
diff
changeset
|
351 but if Fexpand_abbrev changed the buffer, |
79f020f34683
(internal_self_insert): Assume Fexpand_abbrev expanded
Richard M. Stallman <rms@gnu.org>
parents:
1022
diff
changeset
|
352 assume it expanded something. */ |
79f020f34683
(internal_self_insert): Assume Fexpand_abbrev expanded
Richard M. Stallman <rms@gnu.org>
parents:
1022
diff
changeset
|
353 if (MODIFF != modiff) |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
354 hairy = 2; |
239 | 355 } |
356 if ((c == ' ' || c == '\n') | |
357 && !noautofill | |
10474
caf4440e63e8
(internal_self_insert): Don't test current_column
Richard M. Stallman <rms@gnu.org>
parents:
10425
diff
changeset
|
358 && !NILP (current_buffer->auto_fill_function)) |
239 | 359 { |
360 if (c1 != '\n') | |
8649
e64cf8a4bf28
(internal_self_insert): Use insert_and_inherit.
Richard M. Stallman <rms@gnu.org>
parents:
8088
diff
changeset
|
361 insert_and_inherit (&c1, 1); |
239 | 362 call0 (current_buffer->auto_fill_function); |
363 if (c1 == '\n') | |
8649
e64cf8a4bf28
(internal_self_insert): Use insert_and_inherit.
Richard M. Stallman <rms@gnu.org>
parents:
8088
diff
changeset
|
364 insert_and_inherit (&c1, 1); |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
365 hairy = 2; |
239 | 366 } |
367 else | |
8649
e64cf8a4bf28
(internal_self_insert): Use insert_and_inherit.
Richard M. Stallman <rms@gnu.org>
parents:
8088
diff
changeset
|
368 insert_and_inherit (&c1, 1); |
239 | 369 synt = SYNTAX (c); |
370 if ((synt == Sclose || synt == Smath) | |
485 | 371 && !NILP (Vblink_paren_function) && INTERACTIVE) |
239 | 372 { |
373 call0 (Vblink_paren_function); | |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
374 hairy = 2; |
239 | 375 } |
376 return hairy; | |
377 } | |
378 | |
379 /* module initialization */ | |
380 | |
381 syms_of_cmds () | |
382 { | |
383 Qkill_backward_chars = intern ("kill-backward-chars"); | |
384 staticpro (&Qkill_backward_chars); | |
385 | |
386 Qkill_forward_chars = intern ("kill-forward-chars"); | |
387 staticpro (&Qkill_forward_chars); | |
388 | |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
389 Qoverwrite_mode_binary = intern ("overwrite-mode-binary"); |
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
390 staticpro (&Qoverwrite_mode_binary); |
1948
e7b8107294b7
(syms_of_cmds): New var `overwrite-binary-mode'.
Richard M. Stallman <rms@gnu.org>
parents:
1098
diff
changeset
|
391 |
10425
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
392 Qhard = intern ("hard"); |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
393 staticpro (&Qhard); |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
394 |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
395 DEFVAR_BOOL ("use-hard-newlines", &Vuse_hard_newlines, |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
396 "Non-nil means to distinguish hard and soft newlines. |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
397 When this is non-nil, the functions `newline' and `open-line' add the |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
398 text-property `hard' to newlines that they insert. Also, a line is |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
399 only considered as a candidate to match `paragraph-start' or |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
400 `paragraph-separate' if it follows a hard newline. Newlines not |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
401 marked hard are called \"soft\", and are always internal to |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
402 paragraphs. The fill functions always insert soft newlines."); |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
403 Vuse_hard_newlines = 0; |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
404 |
239 | 405 DEFVAR_LISP ("blink-paren-function", &Vblink_paren_function, |
406 "Function called, if non-nil, whenever a close parenthesis is inserted.\n\ | |
407 More precisely, a char with closeparen syntax is self-inserted."); | |
408 Vblink_paren_function = Qnil; | |
409 | |
410 defsubr (&Sforward_char); | |
411 defsubr (&Sbackward_char); | |
412 defsubr (&Sforward_line); | |
413 defsubr (&Sbeginning_of_line); | |
414 defsubr (&Send_of_line); | |
415 | |
416 defsubr (&Sdelete_char); | |
417 defsubr (&Sdelete_backward_char); | |
418 | |
419 defsubr (&Sself_insert_command); | |
420 defsubr (&Snewline); | |
421 } | |
422 | |
423 keys_of_cmds () | |
424 { | |
425 int n; | |
426 | |
10425
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
427 initial_define_key (global_map, Ctl ('M'), "newline"); |
f44f048966e8
(Vuse_hard_newlines): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9884
diff
changeset
|
428 initial_define_key (global_map, Ctl ('I'), "self-insert-command"); |
239 | 429 for (n = 040; n < 0177; n++) |
430 initial_define_key (global_map, n, "self-insert-command"); | |
5491
3965bf498738
(keys_of_cmds) [MSDOS]: Chars 0200 to 0237 self-insert.
Richard M. Stallman <rms@gnu.org>
parents:
5054
diff
changeset
|
431 #ifdef MSDOS |
3965bf498738
(keys_of_cmds) [MSDOS]: Chars 0200 to 0237 self-insert.
Richard M. Stallman <rms@gnu.org>
parents:
5054
diff
changeset
|
432 for (n = 0200; n < 0240; n++) |
3965bf498738
(keys_of_cmds) [MSDOS]: Chars 0200 to 0237 self-insert.
Richard M. Stallman <rms@gnu.org>
parents:
5054
diff
changeset
|
433 initial_define_key (global_map, n, "self-insert-command"); |
3965bf498738
(keys_of_cmds) [MSDOS]: Chars 0200 to 0237 self-insert.
Richard M. Stallman <rms@gnu.org>
parents:
5054
diff
changeset
|
434 #endif |
5054
34c280d4e1af
(keys_of_cmds): Make 0377 self-inserting.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
435 for (n = 0240; n < 0400; n++) |
3223
28a9541901d7
(keys_of_cmds): Predefined 0240-0376 as self-insert.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
436 initial_define_key (global_map, n, "self-insert-command"); |
239 | 437 |
438 initial_define_key (global_map, Ctl ('A'), "beginning-of-line"); | |
439 initial_define_key (global_map, Ctl ('B'), "backward-char"); | |
440 initial_define_key (global_map, Ctl ('D'), "delete-char"); | |
441 initial_define_key (global_map, Ctl ('E'), "end-of-line"); | |
442 initial_define_key (global_map, Ctl ('F'), "forward-char"); | |
443 initial_define_key (global_map, 0177, "delete-backward-char"); | |
444 } |