diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-20 04:23:32 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-20 04:23:32 +0200 |
commit | 9d557d4d4adf68ca15ca9aaa48470133544ede26 (patch) | |
tree | db41dac2aaa23bc0d8ef591b393f7c152414fdf8 /test/lisp/ffap-tests.el | |
parent | 7e32904998db6bcaff78c9329efa1fcbc26cbd70 (diff) | |
download | emacs-9d557d4d4adf68ca15ca9aaa48470133544ede26.tar.gz emacs-9d557d4d4adf68ca15ca9aaa48470133544ede26.tar.bz2 emacs-9d557d4d4adf68ca15ca9aaa48470133544ede26.zip |
Rename compare-window-configurations and update doc
* doc/lispref/windows.texi (Window Configurations): Update name.
* lisp/strokes.el (strokes-window-configuration-changed-p):
* lisp/emacs-lisp/byte-opt.el (side-effect-free-fns): Update
callers and references.
* lisp/subr.el (compare-window-configurations): Make into obsolete
alias.
* src/window.c (Fwindow_configuration_equal_p): Rename (bug#14964).
Diffstat (limited to 'test/lisp/ffap-tests.el')
-rw-r--r-- | test/lisp/ffap-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/ffap-tests.el b/test/lisp/ffap-tests.el index 0fdc31e8b61..4b580b5af52 100644 --- a/test/lisp/ffap-tests.el +++ b/test/lisp/ffap-tests.el @@ -73,7 +73,7 @@ left alone when opening a URL in an external browser." (urls nil) (ffap-url-fetcher (lambda (url) (push url urls) nil))) (should-not (ffap-other-window "https://www.gnu.org")) - (should (compare-window-configurations (current-window-configuration) old)) + (should (window-configuration-equal-p (current-window-configuration) old)) (should (equal urls '("https://www.gnu.org"))))) (defun ffap-test-string (space string) |