Mercurial > emacs
annotate src/cmds.c @ 9341:e5ecfda9e730
(single_keymap_panes, Fx_popup_menu): Don't use XFASTINT as an lvalue.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 04 Oct 1994 19:49:16 +0000 |
parents | 1ff5359ac932 |
children | b7f3059c308a |
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; | |
29 | |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
30 /* 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
|
31 Lisp_Object Qoverwrite_mode_binary; |
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
32 |
239 | 33 |
34 DEFUN ("forward-char", Fforward_char, Sforward_char, 0, 1, "p", | |
35 "Move point right ARG characters (left if ARG negative).\n\ | |
36 On reaching end of buffer, stop and signal error.") | |
37 (n) | |
38 Lisp_Object n; | |
39 { | |
485 | 40 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
|
41 XSETFASTINT (n, 1); |
239 | 42 else |
43 CHECK_NUMBER (n, 0); | |
44 | |
2777
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
45 /* 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
|
46 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
|
47 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
|
48 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
|
49 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
|
50 { |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
51 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
|
52 |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
53 if (new_point < BEGV) |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
54 { |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
55 SET_PT (BEGV); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
56 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
|
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 > ZV) |
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 (ZV); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
61 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
|
62 } |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
63 |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
64 SET_PT (new_point); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
65 } |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
66 |
239 | 67 return Qnil; |
68 } | |
69 | |
70 DEFUN ("backward-char", Fbackward_char, Sbackward_char, 0, 1, "p", | |
71 "Move point left ARG characters (right if ARG negative).\n\ | |
72 On attempt to pass beginning or end of buffer, stop and signal error.") | |
73 (n) | |
74 Lisp_Object n; | |
75 { | |
485 | 76 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
|
77 XSETFASTINT (n, 1); |
239 | 78 else |
79 CHECK_NUMBER (n, 0); | |
80 | |
81 XSETINT (n, - XINT (n)); | |
82 return Fforward_char (n); | |
83 } | |
84 | |
85 DEFUN ("forward-line", Fforward_line, Sforward_line, 0, 1, "p", | |
86 "Move ARG lines forward (backward if ARG is negative).\n\ | |
87 Precisely, if point is on line I, move to the start of line I + ARG.\n\ | |
88 If there isn't room, go as far as possible (no error).\n\ | |
89 Returns the count of lines left to move. If moving forward,\n\ | |
90 that is ARG - number of lines moved; if backward, ARG + number moved.\n\ | |
91 With positive ARG, a non-empty line at the end counts as one line\n\ | |
92 successfully moved (for the return value).") | |
93 (n) | |
94 Lisp_Object n; | |
95 { | |
96 int pos2 = point; | |
97 int pos; | |
98 int count, shortage, negp; | |
99 | |
485 | 100 if (NILP (n)) |
239 | 101 count = 1; |
102 else | |
103 { | |
104 CHECK_NUMBER (n, 0); | |
105 count = XINT (n); | |
106 } | |
107 | |
108 negp = count <= 0; | |
5754
1864e9a12261
(Fforward_line): Pass new arg to scan_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
5491
diff
changeset
|
109 pos = scan_buffer ('\n', pos2, count - negp, &shortage, 1); |
239 | 110 if (shortage > 0 |
111 && (negp | |
647 | 112 || (ZV > BEGV |
113 && pos != pos2 | |
239 | 114 && FETCH_CHAR (pos - 1) != '\n'))) |
115 shortage--; | |
116 SET_PT (pos); | |
117 return make_number (negp ? - shortage : shortage); | |
118 } | |
119 | |
120 DEFUN ("beginning-of-line", Fbeginning_of_line, Sbeginning_of_line, | |
121 0, 1, "p", | |
122 "Move point to beginning of current line.\n\ | |
123 With argument ARG not nil or 1, move forward ARG - 1 lines first.\n\ | |
124 If scan reaches end of buffer, stop there without error.") | |
125 (n) | |
126 Lisp_Object n; | |
127 { | |
485 | 128 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
|
129 XSETFASTINT (n, 1); |
239 | 130 else |
131 CHECK_NUMBER (n, 0); | |
132 | |
133 Fforward_line (make_number (XINT (n) - 1)); | |
134 return Qnil; | |
135 } | |
136 | |
137 DEFUN ("end-of-line", Fend_of_line, Send_of_line, | |
138 0, 1, "p", | |
139 "Move point to end of current line.\n\ | |
140 With argument ARG not nil or 1, move forward ARG - 1 lines first.\n\ | |
141 If scan reaches end of buffer, stop there without error.") | |
142 (n) | |
143 Lisp_Object n; | |
144 { | |
145 register int pos; | |
146 register int stop; | |
147 | |
485 | 148 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
|
149 XSETFASTINT (n, 1); |
239 | 150 else |
151 CHECK_NUMBER (n, 0); | |
152 | |
153 if (XINT (n) != 1) | |
154 Fforward_line (make_number (XINT (n) - 1)); | |
155 | |
156 pos = point; | |
157 stop = ZV; | |
158 while (pos < stop && FETCH_CHAR (pos) != '\n') pos++; | |
159 SET_PT (pos); | |
160 | |
161 return Qnil; | |
162 } | |
163 | |
164 DEFUN ("delete-char", Fdelete_char, Sdelete_char, 1, 2, "p\nP", | |
165 "Delete the following ARG characters (previous, with negative arg).\n\ | |
166 Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).\n\ | |
167 Interactively, ARG is the prefix arg, and KILLFLAG is set if\n\ | |
168 ARG was explicitly specified.") | |
169 (n, killflag) | |
170 Lisp_Object n, killflag; | |
171 { | |
172 CHECK_NUMBER (n, 0); | |
173 | |
485 | 174 if (NILP (killflag)) |
239 | 175 { |
176 if (XINT (n) < 0) | |
177 { | |
178 if (point + XINT (n) < BEGV) | |
179 Fsignal (Qbeginning_of_buffer, Qnil); | |
180 else | |
181 del_range (point + XINT (n), point); | |
182 } | |
183 else | |
184 { | |
185 if (point + XINT (n) > ZV) | |
186 Fsignal (Qend_of_buffer, Qnil); | |
187 else | |
188 del_range (point, point + XINT (n)); | |
189 } | |
190 } | |
191 else | |
192 { | |
193 call1 (Qkill_forward_chars, n); | |
194 } | |
195 return Qnil; | |
196 } | |
197 | |
198 DEFUN ("delete-backward-char", Fdelete_backward_char, Sdelete_backward_char, | |
199 1, 2, "p\nP", | |
200 "Delete the previous ARG characters (following, with negative ARG).\n\ | |
201 Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).\n\ | |
202 Interactively, ARG is the prefix arg, and KILLFLAG is set if\n\ | |
203 ARG was explicitly specified.") | |
204 (n, killflag) | |
205 Lisp_Object n, killflag; | |
206 { | |
207 CHECK_NUMBER (n, 0); | |
208 return Fdelete_char (make_number (-XINT (n)), killflag); | |
209 } | |
210 | |
211 DEFUN ("self-insert-command", Fself_insert_command, Sself_insert_command, 1, 1, "p", | |
212 "Insert the character you type.\n\ | |
213 Whichever character you type to run this command is inserted.") | |
214 (arg) | |
215 Lisp_Object arg; | |
216 { | |
217 CHECK_NUMBER (arg, 0); | |
218 | |
219 /* 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
|
220 if (!INTEGERP (last_command_char)) |
239 | 221 bitch_at_user (); |
222 else | |
223 while (XINT (arg) > 0) | |
224 { | |
9332
1ff5359ac932
(Fself_insert_command, Fnewline): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9300
diff
changeset
|
225 /* 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
|
226 XSETFASTINT (arg, XFASTINT (arg) - 1); |
239 | 227 internal_self_insert (XINT (last_command_char), XFASTINT (arg) != 0); |
228 } | |
229 | |
230 return Qnil; | |
231 } | |
232 | |
233 DEFUN ("newline", Fnewline, Snewline, 0, 1, "P", | |
234 "Insert a newline. With arg, insert that many newlines.\n\ | |
235 In Auto Fill mode, if no numeric arg, break the preceding line if it's long.") | |
236 (arg1) | |
237 Lisp_Object arg1; | |
238 { | |
239 int flag; | |
240 Lisp_Object arg; | |
241 char c1 = '\n'; | |
242 | |
243 arg = Fprefix_numeric_value (arg1); | |
244 | |
485 | 245 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
|
246 Fbarf_if_buffer_read_only (); |
239 | 247 |
1986
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
248 /* 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
|
249 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
|
250 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
|
251 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
|
252 |
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
253 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
|
254 the insertion correctly. Luckily, internal_self_insert's special |
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
255 features all do nothing in that case. */ |
239 | 256 |
257 flag = point > BEGV && FETCH_CHAR (point - 1) == '\n'; | |
8755 | 258 /* Don't do this if at the beginning of the window. */ |
259 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer | |
260 && marker_position (XWINDOW (selected_window)->start) == PT) | |
261 flag = 0; | |
262 | |
4561
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
263 #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
|
264 /* 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
|
265 in the vicinity. |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
266 ??? We need to check for change hook properties, etc. */ |
239 | 267 if (flag) |
4561
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
268 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
|
269 flag = 0; |
4372
189b84c7dbc5
(Fnewline): Disable the "insert one position before"
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
270 #endif |
4561
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
271 |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
272 if (flag) |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
273 SET_PT (point - 1); |
239 | 274 |
275 while (XINT (arg) > 0) | |
276 { | |
277 if (flag) | |
278 insert (&c1, 1); | |
279 else | |
485 | 280 internal_self_insert ('\n', !NILP (arg1)); |
9332
1ff5359ac932
(Fself_insert_command, Fnewline): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9300
diff
changeset
|
281 /* 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
|
282 XSETFASTINT (arg, XFASTINT (arg) - 1); |
239 | 283 } |
284 | |
285 if (flag) | |
286 SET_PT (point + 1); | |
287 | |
288 return Qnil; | |
289 } | |
290 | |
1022
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
291 /* 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
|
292 even if it is enabled. |
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
293 |
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
294 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
|
295 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
|
296 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
|
297 |
239 | 298 internal_self_insert (c1, noautofill) |
299 char c1; | |
300 int noautofill; | |
301 { | |
302 extern Lisp_Object Fexpand_abbrev (); | |
303 int hairy = 0; | |
304 Lisp_Object tem; | |
305 register enum syntaxcode synt; | |
306 register int c = c1; | |
6496
e1967b6d9a5c
(internal_self_insert): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
5754
diff
changeset
|
307 Lisp_Object overwrite; |
239 | 308 |
6496
e1967b6d9a5c
(internal_self_insert): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
5754
diff
changeset
|
309 overwrite = current_buffer->overwrite_mode; |
6788
4c912c5779f5
(internal_self_insert): Test Vafter_change_functions,
Richard M. Stallman <rms@gnu.org>
parents:
6496
diff
changeset
|
310 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
|
311 || !NILP (Vbefore_change_functions) || !NILP (Vafter_change_functions)) |
239 | 312 hairy = 1; |
313 | |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
314 if (!NILP (overwrite) |
239 | 315 && point < ZV |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
316 && (EQ (overwrite, Qoverwrite_mode_binary) |
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
317 || (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
|
318 && (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
|
319 || FETCH_CHAR (point) != '\t' |
239 | 320 || 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
|
321 || XFASTINT (current_buffer->tab_width) > 20 |
239 | 322 || !((current_column () + 1) % XFASTINT (current_buffer->tab_width)))) |
323 { | |
324 del_range (point, point + 1); | |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
325 hairy = 2; |
239 | 326 } |
485 | 327 if (!NILP (current_buffer->abbrev_mode) |
239 | 328 && SYNTAX (c) != Sword |
485 | 329 && NILP (current_buffer->read_only) |
239 | 330 && point > BEGV && SYNTAX (FETCH_CHAR (point - 1)) == Sword) |
331 { | |
1098
79f020f34683
(internal_self_insert): Assume Fexpand_abbrev expanded
Richard M. Stallman <rms@gnu.org>
parents:
1022
diff
changeset
|
332 int modiff = MODIFF; |
1022
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
333 Fexpand_abbrev (); |
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
334 /* 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
|
335 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
|
336 assume it expanded something. */ |
79f020f34683
(internal_self_insert): Assume Fexpand_abbrev expanded
Richard M. Stallman <rms@gnu.org>
parents:
1022
diff
changeset
|
337 if (MODIFF != modiff) |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
338 hairy = 2; |
239 | 339 } |
340 if ((c == ' ' || c == '\n') | |
341 && !noautofill | |
485 | 342 && !NILP (current_buffer->auto_fill_function) |
239 | 343 && current_column () > XFASTINT (current_buffer->fill_column)) |
344 { | |
345 if (c1 != '\n') | |
8649
e64cf8a4bf28
(internal_self_insert): Use insert_and_inherit.
Richard M. Stallman <rms@gnu.org>
parents:
8088
diff
changeset
|
346 insert_and_inherit (&c1, 1); |
239 | 347 call0 (current_buffer->auto_fill_function); |
348 if (c1 == '\n') | |
8649
e64cf8a4bf28
(internal_self_insert): Use insert_and_inherit.
Richard M. Stallman <rms@gnu.org>
parents:
8088
diff
changeset
|
349 insert_and_inherit (&c1, 1); |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
350 hairy = 2; |
239 | 351 } |
352 else | |
8649
e64cf8a4bf28
(internal_self_insert): Use insert_and_inherit.
Richard M. Stallman <rms@gnu.org>
parents:
8088
diff
changeset
|
353 insert_and_inherit (&c1, 1); |
239 | 354 synt = SYNTAX (c); |
355 if ((synt == Sclose || synt == Smath) | |
485 | 356 && !NILP (Vblink_paren_function) && INTERACTIVE) |
239 | 357 { |
358 call0 (Vblink_paren_function); | |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
359 hairy = 2; |
239 | 360 } |
361 return hairy; | |
362 } | |
363 | |
364 /* module initialization */ | |
365 | |
366 syms_of_cmds () | |
367 { | |
368 Qkill_backward_chars = intern ("kill-backward-chars"); | |
369 staticpro (&Qkill_backward_chars); | |
370 | |
371 Qkill_forward_chars = intern ("kill-forward-chars"); | |
372 staticpro (&Qkill_forward_chars); | |
373 | |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
374 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
|
375 staticpro (&Qoverwrite_mode_binary); |
1948
e7b8107294b7
(syms_of_cmds): New var `overwrite-binary-mode'.
Richard M. Stallman <rms@gnu.org>
parents:
1098
diff
changeset
|
376 |
239 | 377 DEFVAR_LISP ("blink-paren-function", &Vblink_paren_function, |
378 "Function called, if non-nil, whenever a close parenthesis is inserted.\n\ | |
379 More precisely, a char with closeparen syntax is self-inserted."); | |
380 Vblink_paren_function = Qnil; | |
381 | |
382 defsubr (&Sforward_char); | |
383 defsubr (&Sbackward_char); | |
384 defsubr (&Sforward_line); | |
385 defsubr (&Sbeginning_of_line); | |
386 defsubr (&Send_of_line); | |
387 | |
388 defsubr (&Sdelete_char); | |
389 defsubr (&Sdelete_backward_char); | |
390 | |
391 defsubr (&Sself_insert_command); | |
392 defsubr (&Snewline); | |
393 } | |
394 | |
395 keys_of_cmds () | |
396 { | |
397 int n; | |
398 | |
399 initial_define_key (global_map, Ctl('M'), "newline"); | |
400 initial_define_key (global_map, Ctl('I'), "self-insert-command"); | |
401 for (n = 040; n < 0177; n++) | |
402 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
|
403 #ifdef MSDOS |
3965bf498738
(keys_of_cmds) [MSDOS]: Chars 0200 to 0237 self-insert.
Richard M. Stallman <rms@gnu.org>
parents:
5054
diff
changeset
|
404 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
|
405 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
|
406 #endif |
5054
34c280d4e1af
(keys_of_cmds): Make 0377 self-inserting.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
407 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
|
408 initial_define_key (global_map, n, "self-insert-command"); |
239 | 409 |
410 initial_define_key (global_map, Ctl ('A'), "beginning-of-line"); | |
411 initial_define_key (global_map, Ctl ('B'), "backward-char"); | |
412 initial_define_key (global_map, Ctl ('D'), "delete-char"); | |
413 initial_define_key (global_map, Ctl ('E'), "end-of-line"); | |
414 initial_define_key (global_map, Ctl ('F'), "forward-char"); | |
415 initial_define_key (global_map, 0177, "delete-backward-char"); | |
416 } |