diff options
| author | Michael Kifer | 2002-09-23 06:07:34 +0000 |
|---|---|---|
| committer | Michael Kifer | 2002-09-23 06:07:34 +0000 |
| commit | cadc57d2e48ccb9faa80ca72db81a95ffa19197b (patch) | |
| tree | 57c9b66b256d0850efb28f05f57ac9b8e1034da7 /lisp | |
| parent | 854813211c48f836a69817021e937a15fa8e5887 (diff) | |
| download | emacs-cadc57d2e48ccb9faa80ca72db81a95ffa19197b.tar.gz emacs-cadc57d2e48ccb9faa80ca72db81a95ffa19197b.zip | |
* ediff-init.el (ediff-get-next-window): bug fix.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/ediff-init.el | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0b4a17dc047..16a3d5e99d4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-09-23 Michael Kifer <kifer@cs.stonybrook.edu> | ||
| 2 | |||
| 3 | * ediff-init.el (ediff-get-next-window): bug fix. | ||
| 4 | |||
| 1 | 2002-09-22 Richard M. Stallman <rms@gnu.org> | 5 | 2002-09-22 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * international/mule-cmds.el (select-safe-coding-system): Cope if | 7 | * international/mule-cmds.el (select-safe-coding-system): Cope if |
diff --git a/lisp/ediff-init.el b/lisp/ediff-init.el index 7b540ad710c..01c9b1e129a 100644 --- a/lisp/ediff-init.el +++ b/lisp/ediff-init.el | |||
| @@ -1373,10 +1373,10 @@ This default should work without changes." | |||
| 1373 | (cdr (assq 'unsplittable (frame-parameters frame)))) | 1373 | (cdr (assq 'unsplittable (frame-parameters frame)))) |
| 1374 | 1374 | ||
| 1375 | (defsubst ediff-get-next-window (wind prev-wind) | 1375 | (defsubst ediff-get-next-window (wind prev-wind) |
| 1376 | (or (window-live-p wind) | 1376 | (cond ((window-live-p wind) wind) |
| 1377 | (setq wind (if prev-wind | 1377 | (prev-wind (next-window wind)) |
| 1378 | (next-window wind) | 1378 | (t (selected-window)) |
| 1379 | (selected-window))))) | 1379 | )) |
| 1380 | 1380 | ||
| 1381 | 1381 | ||
| 1382 | (defsubst ediff-kill-buffer-carefully (buf) | 1382 | (defsubst ediff-kill-buffer-carefully (buf) |