1 /* Simple built-in editing commands.
2 Copyright (C) 1985, 1993 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
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
8 the Free Software Foundation; either version 2, or (at your option)
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.
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. */
27 Lisp_Object Qkill_forward_chars
, Qkill_backward_chars
, Vblink_paren_function
;
29 /* A possible value for a buffer's overwrite-mode variable. */
30 Lisp_Object Qoverwrite_mode_binary
;
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.")
44 /* This used to just set point to point + XINT (n), and then check
45 to see if it was within boundaries. But now that SET_PT can
46 potentially do a lot of stuff (calling entering and exiting
47 hooks, etcetera), that's not a good approach. So we validate the
48 proposed position, then set point. */
50 int new_point
= point
+ XINT (n
);
55 Fsignal (Qbeginning_of_buffer
, Qnil
);
60 Fsignal (Qend_of_buffer
, Qnil
);
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.")
80 XSETINT (n
, - XINT (n
));
81 return Fforward_char (n
);
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).")
97 int count
, shortage
, negp
;
108 pos
= scan_buffer ('\n', pos2
, count
- negp
, &shortage
, 1);
113 && FETCH_CHAR (pos
- 1) != '\n')))
116 return make_number (negp
? - shortage
: shortage
);
119 DEFUN ("beginning-of-line", Fbeginning_of_line
, Sbeginning_of_line
,
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.")
132 Fforward_line (make_number (XINT (n
) - 1));
136 DEFUN ("end-of-line", Fend_of_line
, Send_of_line
,
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.")
153 Fforward_line (make_number (XINT (n
) - 1));
157 while (pos
< stop
&& FETCH_CHAR (pos
) != '\n') pos
++;
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.")
169 Lisp_Object n
, killflag
;
177 if (point
+ XINT (n
) < BEGV
)
178 Fsignal (Qbeginning_of_buffer
, Qnil
);
180 del_range (point
+ XINT (n
), point
);
184 if (point
+ XINT (n
) > ZV
)
185 Fsignal (Qend_of_buffer
, Qnil
);
187 del_range (point
, point
+ XINT (n
));
192 call1 (Qkill_forward_chars
, n
);
197 DEFUN ("delete-backward-char", Fdelete_backward_char
, Sdelete_backward_char
,
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.")
204 Lisp_Object n
, killflag
;
207 return Fdelete_char (make_number (-XINT (n
)), killflag
);
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.")
216 CHECK_NUMBER (arg
, 0);
218 /* Barf if the key that invoked this was not a character. */
219 if (XTYPE (last_command_char
) != Lisp_Int
)
222 while (XINT (arg
) > 0)
224 XFASTINT (arg
)--; /* Ok since old and new vals both nonneg */
225 internal_self_insert (XINT (last_command_char
), XFASTINT (arg
) != 0);
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.")
241 arg
= Fprefix_numeric_value (arg1
);
243 if (!NILP (current_buffer
->read_only
))
244 Fbarf_if_buffer_read_only ();
246 /* Inserting a newline at the end of a line produces better
247 redisplay in try_window_id than inserting at the beginning of a
248 line, and the textual result is the same. So, if we're at
249 beginning of line, pretend to be at the end of the previous line.
251 We can't use internal_self_insert in that case since it won't do
252 the insertion correctly. Luckily, internal_self_insert's special
253 features all do nothing in that case. */
255 flag
= point
> BEGV
&& FETCH_CHAR (point
- 1) == '\n';
256 #ifdef USE_TEXT_PROPERTIES
257 /* We cannot use this optimization if properties change
259 ??? We need to check for change hook properties, etc. */
261 if (! (point
- 1 > BEGV
&& ! property_change_between_p (point
- 2, point
)))
268 while (XINT (arg
) > 0)
273 internal_self_insert ('\n', !NILP (arg1
));
274 XFASTINT (arg
)--; /* Ok since old and new vals both nonneg */
283 /* Insert character C1. If NOAUTOFILL is nonzero, don't do autofill
284 even if it is enabled.
286 If this insertion is suitable for direct output (completely simple),
287 return 0. A value of 1 indicates this *might* not have been simple. */
289 internal_self_insert (c1
, noautofill
)
293 extern Lisp_Object
Fexpand_abbrev ();
296 register enum syntaxcode synt
;
298 Lisp_Object overwrite
;
300 overwrite
= current_buffer
->overwrite_mode
;
301 if (!NILP (Vbefore_change_function
) || !NILP (Vafter_change_function
)
302 || !NILP (Vbefore_change_functions
) || !NILP (Vafter_change_functions
))
305 if (!NILP (overwrite
)
307 && (EQ (overwrite
, Qoverwrite_mode_binary
)
308 || (c
!= '\n' && FETCH_CHAR (point
) != '\n'))
309 && (EQ (overwrite
, Qoverwrite_mode_binary
)
310 || FETCH_CHAR (point
) != '\t'
311 || XINT (current_buffer
->tab_width
) <= 0
312 || XFASTINT (current_buffer
->tab_width
) > 20
313 || !((current_column () + 1) % XFASTINT (current_buffer
->tab_width
))))
315 del_range (point
, point
+ 1);
318 if (!NILP (current_buffer
->abbrev_mode
)
319 && SYNTAX (c
) != Sword
320 && NILP (current_buffer
->read_only
)
321 && point
> BEGV
&& SYNTAX (FETCH_CHAR (point
- 1)) == Sword
)
325 /* We can't trust the value of Fexpand_abbrev,
326 but if Fexpand_abbrev changed the buffer,
327 assume it expanded something. */
328 if (MODIFF
!= modiff
)
331 if ((c
== ' ' || c
== '\n')
333 && !NILP (current_buffer
->auto_fill_function
)
334 && current_column () > XFASTINT (current_buffer
->fill_column
))
338 call0 (current_buffer
->auto_fill_function
);
346 if ((synt
== Sclose
|| synt
== Smath
)
347 && !NILP (Vblink_paren_function
) && INTERACTIVE
)
349 call0 (Vblink_paren_function
);
355 /* module initialization */
359 Qkill_backward_chars
= intern ("kill-backward-chars");
360 staticpro (&Qkill_backward_chars
);
362 Qkill_forward_chars
= intern ("kill-forward-chars");
363 staticpro (&Qkill_forward_chars
);
365 Qoverwrite_mode_binary
= intern ("overwrite-mode-binary");
366 staticpro (&Qoverwrite_mode_binary
);
368 DEFVAR_LISP ("blink-paren-function", &Vblink_paren_function
,
369 "Function called, if non-nil, whenever a close parenthesis is inserted.\n\
370 More precisely, a char with closeparen syntax is self-inserted.");
371 Vblink_paren_function
= Qnil
;
373 defsubr (&Sforward_char
);
374 defsubr (&Sbackward_char
);
375 defsubr (&Sforward_line
);
376 defsubr (&Sbeginning_of_line
);
377 defsubr (&Send_of_line
);
379 defsubr (&Sdelete_char
);
380 defsubr (&Sdelete_backward_char
);
382 defsubr (&Sself_insert_command
);
390 initial_define_key (global_map
, Ctl('M'), "newline");
391 initial_define_key (global_map
, Ctl('I'), "self-insert-command");
392 for (n
= 040; n
< 0177; n
++)
393 initial_define_key (global_map
, n
, "self-insert-command");
395 for (n
= 0200; n
< 0240; n
++)
396 initial_define_key (global_map
, n
, "self-insert-command");
398 for (n
= 0240; n
< 0400; n
++)
399 initial_define_key (global_map
, n
, "self-insert-command");
401 initial_define_key (global_map
, Ctl ('A'), "beginning-of-line");
402 initial_define_key (global_map
, Ctl ('B'), "backward-char");
403 initial_define_key (global_map
, Ctl ('D'), "delete-char");
404 initial_define_key (global_map
, Ctl ('E'), "end-of-line");
405 initial_define_key (global_map
, Ctl ('F'), "forward-char");
406 initial_define_key (global_map
, 0177, "delete-backward-char");