Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
87e68db4
Commit
87e68db4
authored
Oct 27, 2011
by
Juanma Barranquero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/window.c: Fix typos in docstrings.
parent
01db225d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
20 deletions
+27
-20
src/ChangeLog
src/ChangeLog
+7
-0
src/window.c
src/window.c
+20
-20
No files found.
src/ChangeLog
View file @
87e68db4
2011-10-27 Juanma Barranquero <lekktu@gmail.com>
* window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
(Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
(Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
(Fmove_to_window_line): Doc fix.
2011-10-27 Chong Yidong <cyd@gnu.org>
2011-10-27 Chong Yidong <cyd@gnu.org>
* process.c (make_process): Set gnutls_state to NULL.
* process.c (make_process): Set gnutls_state to NULL.
...
...
src/window.c
View file @
87e68db4
...
@@ -175,10 +175,10 @@ WINDOW can be any window and defaults to the selected one. */)
...
@@ -175,10 +175,10 @@ WINDOW can be any window and defaults to the selected one. */)
}
}
DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
doc: /* Return the root window of FRAME
_OR_
WINDOW.
doc: /* Return the root window of FRAME
-OR-
WINDOW.
If omitted, FRAME
_OR_
WINDOW defaults to the currently selected frame.
If omitted, FRAME
-OR-
WINDOW defaults to the currently selected frame.
Else if FRAME
_OR_
WINDOW denotes any window, return the root window of
Else if FRAME
-OR-
WINDOW denotes any window, return the root window of
that window's frame. If FRAME
_OR_
WINDOW denotes a live frame, return
that window's frame. If FRAME
-OR-
WINDOW denotes a live frame, return
the root window of that frame. */)
the root window of that frame. */)
(Lisp_Object frame_or_window)
(Lisp_Object frame_or_window)
{
{
...
@@ -220,10 +220,10 @@ WINDOW can be any window and defaults to the selected one. */)
...
@@ -220,10 +220,10 @@ WINDOW can be any window and defaults to the selected one. */)
/* Don't move this to window.el - this must be a safe routine. */
/* Don't move this to window.el - this must be a safe routine. */
DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
doc: /* Return the topmost, leftmost live window on FRAME
_OR_
WINDOW.
doc: /* Return the topmost, leftmost live window on FRAME
-OR-
WINDOW.
If omitted, FRAME
_OR_
WINDOW defaults to the currently selected frame.
If omitted, FRAME
-OR-
WINDOW defaults to the currently selected frame.
Else if FRAME
_OR_
WINDOW denotes any window, return the first window of
Else if FRAME
-OR-
WINDOW denotes any window, return the first window of
that window's frame. If FRAME
_OR_
WINDOW denotes a live frame, return
that window's frame. If FRAME
-OR-
WINDOW denotes a live frame, return
the first window of that frame. */)
the first window of that frame. */)
(Lisp_Object frame_or_window)
(Lisp_Object frame_or_window)
{
{
...
@@ -254,10 +254,10 @@ the first window of that frame. */)
...
@@ -254,10 +254,10 @@ the first window of that frame. */)
DEFUN ("frame-selected-window", Fframe_selected_window,
DEFUN ("frame-selected-window", Fframe_selected_window,
Sframe_selected_window, 0, 1, 0,
Sframe_selected_window, 0, 1, 0,
doc: /* Return the selected window of FRAME
_OR_
WINDOW.
doc: /* Return the selected window of FRAME
-OR-
WINDOW.
If omitted, FRAME
_OR_
WINDOW defaults to the currently selected frame.
If omitted, FRAME
-OR-
WINDOW defaults to the currently selected frame.
Else if FRAME
_OR_
WINDOW denotes any window, return the selected window
Else if FRAME
-OR-
WINDOW denotes any window, return the selected window
of that window's frame. If FRAME
_OR_
WINDOW denotes a live frame, return
of that window's frame. If FRAME
-OR-
WINDOW denotes a live frame, return
the selected window of that frame. */)
the selected window of that frame. */)
(Lisp_Object frame_or_window)
(Lisp_Object frame_or_window)
{
{
...
@@ -1297,7 +1297,7 @@ WINDOW must be a live window and defaults to the selected one.
...
@@ -1297,7 +1297,7 @@ WINDOW must be a live window and defaults to the selected one.
This is updated by redisplay, when it runs to completion.
This is updated by redisplay, when it runs to completion.
Simply changing the buffer text or setting `window-start'
Simply changing the buffer text or setting `window-start'
does not update this value.
does not update this value.
Return nil if there is no recorded value.
\
(This can happen if the
Return nil if there is no recorded value. (This can happen if the
last redisplay of WINDOW was preempted, and did not finish.)
last redisplay of WINDOW was preempted, and did not finish.)
If UPDATE is non-nil, compute the up-to-date position
If UPDATE is non-nil, compute the up-to-date position
if it isn't already recorded. */)
if it isn't already recorded. */)
...
@@ -1688,7 +1688,7 @@ DEFUN ("window-parameters", Fwindow_parameters, Swindow_parameters,
...
@@ -1688,7 +1688,7 @@ DEFUN ("window-parameters", Fwindow_parameters, Swindow_parameters,
0, 1, 0,
0, 1, 0,
doc: /* Return the parameters of WINDOW and their values.
doc: /* Return the parameters of WINDOW and their values.
WINDOW defaults to the selected window. The return value is a list of
WINDOW defaults to the selected window. The return value is a list of
elements of the form (PARAMETER . VALUE). */)
elements of the form (PARAMETER . VALUE).
*/)
(Lisp_Object window)
(Lisp_Object window)
{
{
return Fcopy_alist (decode_any_window (window)->window_parameters);
return Fcopy_alist (decode_any_window (window)->window_parameters);
...
@@ -2193,7 +2193,7 @@ next_window (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames, in
...
@@ -2193,7 +2193,7 @@ next_window (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames, in
DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
doc: /* Return window following WINDOW in cyclic ordering of windows.
doc: /* Return window following WINDOW in cyclic ordering of windows.
WINDOW must be a live window and defaults to the selected one. The
WINDOW must be a live window and defaults to the selected one.
The
optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
consider.
consider.
...
@@ -3224,7 +3224,7 @@ temp_output_buffer_show (register Lisp_Object buf)
...
@@ -3224,7 +3224,7 @@ temp_output_buffer_show (register Lisp_Object buf)
DEFUN ("internal-temp-output-buffer-show",
DEFUN ("internal-temp-output-buffer-show",
Ftemp_output_buffer_show, Stemp_output_buffer_show,
Ftemp_output_buffer_show, Stemp_output_buffer_show,
1, 1, 0,
1, 1, 0,
doc: /* Internal function for `with-output-to-temp-buffer'
'
. */)
doc: /* Internal function for `with-output-to-temp-buffer'. */)
(Lisp_Object buf)
(Lisp_Object buf)
{
{
temp_output_buffer_show (buf);
temp_output_buffer_show (buf);
...
@@ -3845,8 +3845,8 @@ set correctly. See the code of `split-window' for how this is done. */)
...
@@ -3845,8 +3845,8 @@ set correctly. See the code of `split-window' for how this is done. */)
DEFUN ("delete-window-internal", Fdelete_window_internal, Sdelete_window_internal, 1, 1, 0,
DEFUN ("delete-window-internal", Fdelete_window_internal, Sdelete_window_internal, 1, 1, 0,
doc: /* Remove WINDOW from its frame.
doc: /* Remove WINDOW from its frame.
WINDOW defaults to the selected window. Return nil.
Signal an error
WINDOW defaults to the selected window. Return nil.
when WINDOW is the only window on its frame. */)
Signal an error
when WINDOW is the only window on its frame. */)
(register Lisp_Object window)
(register Lisp_Object window)
{
{
register Lisp_Object parent, sibling, frame, root;
register Lisp_Object parent, sibling, frame, root;
...
@@ -5225,8 +5225,8 @@ any partial-height lines in the text display area. */)
...
@@ -5225,8 +5225,8 @@ any partial-height lines in the text display area. */)
DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
1, 1, "P",
1, 1, "P",
doc: /* Position point relative to window.
doc: /* Position point relative to window.
With no argument,
position point at center of window.
ARG nil means
position point at center of window.
An argument
specifies vertical position within the window;
Else, ARG
specifies vertical position within the window;
zero means top of window, negative means relative to bottom of window. */)
zero means top of window, negative means relative to bottom of window. */)
(Lisp_Object arg)
(Lisp_Object arg)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment