diff options
| author | Karl Heuer | 1997-02-20 05:48:39 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-02-20 05:48:39 +0000 |
| commit | 742d416fccc1241c2d7b9a0a479d5fc52d6d31e1 (patch) | |
| tree | 77d79dc5fb25f8c915ac5331b97512ba4e1034ee | |
| parent | f8e2c40cded31abba544fc2b47f45c8e6eaaa300 (diff) | |
| download | emacs-742d416fccc1241c2d7b9a0a479d5fc52d6d31e1.tar.gz emacs-742d416fccc1241c2d7b9a0a479d5fc52d6d31e1.zip | |
(occur): Pay attention to multibyte characters.
| -rw-r--r-- | lisp/replace.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 086fea67455..0cb0f0486c5 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -440,7 +440,7 @@ It serves as a menu to find any of the occurrences in this buffer. | |||
| 440 | (insert-buffer-substring buffer start end) | 440 | (insert-buffer-substring buffer start end) |
| 441 | (set-marker final-context-start | 441 | (set-marker final-context-start |
| 442 | (- (point) (- end (match-end 0)))) | 442 | (- (point) (- end (match-end 0)))) |
| 443 | (backward-char (- end start)) | 443 | (goto-char (- (point) (- end start))) |
| 444 | (setq tem nlines) | 444 | (setq tem nlines) |
| 445 | (while (> tem 0) | 445 | (while (> tem 0) |
| 446 | (insert empty ?:) | 446 | (insert empty ?:) |