Mercurial > emacs
annotate src/cmds.c @ 8304:6c34e249d217
type-break-good-rest-interval: Doc fix.
type-break-keystroke-threshold: Calcuate based on 35wpm, not 30.
type-break-demo-function-vector: Variable deleted.
type-break-demo-functions: New variable.
type-break: Use new variable.
type-break-time-difference: Return absolute value.
type-break-format-time: New inline function (defsubst).
type-break-statistics, type-break: Use it.
type-break-mode: Just test prefix-numeric-value >= 0 to to enable mode.
The only visible difference is that invocation with no prefix arg the same
as if given positive numeric prefix arg now.
Do not document type-break-query-interval or type-break-query-function
here; make fritterware-happy users read the source.
type-break: If type break is much less (at least 2 minutes) than a "good
rest interval", ask user whether or not to continue with the break.
type-break-check: Do nothing if user is in the minibuffer.
When alarm is signaled but min threshold isn't reached, reschedule break.
type-break-demo-life: Eat char entered to end life demo.
author | Noah Friedman <friedman@splode.com> |
---|---|
date | Thu, 21 Jul 1994 10:11:59 +0000 |
parents | a831980bb12e |
children | e64cf8a4bf28 |
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" | |
26 | |
27 Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function; | |
28 | |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
29 /* 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
|
30 Lisp_Object Qoverwrite_mode_binary; |
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
31 |
239 | 32 |
33 DEFUN ("forward-char", Fforward_char, Sforward_char, 0, 1, "p", | |
34 "Move point right ARG characters (left if ARG negative).\n\ | |
35 On reaching end of buffer, stop and signal error.") | |
36 (n) | |
37 Lisp_Object n; | |
38 { | |
485 | 39 if (NILP (n)) |
239 | 40 XFASTINT (n) = 1; |
41 else | |
42 CHECK_NUMBER (n, 0); | |
43 | |
2777
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
44 /* 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
|
45 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
|
46 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
|
47 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
|
48 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
|
49 { |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
50 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
|
51 |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
52 if (new_point < BEGV) |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
53 { |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
54 SET_PT (BEGV); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
55 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
|
56 } |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
57 if (new_point > ZV) |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
58 { |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
59 SET_PT (ZV); |
40e00789f1c1
* cmds.c (Fforward_char): Check proposed new position, and then
Jim Blandy <jimb@redhat.com>
parents:
2214
diff
changeset
|
60 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
|
61 } |
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 SET_PT (new_point); |
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 |
239 | 66 return Qnil; |
67 } | |
68 | |
69 DEFUN ("backward-char", Fbackward_char, Sbackward_char, 0, 1, "p", | |
70 "Move point left ARG characters (right if ARG negative).\n\ | |
71 On attempt to pass beginning or end of buffer, stop and signal error.") | |
72 (n) | |
73 Lisp_Object n; | |
74 { | |
485 | 75 if (NILP (n)) |
239 | 76 XFASTINT (n) = 1; |
77 else | |
78 CHECK_NUMBER (n, 0); | |
79 | |
80 XSETINT (n, - XINT (n)); | |
81 return Fforward_char (n); | |
82 } | |
83 | |
84 DEFUN ("forward-line", Fforward_line, Sforward_line, 0, 1, "p", | |
85 "Move ARG lines forward (backward if ARG is negative).\n\ | |
86 Precisely, if point is on line I, move to the start of line I + ARG.\n\ | |
87 If there isn't room, go as far as possible (no error).\n\ | |
88 Returns the count of lines left to move. If moving forward,\n\ | |
89 that is ARG - number of lines moved; if backward, ARG + number moved.\n\ | |
90 With positive ARG, a non-empty line at the end counts as one line\n\ | |
91 successfully moved (for the return value).") | |
92 (n) | |
93 Lisp_Object n; | |
94 { | |
95 int pos2 = point; | |
96 int pos; | |
97 int count, shortage, negp; | |
98 | |
485 | 99 if (NILP (n)) |
239 | 100 count = 1; |
101 else | |
102 { | |
103 CHECK_NUMBER (n, 0); | |
104 count = XINT (n); | |
105 } | |
106 | |
107 negp = count <= 0; | |
5754
1864e9a12261
(Fforward_line): Pass new arg to scan_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
5491
diff
changeset
|
108 pos = scan_buffer ('\n', pos2, count - negp, &shortage, 1); |
239 | 109 if (shortage > 0 |
110 && (negp | |
647 | 111 || (ZV > BEGV |
112 && pos != pos2 | |
239 | 113 && FETCH_CHAR (pos - 1) != '\n'))) |
114 shortage--; | |
115 SET_PT (pos); | |
116 return make_number (negp ? - shortage : shortage); | |
117 } | |
118 | |
119 DEFUN ("beginning-of-line", Fbeginning_of_line, Sbeginning_of_line, | |
120 0, 1, "p", | |
121 "Move point to beginning of current line.\n\ | |
122 With argument ARG not nil or 1, move forward ARG - 1 lines first.\n\ | |
123 If scan reaches end of buffer, stop there without error.") | |
124 (n) | |
125 Lisp_Object n; | |
126 { | |
485 | 127 if (NILP (n)) |
239 | 128 XFASTINT (n) = 1; |
129 else | |
130 CHECK_NUMBER (n, 0); | |
131 | |
132 Fforward_line (make_number (XINT (n) - 1)); | |
133 return Qnil; | |
134 } | |
135 | |
136 DEFUN ("end-of-line", Fend_of_line, Send_of_line, | |
137 0, 1, "p", | |
138 "Move point to end of current line.\n\ | |
139 With argument ARG not nil or 1, move forward ARG - 1 lines first.\n\ | |
140 If scan reaches end of buffer, stop there without error.") | |
141 (n) | |
142 Lisp_Object n; | |
143 { | |
144 register int pos; | |
145 register int stop; | |
146 | |
485 | 147 if (NILP (n)) |
239 | 148 XFASTINT (n) = 1; |
149 else | |
150 CHECK_NUMBER (n, 0); | |
151 | |
152 if (XINT (n) != 1) | |
153 Fforward_line (make_number (XINT (n) - 1)); | |
154 | |
155 pos = point; | |
156 stop = ZV; | |
157 while (pos < stop && FETCH_CHAR (pos) != '\n') pos++; | |
158 SET_PT (pos); | |
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. */ | |
219 if (XTYPE (last_command_char) != Lisp_Int) | |
220 bitch_at_user (); | |
221 else | |
222 while (XINT (arg) > 0) | |
223 { | |
224 XFASTINT (arg)--; /* Ok since old and new vals both nonneg */ | |
225 internal_self_insert (XINT (last_command_char), XFASTINT (arg) != 0); | |
226 } | |
227 | |
228 return Qnil; | |
229 } | |
230 | |
231 DEFUN ("newline", Fnewline, Snewline, 0, 1, "P", | |
232 "Insert a newline. With arg, insert that many newlines.\n\ | |
233 In Auto Fill mode, if no numeric arg, break the preceding line if it's long.") | |
234 (arg1) | |
235 Lisp_Object arg1; | |
236 { | |
237 int flag; | |
238 Lisp_Object arg; | |
239 char c1 = '\n'; | |
240 | |
241 arg = Fprefix_numeric_value (arg1); | |
242 | |
485 | 243 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
|
244 Fbarf_if_buffer_read_only (); |
239 | 245 |
1986
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
246 /* 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
|
247 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
|
248 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
|
249 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
|
250 |
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
251 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
|
252 the insertion correctly. Luckily, internal_self_insert's special |
b1bc0b15ca7f
* cmds.c (Fnewline): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1969
diff
changeset
|
253 features all do nothing in that case. */ |
239 | 254 |
255 flag = point > BEGV && FETCH_CHAR (point - 1) == '\n'; | |
4561
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
256 #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
|
257 /* 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
|
258 in the vicinity. |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
259 ??? We need to check for change hook properties, etc. */ |
239 | 260 if (flag) |
4561
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
261 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
|
262 flag = 0; |
4372
189b84c7dbc5
(Fnewline): Disable the "insert one position before"
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
263 #endif |
4561
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
264 |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
265 if (flag) |
f8a991076926
(Fnewline): If we don't do the first SET_PT,
Richard M. Stallman <rms@gnu.org>
parents:
4372
diff
changeset
|
266 SET_PT (point - 1); |
239 | 267 |
268 while (XINT (arg) > 0) | |
269 { | |
270 if (flag) | |
271 insert (&c1, 1); | |
272 else | |
485 | 273 internal_self_insert ('\n', !NILP (arg1)); |
239 | 274 XFASTINT (arg)--; /* Ok since old and new vals both nonneg */ |
275 } | |
276 | |
277 if (flag) | |
278 SET_PT (point + 1); | |
279 | |
280 return Qnil; | |
281 } | |
282 | |
1022
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
283 /* 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
|
284 even if it is enabled. |
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
285 |
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
286 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
|
287 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
|
288 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
|
289 |
239 | 290 internal_self_insert (c1, noautofill) |
291 char c1; | |
292 int noautofill; | |
293 { | |
294 extern Lisp_Object Fexpand_abbrev (); | |
295 int hairy = 0; | |
296 Lisp_Object tem; | |
297 register enum syntaxcode synt; | |
298 register int c = c1; | |
6496
e1967b6d9a5c
(internal_self_insert): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
5754
diff
changeset
|
299 Lisp_Object overwrite; |
239 | 300 |
6496
e1967b6d9a5c
(internal_self_insert): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
5754
diff
changeset
|
301 overwrite = current_buffer->overwrite_mode; |
6788
4c912c5779f5
(internal_self_insert): Test Vafter_change_functions,
Richard M. Stallman <rms@gnu.org>
parents:
6496
diff
changeset
|
302 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
|
303 || !NILP (Vbefore_change_functions) || !NILP (Vafter_change_functions)) |
239 | 304 hairy = 1; |
305 | |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
306 if (!NILP (overwrite) |
239 | 307 && point < ZV |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
308 && (EQ (overwrite, Qoverwrite_mode_binary) |
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
309 || (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
|
310 && (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
|
311 || FETCH_CHAR (point) != '\t' |
239 | 312 || 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
|
313 || XFASTINT (current_buffer->tab_width) > 20 |
239 | 314 || !((current_column () + 1) % XFASTINT (current_buffer->tab_width)))) |
315 { | |
316 del_range (point, point + 1); | |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
317 hairy = 2; |
239 | 318 } |
485 | 319 if (!NILP (current_buffer->abbrev_mode) |
239 | 320 && SYNTAX (c) != Sword |
485 | 321 && NILP (current_buffer->read_only) |
239 | 322 && point > BEGV && SYNTAX (FETCH_CHAR (point - 1)) == Sword) |
323 { | |
1098
79f020f34683
(internal_self_insert): Assume Fexpand_abbrev expanded
Richard M. Stallman <rms@gnu.org>
parents:
1022
diff
changeset
|
324 int modiff = MODIFF; |
1022
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
325 Fexpand_abbrev (); |
f7e3bac23a06
(internal_self_insert): Ignore value of Fexpand_abbrev;
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
326 /* 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
|
327 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
|
328 assume it expanded something. */ |
79f020f34683
(internal_self_insert): Assume Fexpand_abbrev expanded
Richard M. Stallman <rms@gnu.org>
parents:
1022
diff
changeset
|
329 if (MODIFF != modiff) |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
330 hairy = 2; |
239 | 331 } |
332 if ((c == ' ' || c == '\n') | |
333 && !noautofill | |
485 | 334 && !NILP (current_buffer->auto_fill_function) |
239 | 335 && current_column () > XFASTINT (current_buffer->fill_column)) |
336 { | |
337 if (c1 != '\n') | |
338 insert (&c1, 1); | |
339 call0 (current_buffer->auto_fill_function); | |
340 if (c1 == '\n') | |
341 insert (&c1, 1); | |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
342 hairy = 2; |
239 | 343 } |
344 else | |
345 insert (&c1, 1); | |
346 synt = SYNTAX (c); | |
347 if ((synt == Sclose || synt == Smath) | |
485 | 348 && !NILP (Vblink_paren_function) && INTERACTIVE) |
239 | 349 { |
350 call0 (Vblink_paren_function); | |
8088
a831980bb12e
(internal_self_insert): Now can return 2.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
351 hairy = 2; |
239 | 352 } |
353 return hairy; | |
354 } | |
355 | |
356 /* module initialization */ | |
357 | |
358 syms_of_cmds () | |
359 { | |
360 Qkill_backward_chars = intern ("kill-backward-chars"); | |
361 staticpro (&Qkill_backward_chars); | |
362 | |
363 Qkill_forward_chars = intern ("kill-forward-chars"); | |
364 staticpro (&Qkill_forward_chars); | |
365 | |
2214
e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents:
2159
diff
changeset
|
366 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
|
367 staticpro (&Qoverwrite_mode_binary); |
1948
e7b8107294b7
(syms_of_cmds): New var `overwrite-binary-mode'.
Richard M. Stallman <rms@gnu.org>
parents:
1098
diff
changeset
|
368 |
239 | 369 DEFVAR_LISP ("blink-paren-function", &Vblink_paren_function, |
370 "Function called, if non-nil, whenever a close parenthesis is inserted.\n\ | |
371 More precisely, a char with closeparen syntax is self-inserted."); | |
372 Vblink_paren_function = Qnil; | |
373 | |
374 defsubr (&Sforward_char); | |
375 defsubr (&Sbackward_char); | |
376 defsubr (&Sforward_line); | |
377 defsubr (&Sbeginning_of_line); | |
378 defsubr (&Send_of_line); | |
379 | |
380 defsubr (&Sdelete_char); | |
381 defsubr (&Sdelete_backward_char); | |
382 | |
383 defsubr (&Sself_insert_command); | |
384 defsubr (&Snewline); | |
385 } | |
386 | |
387 keys_of_cmds () | |
388 { | |
389 int n; | |
390 | |
391 initial_define_key (global_map, Ctl('M'), "newline"); | |
392 initial_define_key (global_map, Ctl('I'), "self-insert-command"); | |
393 for (n = 040; n < 0177; n++) | |
394 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
|
395 #ifdef MSDOS |
3965bf498738
(keys_of_cmds) [MSDOS]: Chars 0200 to 0237 self-insert.
Richard M. Stallman <rms@gnu.org>
parents:
5054
diff
changeset
|
396 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
|
397 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
|
398 #endif |
5054
34c280d4e1af
(keys_of_cmds): Make 0377 self-inserting.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
399 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
|
400 initial_define_key (global_map, n, "self-insert-command"); |
239 | 401 |
402 initial_define_key (global_map, Ctl ('A'), "beginning-of-line"); | |
403 initial_define_key (global_map, Ctl ('B'), "backward-char"); | |
404 initial_define_key (global_map, Ctl ('D'), "delete-char"); | |
405 initial_define_key (global_map, Ctl ('E'), "end-of-line"); | |
406 initial_define_key (global_map, Ctl ('F'), "forward-char"); | |
407 initial_define_key (global_map, 0177, "delete-backward-char"); | |
408 } |