# HG changeset patch # User Richard M. Stallman # Date 863843293 0 # Node ID 40a43a90976ff7ad7caf3fe0addc98ed972e19d2 # Parent 853150d40e56802763b3304026716a4acbd6d444 (do-auto-fill): Check enable-kinsoku and enable-multibyte-characters. (quoted-insert): Use nonascii-insert-offset. (quoted-insert-character-offset): Variable deleted. diff -r 853150d40e56 -r 40a43a90976f lisp/simple.el --- a/lisp/simple.el Sat May 17 04:19:19 1997 +0000 +++ b/lisp/simple.el Sat May 17 04:28:13 1997 +0000 @@ -156,11 +156,6 @@ (indent-to col 0) (goto-char pos))) -(defcustom quoted-insert-character-offset (- (make-char 'latin-iso8859-1) 128) - "*Offset added by \\[quoted-insert] to character codes 0200 and above." - :tag 'integer - :group 'i18n) - (defun quoted-insert (arg) "Read next input character and insert it. This is useful for inserting control characters. @@ -185,7 +180,7 @@ (and enable-multibyte-characters (>= char ?\200) (<= char ?\377) - (setq char (+ quoted-insert-character-offset char))) + (setq char (+ nonascii-insert-offset char))) (if (> arg 0) (if (eq overwrite-mode 'overwrite-mode-binary) (delete-char arg))) @@ -2613,7 +2608,7 @@ (skip-chars-backward " \t") ;; Break the line after/before \c|. (forward-char 1) - (if do-kinsoku + (if (and enable-kinsoku enable-multibyte-characters) (kinsoku (save-excursion (forward-line 0) (point))))))) ;; Let fill-point be set to the place where we end up.