diff options
| author | Eli Zaretskii | 2015-08-22 10:57:16 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2015-08-22 10:57:16 +0300 |
| commit | 385fa75721d6d1aa1d82b9e4f05f7a76a4f79845 (patch) | |
| tree | c51470fc2124906e5d9d8952780ada482028f521 | |
| parent | 18371ed2da77c6b465dbc999a0f3baff0edfc94c (diff) | |
| download | emacs-385fa75721d6d1aa1d82b9e4f05f7a76a4f79845.tar.gz emacs-385fa75721d6d1aa1d82b9e4f05f7a76a4f79845.zip | |
Improve documentation of 'window-use-time'
* doc/lispref/windows.texi (Selecting Windows): Improve
documentation and indexing of 'window-use-time'.
| -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 e53edb3f821..465693854eb 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -1727,11 +1727,15 @@ nor the buffer list. | |||
| 1727 | 1727 | ||
| 1728 | @cindex window use time | 1728 | @cindex window use time |
| 1729 | @cindex use time of window | 1729 | @cindex use time of window |
| 1730 | @cindex window order by time of last use | ||
| 1730 | @defun window-use-time &optional window | 1731 | @defun window-use-time &optional window |
| 1731 | This functions returns the @dfn{use time} of window @var{window}. | 1732 | This functions returns the ``use time'' of window @var{window}. |
| 1732 | @var{window} must be a live window and defaults to the selected one. | 1733 | @var{window} must be a live window and defaults to the selected one. |
| 1733 | The window with the lowest use time is the least recently selected one. | 1734 | The @dfn{use time} of a window is not really a time value, but it does |
| 1734 | The window with the highest use time is the most recently selected one. | 1735 | increase monotonically with each window selection, so the window with |
| 1736 | the lowest ``use time'' is the least recently selected one, and the | ||
| 1737 | window with the highest ``use time'' is the most recently selected | ||
| 1738 | one. | ||
| 1735 | @end defun | 1739 | @end defun |
| 1736 | 1740 | ||
| 1737 | 1741 | ||