head 1.1;A access ; symbols ; locks ; strict; comment @ * @; 1.1 date 85.03.31.18.10.47; author bbanerje; state Exp; branches ; next ; desc @@ 1.1 log @Initial revision @ text @/* Simple built-in editing commands. Copyright (C) 1985 Richard M. Stallman. This file is part of GNU Emacs. GNU Emacs is distributed in the hope that it will be useful, but without any warranty. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Everyone is granted permission to copy, modify and redistribute GNU Emacs, but only under the conditions described in the document "GNU Emacs copying permission notice". An exact copy of the document is supposed to have been given to you along with GNU Emacs so that you can know how you may redistribute it all. It should be in a file named COPYING. Among other things, the copyright notice and this notice must be preserved on all copies. */ #include "config.h" #include "lisp.h" #include "commands.h" #include "buffer.h" #include "syntax.h" Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_hook; int overwrite_mode; DEFUN ("forward-char", Fforward_char, Sforward_char, 0, 1, "p", "Move dot right ARG characters (left if ARG negative).\n\ On reaching end of buffer, stop and signal error.") (n) Lisp_Object n; { if (NULL (n)) XFASTINT (n) = 1; else CHECK_NUMBER (n, 0); SetDot (dot + XINT (n)); if (dot < FirstCharacter) { SetDot (FirstCharacter); Fsignal (Qbeginning_of_buffer, Qnil); } if (dot > NumCharacters + 1) { SetDot (NumCharacters + 1); Fsignal (Qend_of_buffer, Qnil); } return Qnil; } DEFUN ("backward-char", Fbackward_char, Sbackward_char, 0, 1, "p", "Move dot left ARG characters (right if ARG negative).\n\ On reaching end of buffer, stop and signal error.") (n) Lisp_Object n; { if (NULL (n)) XFASTINT (n) = 1; else CHECK_NUMBER (n, 0); XINT (n) *= -1; return Fforward_char (n); } DEFUN ("forward-line", Fforward_line, Sforward_line, 0, 1, "p", "Move dot forward past ARG newlines.\n\ If ARG is zero, position after previous newline.\n\ If ARG is negative, position after -ARG'th newline before that one.\n\ If scan reaches end of buffer, stop there without error;\n\ value is count of lines left to move.") (n) Lisp_Object n; { register int pos = dot; register int count, stop; if (NULL (n)) count = 1; else { CHECK_NUMBER (n, 0); count = XINT (n); } stop = FirstCharacter; if (count <= 0) { while (pos > stop && CharAt (pos - 1) != '\n') pos--; } while (count < 0 && pos > stop) { count++; pos--; /* In this loop, pos is one less than the position of scan. */ while (--pos >= stop && CharAt (pos) != '\n'); pos++; } stop = NumCharacters; while (count > 0 && pos <= stop) { count--; pos--; /* In this loop, pos is one less than the position of scan. */ while (++pos < stop && CharAt (pos) != '\n'); pos++; } SetDot (pos); return make_number (count); } DEFUN ("beginning-of-line", Fbeginning_of_line, Sbeginning_of_line, 0, 1, "p", "Move dot to beginning of current line.\n\ With argument ARG not nil or 1, move forward ARG - 1 lines first.\n\ If scan reaches end of buffer, stop there without error.") (n) Lisp_Object n; { if (NULL (n)) XFASTINT (n) = 1; else CHECK_NUMBER (n, 0); Fforward_line (make_number (XINT (n) - 1)); return Qnil; } DEFUN ("end-of-line", Fend_of_line, Send_of_line, 0, 1, "p", "Move dot to beginning of current line.\n\ With argument ARG not nil or 1, move forward ARG - 1 lines first.\n\ If scan reaches end of buffer, stop there without error.") (n) Lisp_Object n; { register int pos; register int stop; if (NULL (n)) XFASTINT (n) = 1; else CHECK_NUMBER (n, 0); if (XINT (n) != 1) Fforward_line (make_number (XINT (n) - 1)); pos = dot; stop = NumCharacters + 1; while (pos < stop && CharAt (pos) != '\n') pos++; SetDot (pos); return Qnil; } DEFUN ("delete-char", Fdelete_char, Sdelete_char, 1, 2, "p\nP", "Delete the following ARG characters (previous, with negative arg).\n\ Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).\n\ Interactively, ARG is the prefix arg, and kill if ARG was explicitly specd.") (n, killflag) Lisp_Object n, killflag; { CHECK_NUMBER (n, 0); if (NULL (killflag)) { if (XINT (n) < 0) { if (dot + XINT (n) < FirstCharacter) Fsignal (Qbeginning_of_buffer, Qnil); del_range (dot + XINT (n), dot); } else { if (dot + XINT (n) > NumCharacters + 1) Fsignal (Qend_of_buffer, Qnil); del_range (dot, dot + XINT (n)); } } else { call1 (Qkill_forward_chars, n); } return Qnil; } DEFUN ("delete-backward-char", Fdelete_backward_char, Sdelete_backward_char, 1, 2, "p\nP", "Delete the previous ARG characters (following, with negative ARG).\n\ Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).\n\ Interactively, ARG is the prefix arg, and kill if ARG was explicitly specd.") (n, killflag) Lisp_Object n, killflag; { CHECK_NUMBER (n, 0); return Fdelete_char (make_number (-XINT (n)), killflag); } DEFUN ("self-insert-command", Fself_insert_command, Sself_insert_command, 1, 1, "p", "Insert this character.") (arg) Lisp_Object arg; { CHECK_NUMBER (arg, 0); if (XINT (arg) == 0 && LastKeyStruck == ' ' && !NULL (bf_cur->auto_fill_hook) && current_column () > XFASTINT (bf_cur->fill_column)) Fapply (bf_cur->auto_fill_hook, Qnil); while (XINT (arg) > 0) SelfInsert (LastKeyStruck), XINT (arg)--; return Qnil; } DEFUN ("newline", Fnewline, Snewline, 0, 1, "p", "Insert a newline. With arg, insert that many newlines.") (arg) Lisp_Object arg; { if (NULL (arg)) XINT (arg) =1; else CHECK_NUMBER (arg, 0); while (XINT (arg) > 0) SelfInsert ('\n'), XINT (arg)--; return Qnil; } SelfInsert(c) char c; { extern int abbrev_mode; /* Defined in abbrev.c */ extern Lisp_Object Fexpand_abbrev (); int hairy = 0; Lisp_Object tem; if (overwrite_mode && (dot<=NumCharacters) && (c != '\n') && (CharAt (dot) != '\n') && (CharAt (dot) != '\t' || XINT (bf_cur->tab_width) <= 0 || !((current_column () + 1) % XFASTINT (bf_cur->tab_width)))) { del_range (dot, dot + 1); hairy = 1; } if (abbrev_mode && SYNTAX (c) != Sword && dot > FirstCharacter && SYNTAX (CharAt (dot - 1)) == Sword) { tem = Fexpand_abbrev (); if (!NULL (tem)) hairy = 1; } if ((c == ' ' || c == '\n') && !NULL (bf_cur->auto_fill_hook) && current_column () > XFASTINT (bf_cur->fill_column)) { InsCStr (&c, 1); Fapply (bf_cur->auto_fill_hook, Qnil); hairy = 1; } else InsCStr (&c, 1); if (SYNTAX (c) == Sclose && !NULL (Vblink_paren_hook) && INTERACTIVE) { Fapply (Vblink_paren_hook, Qnil); hairy = 1; } return hairy; } /* module initialization */ syms_of_cmds () { Qkill_backward_chars = intern ("kill-backward-chars"); staticpro (&Qkill_backward_chars); Qkill_forward_chars = intern ("kill-forward-chars"); staticpro (&Qkill_forward_chars); DefLispVar ("blink-paren-hook", &Vblink_paren_hook, "Function called, if non-nil, whenever a char with closeparen syntax is self-inserted."); Vblink_paren_hook = Qnil; DefBoolVar ("overwrite-mode", &overwrite_mode, "*Non-nil if self-insertion should replace existing text."); defsubr (&Sforward_char); defsubr (&Sbackward_char); defsubr (&Sforward_line); defsubr (&Sbeginning_of_line); defsubr (&Send_of_line); defsubr (&Sdelete_char); defsubr (&Sdelete_backward_char); defsubr (&Sself_insert_command); defsubr (&Snewline); } keys_of_cmds () { int n; defkey (GlobalMap, Ctl('M'), "newline"); defkey (GlobalMap, Ctl('I'), "self-insert-command"); for (n = 040; n < 0177; n++) defkey (GlobalMap, n, "self-insert-command"); defkey (GlobalMap, Ctl ('A'), "beginning-of-line"); defkey (GlobalMap, Ctl ('B'), "backward-char"); defkey (GlobalMap, Ctl ('D'), "delete-char"); defkey (GlobalMap, Ctl ('E'), "end-of-line"); defkey (GlobalMap, Ctl ('F'), "forward-char"); defkey (GlobalMap, 0177, "delete-backward-char"); } @