aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXue Fuqiao2013-08-13 10:45:12 +0800
committerXue Fuqiao2013-08-13 10:45:12 +0800
commit916119ec9eecb97a2834896d80b286ddb9cf423c (patch)
tree44dfa7fe06a2a991447208c01af453812b1ec239
parent5514cc4c84969122668c89a387b858157e0c2e74 (diff)
downloademacs-916119ec9eecb97a2834896d80b286ddb9cf423c.tar.gz
emacs-916119ec9eecb97a2834896d80b286ddb9cf423c.zip
* doc/lispref/frames.texi (Display Feature Testing): Add indexes.
-rw-r--r--doc/lispref/ChangeLog2
-rw-r--r--doc/lispref/frames.texi1
-rw-r--r--lisp/frame.el2
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 @@
12013-08-13 Xue Fuqiao <xfq.free@gmail.com> 12013-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
52013-08-12 Glenn Morris <rgm@gnu.org> 52013-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
2403when the question is inapplicable to a certain kind of display. 2403when 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
2407This function returns non-@code{nil} if the display supports the 2408This function returns non-@code{nil} if the display supports the
2408SaveUnder feature. That feature is used by pop-up windows 2409SaveUnder 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.
1447The value may be `always', `when-mapped', `not-useful', or nil if 1449The value may be `always', `when-mapped', `not-useful', or nil if