diff options
| author | Chong Yidong | 2009-04-22 04:32:21 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-04-22 04:32:21 +0000 |
| commit | 708e05dc7a8fd26530bb7daf9025bc53a0985453 (patch) | |
| tree | 1c23f090866a986752a94bf06ff894bf958c78e6 /src/data.c | |
| parent | d8da53851b6469924cb8307b7218eeeea20d0251 (diff) | |
| download | emacs-708e05dc7a8fd26530bb7daf9025bc53a0985453.tar.gz emacs-708e05dc7a8fd26530bb7daf9025bc53a0985453.zip | |
* keyboard.c (Fset_input_meta_mode): Doc fix.
* dispnew.c (Fsend_string_to_terminal): Doc fix.
* data.c (Fterminal_local_value, Fset_terminal_local_value): Doc
fixes.
* coding.c (Fterminal_coding_system): Doc fix.
* xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
(Fx_display_pixel_height, Fx_display_planes)
(Fx_display_color_cells, Fx_server_max_request_size)
(Fx_server_vendor, Fx_server_version, Fx_display_screens)
(Fx_display_mm_height, Fx_display_mm_width)
(Fx_display_backing_store, Fx_display_visual_class)
(Fx_display_save_under, Fx_close_connection, Fx_synchronize): Doc
fixes, replacing "terminal id" with "terminal object".
(check_x_display_info): Handle terminal objects instead of
terminal ids.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index 33692e33781..96e29a6c283 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1880,7 +1880,7 @@ DEFUN ("terminal-local-value", Fterminal_local_value, Sterminal_local_value, 2, | |||
| 1880 | If SYMBOL is not a terminal-local variable, then return its normal | 1880 | If SYMBOL is not a terminal-local variable, then return its normal |
| 1881 | value, like `symbol-value'. | 1881 | value, like `symbol-value'. |
| 1882 | 1882 | ||
| 1883 | TERMINAL may be a terminal id, a frame, or nil (meaning the | 1883 | TERMINAL may be a terminal object, a frame, or nil (meaning the |
| 1884 | selected frame's terminal device). */) | 1884 | selected frame's terminal device). */) |
| 1885 | (symbol, terminal) | 1885 | (symbol, terminal) |
| 1886 | Lisp_Object symbol; | 1886 | Lisp_Object symbol; |
| @@ -1899,7 +1899,7 @@ DEFUN ("set-terminal-local-value", Fset_terminal_local_value, Sset_terminal_loca | |||
| 1899 | If VARIABLE is not a terminal-local variable, then set its normal | 1899 | If VARIABLE is not a terminal-local variable, then set its normal |
| 1900 | binding, like `set'. | 1900 | binding, like `set'. |
| 1901 | 1901 | ||
| 1902 | TERMINAL may be a terminal id, a frame, or nil (meaning the | 1902 | TERMINAL may be a terminal object, a frame, or nil (meaning the |
| 1903 | selected frame's terminal device). */) | 1903 | selected frame's terminal device). */) |
| 1904 | (symbol, terminal, value) | 1904 | (symbol, terminal, value) |
| 1905 | Lisp_Object symbol; | 1905 | Lisp_Object symbol; |