Mercurial > emacs
annotate lisp/compare-w.el @ 826:e9b9a1cff2c9
*** empty log message ***
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 21 Jul 1992 04:09:28 +0000 |
parents | 4f28bd14272c |
children | 213978acbc1e |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; compare-w.el --- compare text between windows for Emacs. |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
3 ;; Maintainer: FSF |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
4 ;; Last-Modified: 16 Mar 1992 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
5 |
257 | 6 ;; Copyright (C) 1986, 1989 Free Software Foundation, Inc. |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
257 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
24 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
25 |
257 | 26 (defvar compare-windows-whitespace " \t\n" |
27 "*String of characters considered whitespace for \\[compare-windows]. | |
28 Changes in whitespace are optionally ignored. | |
29 | |
30 The value of `compare-windows-whitespace' may instead be a function; this | |
31 function is called in each buffer, with point at the current scanning point. | |
32 The function's job is to categorize any whitespace around (including before) | |
33 point; it should also advance past any whitespace. | |
34 | |
35 The function is passed one argument, the point where `compare-windows' | |
36 was originally called; it should not consider any text before that point. | |
37 If the function returns the same value for both buffers, then the | |
38 whitespace is considered to match, and is skipped.") | |
39 | |
40 (defvar compare-ignore-case nil | |
41 "*Non-nil means \\[compare-windows] ignores case differences.") | |
42 | |
43 ;;;###autoload | |
44 (defun compare-windows (ignore-whitespace) | |
45 "Compare text in current window with text in next window. | |
46 Compares the text starting at point in each window, | |
47 moving over text in each one as far as they match. | |
48 | |
49 A prefix arg means ignore changes in whitespace. | |
50 The variable `compare-windows-whitespace' controls how whitespace is skipped. | |
51 If `compare-ignore-case' is non-nil, changes in case are also ignored." | |
52 (interactive "P") | |
53 (let* (p1 p2 maxp1 maxp2 b1 b2 w2 | |
54 success size | |
55 (opoint1 (point)) | |
56 opoint2 | |
57 (skip-whitespace (if ignore-whitespace | |
58 compare-windows-whitespace)) | |
59 (skip-whitespace-regexp (concat "[" skip-whitespace "]+"))) | |
60 (setq p1 (point) b1 (current-buffer)) | |
61 (setq w2 (next-window (selected-window))) | |
62 (if (eq w2 (selected-window)) | |
63 (error "No other window")) | |
64 (setq p2 (window-point w2) | |
65 b2 (window-buffer w2)) | |
66 (setq opoint2 p2) | |
67 (setq maxp1 (point-max)) | |
68 (save-excursion | |
69 (set-buffer b2) | |
70 (setq maxp2 (point-max))) | |
71 | |
72 (setq success t) | |
73 (while success | |
74 (setq success nil) | |
75 ;; if interrupted, show how far we've gotten | |
76 (goto-char p1) | |
77 (set-window-point w2 p2) | |
78 | |
79 ;; If both buffers have whitespace next to point, | |
80 ;; optionally skip over it. | |
81 | |
82 (and skip-whitespace | |
83 (save-excursion | |
84 (let (p1a p2a w1 w2 result1 result2) | |
85 (if (stringp skip-whitespace) | |
86 (progn | |
87 (if (not (eobp)) | |
88 (skip-chars-backward skip-whitespace opoint1)) | |
89 (and (looking-at skip-whitespace-regexp) | |
90 (setq p1a (match-end 0) result1 t))) | |
91 (setq result1 (funcall skip-whitespace opoint1)) | |
92 (setq p1a (point))) | |
93 (set-buffer b2) | |
94 (goto-char p2) | |
95 (if (stringp skip-whitespace) | |
96 (progn | |
97 (if (not (eobp)) | |
98 (skip-chars-backward skip-whitespace opoint2)) | |
99 (and (looking-at skip-whitespace-regexp) | |
100 (setq p2a (match-end 0) result2 t))) | |
101 (setq result2 (funcall skip-whitespace opoint2)) | |
102 (setq p2a (point))) | |
103 (and result1 result2 (eq result1 result2) | |
104 (setq p1 p1a | |
105 p2 p2a))))) | |
106 | |
107 ;; Try advancing comparing 1000 chars at a time. | |
108 ;; When that fails, go 500 chars at a time, and so on. | |
109 (let ((size 1000) | |
110 success-1) | |
111 (while (> size 0) | |
112 (setq success-1 t) | |
113 (while success-1 | |
114 (setq size (min size (- maxp1 p1) (- maxp2 p2))) | |
115 (save-excursion | |
116 (set-buffer b2) | |
117 (setq s2 (buffer-substring p2 (+ size p2)))) | |
118 (setq success-1 | |
119 (and (> size 0) | |
120 (if compare-ignore-case | |
121 (let ((case-fold-search t)) | |
122 (save-excursion | |
123 (search-forward s2 (+ p1 size) t))) | |
124 (equal (buffer-substring p1 (+ size p1)) s2)))) | |
125 (if success-1 | |
126 (setq p1 (+ p1 size) p2 (+ p2 size) | |
127 success t))) | |
128 (setq size (/ size 2))))) | |
129 | |
130 (goto-char p1) | |
131 (set-window-point w2 p2) | |
132 (if (= (point) opoint1) | |
133 (ding)))) | |
584 | 134 |
135 (provide 'compare-w) | |
136 | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
137 ;;; compare-w.el ends here |