diff options
| author | Xue Fuqiao | 2013-08-13 10:45:12 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-08-13 10:45:12 +0800 |
| commit | 916119ec9eecb97a2834896d80b286ddb9cf423c (patch) | |
| tree | 44dfa7fe06a2a991447208c01af453812b1ec239 | |
| parent | 5514cc4c84969122668c89a387b858157e0c2e74 (diff) | |
| download | emacs-916119ec9eecb97a2834896d80b286ddb9cf423c.tar.gz emacs-916119ec9eecb97a2834896d80b286ddb9cf423c.zip | |
* doc/lispref/frames.texi (Display Feature Testing): Add indexes.
| -rw-r--r-- | doc/lispref/ChangeLog | 2 | ||||
| -rw-r--r-- | doc/lispref/frames.texi | 1 | ||||
| -rw-r--r-- | lisp/frame.el | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index cd39f44fc98..29ab28c0fad 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | 2013-08-13 Xue Fuqiao <xfq.free@gmail.com> | 1 | 2013-08-13 Xue Fuqiao <xfq.free@gmail.com> |
| 2 | 2 | ||
| 3 | * frames.texi (Display Feature Testing): Add an index. | 3 | * frames.texi (Display Feature Testing): Add indexes. |
| 4 | 4 | ||
| 5 | 2013-08-12 Glenn Morris <rgm@gnu.org> | 5 | 2013-08-12 Glenn Morris <rgm@gnu.org> |
| 6 | 6 | ||
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index 00cf4dc6be4..370098c8b62 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -2403,6 +2403,7 @@ Values can be the symbols @code{always}, @code{when-mapped}, or | |||
| 2403 | when the question is inapplicable to a certain kind of display. | 2403 | when the question is inapplicable to a certain kind of display. |
| 2404 | @end defun | 2404 | @end defun |
| 2405 | 2405 | ||
| 2406 | @cindex SaveUnder feature | ||
| 2406 | @defun display-save-under &optional display | 2407 | @defun display-save-under &optional display |
| 2407 | This function returns non-@code{nil} if the display supports the | 2408 | This function returns non-@code{nil} if the display supports the |
| 2408 | SaveUnder feature. That feature is used by pop-up windows | 2409 | SaveUnder feature. That feature is used by pop-up windows |
diff --git a/lisp/frame.el b/lisp/frame.el index 31a9123503d..79394bd305b 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -1442,6 +1442,8 @@ monitor, use `display-monitor-attributes-list'." | |||
| 1442 | 1442 | ||
| 1443 | (declare-function x-display-backing-store "xfns.c" (&optional terminal)) | 1443 | (declare-function x-display-backing-store "xfns.c" (&optional terminal)) |
| 1444 | 1444 | ||
| 1445 | ;; In NS port, the return value may be `buffered', `retained', or | ||
| 1446 | ;; `non-retained'. See src/nsfns.m. | ||
| 1445 | (defun display-backing-store (&optional display) | 1447 | (defun display-backing-store (&optional display) |
| 1446 | "Return the backing store capability of DISPLAY's screen. | 1448 | "Return the backing store capability of DISPLAY's screen. |
| 1447 | The value may be `always', `when-mapped', `not-useful', or nil if | 1449 | The value may be `always', `when-mapped', `not-useful', or nil if |