comparison lispref/os.texi @ 27193:89afca54a135

@ifinto -> @ifnottex.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 05 Jan 2000 15:18:01 +0000
parents d2e5f1b7d8e2
children c41efa6c4be1
comparison
equal deleted inserted replaced
27192:f70a80cecdd3 27193:89afca54a135
924 @defun current-time 924 @defun current-time
925 This function returns the system's time value as a list of three 925 This function returns the system's time value as a list of three
926 integers: @code{(@var{high} @var{low} @var{microsec})}. The integers 926 integers: @code{(@var{high} @var{low} @var{microsec})}. The integers
927 @var{high} and @var{low} combine to give the number of seconds since 927 @var{high} and @var{low} combine to give the number of seconds since
928 0:00 January 1, 1970 (local time), which is 928 0:00 January 1, 1970 (local time), which is
929 @ifinfo 929 @ifnottex
930 @var{high} * 2**16 + @var{low}. 930 @var{high} * 2**16 + @var{low}.
931 @end ifinfo 931 @end ifnottex
932 @tex 932 @tex
933 $high*2^{16}+low$. 933 $high*2^{16}+low$.
934 @end tex 934 @end tex
935 935
936 The third element, @var{microsec}, gives the microseconds since the 936 The third element, @var{microsec}, gives the microseconds since the
1740 @defvar system-key-alist 1740 @defvar system-key-alist
1741 This variable's value should be an alist with one element for each 1741 This variable's value should be an alist with one element for each
1742 system-specific keysym. Each element has the form @code{(@var{code} 1742 system-specific keysym. Each element has the form @code{(@var{code}
1743 . @var{symbol})}, where @var{code} is the numeric keysym code (not 1743 . @var{symbol})}, where @var{code} is the numeric keysym code (not
1744 including the ``vendor specific'' bit, 1744 including the ``vendor specific'' bit,
1745 @ifinfo 1745 @ifnottex
1746 -2**28), 1746 -2**28),
1747 @end ifinfo 1747 @end ifnottex
1748 @tex 1748 @tex
1749 $-2^{28}$), 1749 $-2^{28}$),
1750 @end tex 1750 @end tex
1751 and @var{symbol} is the name for the function key. 1751 and @var{symbol} is the name for the function key.
1752 1752
1753 For example @code{(168 . mute-acute)} defines a system-specific key (used 1753 For example @code{(168 . mute-acute)} defines a system-specific key (used
1754 by HP X servers) whose numeric code is 1754 by HP X servers) whose numeric code is
1755 @ifinfo 1755 @ifnottex
1756 -2**28 1756 -2**28
1757 @end ifinfo 1757 @end ifnottex
1758 @tex 1758 @tex
1759 $-2^{28}$ 1759 $-2^{28}$
1760 @end tex 1760 @end tex
1761 + 168. 1761 + 168.
1762 1762