aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChong Yidong2007-06-05 00:21:21 +0000
committerChong Yidong2007-06-05 00:21:21 +0000
commitba9798ab50178c7b44fde2bc238184c4a5ec6ba3 (patch)
treef8026143c5fe4034ea78d098255e12358aafbf6f /src
parent8efbeeab9d01c983a10c6dc17761c5b77dfa1278 (diff)
downloademacs-ba9798ab50178c7b44fde2bc238184c4a5ec6ba3.tar.gz
emacs-ba9798ab50178c7b44fde2bc238184c4a5ec6ba3.zip
(delete_window): Delete stray semicolon.
Diffstat (limited to 'src')
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index 54c70bb569d..8a5137f2044 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1532,7 +1532,7 @@ delete_window (window)
1532 if (!EQ (window, pwindow)) 1532 if (!EQ (window, pwindow))
1533 break; 1533 break;
1534 /* Otherwise, try another window for SWINDOW. */ 1534 /* Otherwise, try another window for SWINDOW. */
1535 swindow = Fnext_window (swindow, Qlambda, Qnil);; 1535 swindow = Fnext_window (swindow, Qlambda, Qnil);
1536 1536
1537 /* If we get back to the frame's selected window, 1537 /* If we get back to the frame's selected window,
1538 it means there was no acceptable alternative, 1538 it means there was no acceptable alternative,