diff options
| author | Eli Zaretskii | 2017-02-12 17:56:14 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2017-02-12 17:56:14 +0200 |
| commit | 4c51ef4e803f9e956b2a1c1dc78ed50087c9507e (patch) | |
| tree | 2cf34ef588b91e35d25b7480aaa78910471c83b1 | |
| parent | 8303c326d7532aba321de0158de997a6a20d848e (diff) | |
| download | emacs-4c51ef4e803f9e956b2a1c1dc78ed50087c9507e.tar.gz emacs-4c51ef4e803f9e956b2a1c1dc78ed50087c9507e.zip | |
Clarify what is the "cursor"
* doc/lispref/windows.texi (Window Point): Clarify the notion of
"cursor".
| -rw-r--r-- | doc/lispref/windows.texi | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index d03e07e0a1f..290fb98dcf8 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -3062,9 +3062,13 @@ point and the buffer's point always move together; they remain equal. | |||
| 3062 | @end itemize | 3062 | @end itemize |
| 3063 | 3063 | ||
| 3064 | @cindex cursor | 3064 | @cindex cursor |
| 3065 | As far as the user is concerned, point is where the cursor is, and | 3065 | Emacs displays the cursor, by default as a rectangular block, in |
| 3066 | when the user switches to another buffer, the cursor jumps to the | 3066 | each window at the position of that window's point. When the user |
| 3067 | position of point in that buffer. | 3067 | switches to another buffer in a window, Emacs moves that window's |
| 3068 | cursor to where point is in that buffer. If the exact position of | ||
| 3069 | point is hidden behind some display element, such as a display string | ||
| 3070 | or an image, Emacs displays the cursor immediately before or after | ||
| 3071 | that display element. | ||
| 3068 | 3072 | ||
| 3069 | @defun window-point &optional window | 3073 | @defun window-point &optional window |
| 3070 | This function returns the current position of point in @var{window}. | 3074 | This function returns the current position of point in @var{window}. |