aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2007-03-31 13:56:30 +0000
committerEli Zaretskii2007-03-31 13:56:30 +0000
commit5e472eb6ee4e27f453aeff0bad8f62b8ce7c885b (patch)
tree826088168bd0cb084ef15f9ccb3bdd1990192f16
parent66a17d97c6657eb8c094a29b2d0f21d4f8a2022d (diff)
downloademacs-5e472eb6ee4e27f453aeff0bad8f62b8ce7c885b.tar.gz
emacs-5e472eb6ee4e27f453aeff0bad8f62b8ce7c885b.zip
Improve indexing.
-rw-r--r--lispref/commands.texi3
-rw-r--r--lispref/display.texi1
-rw-r--r--lispref/frames.texi1
-rw-r--r--lispref/minibuf.texi2
-rw-r--r--lispref/nonascii.texi2
-rw-r--r--lispref/os.texi1
-rw-r--r--lispref/processes.texi3
-rw-r--r--lispref/windows.texi1
8 files changed, 14 insertions, 0 deletions
diff --git a/lispref/commands.texi b/lispref/commands.texi
index 6cbf6e70099..89bb570c5ca 100644
--- a/lispref/commands.texi
+++ b/lispref/commands.texi
@@ -933,6 +933,7 @@ the current Emacs session. If a symbol has not yet been so used,
933 933
934@node Keyboard Events 934@node Keyboard Events
935@subsection Keyboard Events 935@subsection Keyboard Events
936@cindex keyboard events
936 937
937There are two kinds of input you can get from the keyboard: ordinary 938There are two kinds of input you can get from the keyboard: ordinary
938keys, and function keys. Ordinary keys correspond to characters; the 939keys, and function keys. Ordinary keys correspond to characters; the
@@ -2077,6 +2078,8 @@ following the recommendations at the beginning of this section.
2077 2078
2078@node Reading Input 2079@node Reading Input
2079@section Reading Input 2080@section Reading Input
2081@cindex read input
2082@cindex keyboard input
2080 2083
2081 The editor command loop reads key sequences using the function 2084 The editor command loop reads key sequences using the function
2082@code{read-key-sequence}, which uses @code{read-event}. These and other 2085@code{read-key-sequence}, which uses @code{read-event}. These and other
diff --git a/lispref/display.texi b/lispref/display.texi
index 3c19bdb54d0..e506c115595 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -4270,6 +4270,7 @@ cache, it can always be displayed, even if the value of
4270 4270
4271@node Image Cache 4271@node Image Cache
4272@subsection Image Cache 4272@subsection Image Cache
4273@cindex image cache
4273 4274
4274 Emacs stores images in an image cache when it displays them, so it can 4275 Emacs stores images in an image cache when it displays them, so it can
4275display them again more efficiently. It removes an image from the cache 4276display them again more efficiently. It removes an image from the cache
diff --git a/lispref/frames.texi b/lispref/frames.texi
index da2e0711492..4088f1dfe51 100644
--- a/lispref/frames.texi
+++ b/lispref/frames.texi
@@ -193,6 +193,7 @@ that display (@pxref{Deleting Frames}).
193 193
194@node Frame Parameters 194@node Frame Parameters
195@section Frame Parameters 195@section Frame Parameters
196@cindex frame parameters
196 197
197 A frame has many parameters that control its appearance and behavior. 198 A frame has many parameters that control its appearance and behavior.
198Just what parameters a frame has depends on what display mechanism it 199Just what parameters a frame has depends on what display mechanism it
diff --git a/lispref/minibuf.texi b/lispref/minibuf.texi
index 1abbb148b85..92ba49840d8 100644
--- a/lispref/minibuf.texi
+++ b/lispref/minibuf.texi
@@ -1222,6 +1222,8 @@ and @code{read-input-method-name}, in @ref{Input Methods}.
1222 1222
1223@node Reading File Names 1223@node Reading File Names
1224@subsection Reading File Names 1224@subsection Reading File Names
1225@cindex read file names
1226@cindex prompt for file name
1225 1227
1226 Here is another high-level completion function, designed for reading a 1228 Here is another high-level completion function, designed for reading a
1227file name. It provides special features including automatic insertion 1229file name. It provides special features including automatic insertion
diff --git a/lispref/nonascii.texi b/lispref/nonascii.texi
index 9e1d603ba33..dfe492c4a73 100644
--- a/lispref/nonascii.texi
+++ b/lispref/nonascii.texi
@@ -408,6 +408,7 @@ set's introduction sequence:
408 408
409@node Splitting Characters 409@node Splitting Characters
410@section Splitting Characters 410@section Splitting Characters
411@cindex split character
411 412
412 The functions in this section convert between characters and the byte 413 The functions in this section convert between characters and the byte
413values used to represent them. For most purposes, there is no need to 414values used to represent them. For most purposes, there is no need to
@@ -433,6 +434,7 @@ returns a list consisting of the symbol @code{unknown} and @var{character}.
433@end example 434@end example
434@end defun 435@end defun
435 436
437@cindex generate characters in charsets
436@defun make-char charset &optional code1 code2 438@defun make-char charset &optional code1 code2
437This function returns the character in character set @var{charset} whose 439This function returns the character in character set @var{charset} whose
438position codes are @var{code1} and @var{code2}. This is roughly the 440position codes are @var{code1} and @var{code2}. This is roughly the
diff --git a/lispref/os.texi b/lispref/os.texi
index 98c9dc5828a..cc1325e8366 100644
--- a/lispref/os.texi
+++ b/lispref/os.texi
@@ -1697,6 +1697,7 @@ is the character Emacs currently uses for quitting, usually @kbd{C-g}.
1697 1697
1698@node Recording Input 1698@node Recording Input
1699@subsection Recording Input 1699@subsection Recording Input
1700@cindex recording input
1700 1701
1701@defun recent-keys 1702@defun recent-keys
1702This function returns a vector containing the last 300 input events from 1703This function returns a vector containing the last 300 input events from
diff --git a/lispref/processes.texi b/lispref/processes.texi
index cffb3cbfefb..76c60e967ea 100644
--- a/lispref/processes.texi
+++ b/lispref/processes.texi
@@ -1236,6 +1236,7 @@ there is no filter function:
1236 1236
1237@node Decoding Output 1237@node Decoding Output
1238@subsection Decoding Process Output 1238@subsection Decoding Process Output
1239@cindex decode process output
1239 1240
1240 When Emacs writes process output directly into a multibyte buffer, 1241 When Emacs writes process output directly into a multibyte buffer,
1241it decodes the output according to the process output coding system. 1242it decodes the output according to the process output coding system.
@@ -1285,6 +1286,7 @@ This function returns the filter multibyte flag of @var{process}.
1285 1286
1286@node Accepting Output 1287@node Accepting Output
1287@subsection Accepting Output from Processes 1288@subsection Accepting Output from Processes
1289@cindex accept input from processes
1288 1290
1289 Output from asynchronous subprocesses normally arrives only while 1291 Output from asynchronous subprocesses normally arrives only while
1290Emacs is waiting for some sort of external event, such as elapsed time 1292Emacs is waiting for some sort of external event, such as elapsed time
@@ -1643,6 +1645,7 @@ For an ordinary child process, this function always returns @code{t}.
1643 1645
1644@node Network Servers 1646@node Network Servers
1645@section Network Servers 1647@section Network Servers
1648@cindex network servers
1646 1649
1647 You create a server by calling @code{make-network-process} with 1650 You create a server by calling @code{make-network-process} with
1648@code{:server t}. The server will listen for connection requests from 1651@code{:server t}. The server will listen for connection requests from
diff --git a/lispref/windows.texi b/lispref/windows.texi
index 5f21b1977bd..eabb157729a 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -1195,6 +1195,7 @@ point and the buffer's point always move together; they remain equal.
1195@noindent 1195@noindent
1196@xref{Positions}, for more details on buffer positions. 1196@xref{Positions}, for more details on buffer positions.
1197 1197
1198@cindex cursor
1198 As far as the user is concerned, point is where the cursor is, and 1199 As far as the user is concerned, point is where the cursor is, and
1199when the user switches to another buffer, the cursor jumps to the 1200when the user switches to another buffer, the cursor jumps to the
1200position of point in that buffer. 1201position of point in that buffer.