Mercurial > emacs
diff src/cmds.c @ 2214:e5928bec8d5d
* cmds.c (overwrite_binary_mode): Deleted; this implements the
wrong feature.
(Qoverwrite_mode_binary): New variable.
(internal_self_insert): If current_buffer->overwrite_mode is
`overwrite-mode-binary', do as overwrite_binary_mode used to.
(syms_of_cmds): Remove defvar of overwrite_binary_mode; initialize
Qoverwrite_mode_binary.
* buffer.c (syms_of_buffer): Doc fix for overwrite_mode.
* buffer.h (struct buffer): Doc fix.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Tue, 16 Mar 1993 18:18:05 +0000 |
| parents | 6a082f5ce7e6 |
| children | 40e00789f1c1 |
line wrap: on
line diff
--- a/src/cmds.c Tue Mar 16 15:47:45 1993 +0000 +++ b/src/cmds.c Tue Mar 16 18:18:05 1993 +0000 @@ -26,7 +26,9 @@ Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function; -int overwrite_binary_mode; +/* A possible value for a buffer's overwrite-mode variable. */ +Lisp_Object Qoverwrite_mode_binary; + DEFUN ("forward-char", Fforward_char, Sforward_char, 0, 1, "p", "Move point right ARG characters (left if ARG negative).\n\ @@ -273,14 +275,16 @@ Lisp_Object tem; register enum syntaxcode synt; register int c = c1; + Lisp_Object overwrite = current_buffer->overwrite_mode; if (!NILP (Vbefore_change_function) || !NILP (Vafter_change_function)) hairy = 1; - if (!NILP (current_buffer->overwrite_mode) + if (!NILP (overwrite) && point < ZV - && (overwrite_binary_mode || (c != '\n' && FETCH_CHAR (point) != '\n')) - && (overwrite_binary_mode + && (EQ (overwrite, Qoverwrite_mode_binary) + || (c != '\n' && FETCH_CHAR (point) != '\n')) + && (EQ (overwrite, Qoverwrite_mode_binary) || FETCH_CHAR (point) != '\t' || XINT (current_buffer->tab_width) <= 0 || XFASTINT (current_buffer->tab_width) > 20 @@ -336,11 +340,8 @@ Qkill_forward_chars = intern ("kill-forward-chars"); staticpro (&Qkill_forward_chars); - DEFVAR_BOOL ("overwrite-binary-mode", &overwrite_binary_mode, - "*Non-nil means overwrite mode treats tab and newline normally.\n\ -Ordinarily, overwriting preserves a tab until its whole width is overwritten\n\ -and never replaces a newline."); - overwrite_binary_mode = 1; + Qoverwrite_mode_binary = intern ("overwrite-mode-binary"); + staticpro (&Qoverwrite_mode_binary); DEFVAR_LISP ("blink-paren-function", &Vblink_paren_function, "Function called, if non-nil, whenever a close parenthesis is inserted.\n\
