aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1996-01-04 23:02:18 +0000
committerKarl Heuer1996-01-04 23:02:18 +0000
commit5c4d25a655e7e043e83a9d025335bd9d397185ca (patch)
tree13b52893f4a1c0f159723b4fe94e4e2ba1df7e05 /src
parent690337b7e87d83f0e53cea023c071fb5af4cf145 (diff)
downloademacs-5c4d25a655e7e043e83a9d025335bd9d397185ca.tar.gz
emacs-5c4d25a655e7e043e83a9d025335bd9d397185ca.zip
(Fprevious_window, Fwindow_configuration_p): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c
index fd39556b847..c665a0c7c66 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1023,7 +1023,7 @@ DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
1023 else break; 1023 else break;
1024 } 1024 }
1025 } 1025 }
1026 /* Which windows are acceptible? 1026 /* Which windows are acceptable?
1027 Exit the loop and accept this window if 1027 Exit the loop and accept this window if
1028 this isn't a minibuffer window, 1028 this isn't a minibuffer window,
1029 or we're accepting all minibuffer windows, 1029 or we're accepting all minibuffer windows,
@@ -1042,7 +1042,7 @@ DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
1042 due to limits in the Unix cpp. 1042 due to limits in the Unix cpp.
1043 1043
1044DEFUN ("previous-window", Ffoo, Sfoo, 0, 3, 0, 1044DEFUN ("previous-window", Ffoo, Sfoo, 0, 3, 0,
1045 "Return the window preceeding WINDOW in canonical ordering of windows.\n\ 1045 "Return the window preceding WINDOW in canonical ordering of windows.\n\
1046If omitted, WINDOW defaults to the selected window.\n\ 1046If omitted, WINDOW defaults to the selected window.\n\
1047\n\ 1047\n\
1048Optional second arg MINIBUF t means count the minibuffer window even\n\ 1048Optional second arg MINIBUF t means count the minibuffer window even\n\
@@ -1185,7 +1185,7 @@ DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
1185 window = tem; 1185 window = tem;
1186 } 1186 }
1187 } 1187 }
1188 /* Which windows are acceptible? 1188 /* Which windows are acceptable?
1189 Exit the loop and accept this window if 1189 Exit the loop and accept this window if
1190 this isn't a minibuffer window, 1190 this isn't a minibuffer window,
1191 or we're accepting all minibuffer windows, 1191 or we're accepting all minibuffer windows,
@@ -2988,7 +2988,7 @@ struct saved_window
2988 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)]))) 2988 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
2989 2989
2990DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0, 2990DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
2991 "T if OBJECT is a window-configration object.") 2991 "T if OBJECT is a window-configuration object.")
2992 (obj) 2992 (obj)
2993 Lisp_Object obj; 2993 Lisp_Object obj;
2994{ 2994{