diff options
| author | Fabián Ezequiel Gallina | 2015-01-28 00:59:34 -0300 |
|---|---|---|
| committer | Fabián Ezequiel Gallina | 2015-01-28 00:59:34 -0300 |
| commit | d7a89815b6d69c3b1793d34bcad8bf0aa21d48c8 (patch) | |
| tree | 6ac62b66bd5386355c96551da34416036cf279b7 /doc | |
| parent | 3a8b7013042adae3c27327a75662fd8e884d4896 (diff) | |
| parent | d279e6680842b872ae3aab1fb429b1879db50f7f (diff) | |
| download | emacs-d7a89815b6d69c3b1793d34bcad8bf0aa21d48c8.tar.gz emacs-d7a89815b6d69c3b1793d34bcad8bf0aa21d48c8.zip | |
Merge from origin/emacs-24
d279e66 Fix assertion violations in try_window_id (Bug#19511)
031eadc Fix dired quoting bug with "Hit`N`Hide"
5981b4b More doc fixes for bug#19502 -- make documentation less X-specific.
143516c src/emacs.c (syms_of_emacs) <system-configuration>: Doc fix. (Bug#19502)
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/frames.texi | 24 |
2 files changed, 20 insertions, 9 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 4c0c116ba5a..1819989775e 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-01-04 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * frames.texi (Display Feature Testing): Make the description of | ||
| 4 | x-server-version and x-server-vendor less X-specific. (Bug#19502) | ||
| 5 | |||
| 1 | 2015-01-15 Eli Zaretskii <eliz@gnu.org> | 6 | 2015-01-15 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * streams.texi (Input Functions): Document 'set-binary-mode'. | 8 | * streams.texi (Input Functions): Document 'set-binary-mode'. |
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index 663207c5253..a6f4081532d 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -2782,20 +2782,26 @@ colors). | |||
| 2782 | This function returns the number of color cells the screen supports. | 2782 | This function returns the number of color cells the screen supports. |
| 2783 | @end defun | 2783 | @end defun |
| 2784 | 2784 | ||
| 2785 | These functions obtain additional information specifically | 2785 | These functions obtain additional information about the window |
| 2786 | about X displays. | 2786 | system in use where Emacs shows the specified @var{display}. (Their |
| 2787 | names begin with @code{x-} for historical reasons.) | ||
| 2787 | 2788 | ||
| 2788 | @defun x-server-version &optional display | 2789 | @defun x-server-version &optional display |
| 2789 | This function returns the list of version numbers of the X server | 2790 | This function returns the list of version numbers of the GUI window |
| 2790 | running the display. The value is a list of three integers: the major | 2791 | system running on @var{display}, such as the X server on GNU and Unix |
| 2791 | and minor version numbers of the X protocol, and the | 2792 | systems. The value is a list of three integers: the major and minor |
| 2792 | distributor-specific release number of the X server software itself. | 2793 | version numbers of the protocol, and the distributor-specific release |
| 2794 | number of the window system software itself. On GNU and Unix systems, | ||
| 2795 | these are normally the version of the X protocol and the | ||
| 2796 | distributor-specific release number of the X server software. On | ||
| 2797 | MS-Windows, this is the version of the Windows OS. | ||
| 2793 | @end defun | 2798 | @end defun |
| 2794 | 2799 | ||
| 2795 | @defun x-server-vendor &optional display | 2800 | @defun x-server-vendor &optional display |
| 2796 | This function returns the ``vendor'' that provided the X server | 2801 | This function returns the ``vendor'' that provided the window system |
| 2797 | software (as a string). Really this means whoever distributes the X | 2802 | software (as a string). On GNU and Unix systems this really means |
| 2798 | server. | 2803 | whoever distributes the X server. On MS-Windows this is the vendor ID |
| 2804 | string of the Windows OS (Microsoft). | ||
| 2799 | 2805 | ||
| 2800 | When the developers of X labeled software distributors as | 2806 | When the developers of X labeled software distributors as |
| 2801 | ``vendors'', they showed their false assumption that no system could | 2807 | ``vendors'', they showed their false assumption that no system could |