aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-02-17 17:05:29 +0000
committerRichard M. Stallman2001-02-17 17:05:29 +0000
commit697e2b9965aa9c30622d0091be8cbb84bc707a99 (patch)
tree994860ad3a7a99bee814728873e4687c9d6ba079
parente5811d7119f0b684c77820e846a0779986711f4a (diff)
downloademacs-697e2b9965aa9c30622d0091be8cbb84bc707a99.tar.gz
emacs-697e2b9965aa9c30622d0091be8cbb84bc707a99.zip
Fix some Texinfo usage.
-rw-r--r--man/files.texi4
-rw-r--r--man/viper.texi40
2 files changed, 23 insertions, 21 deletions
diff --git a/man/files.texi b/man/files.texi
index 0de8040123c..53c2386c3c3 100644
--- a/man/files.texi
+++ b/man/files.texi
@@ -2629,8 +2629,8 @@ that means to use your own user name. But if you set the variable
2629@cindex anonymous FTP 2629@cindex anonymous FTP
2630@vindex ange-ftp-generate-anonymous-password 2630@vindex ange-ftp-generate-anonymous-password
2631 To visit files accessible by anonymous FTP, you use special user 2631 To visit files accessible by anonymous FTP, you use special user
2632names ``anonymous'' or ``ftp''. Passwords for these user names are 2632names @samp{anonymous} or @samp{ftp}. Passwords for these user names
2633handled specially. The variable 2633are handled specially. The variable
2634@code{ange-ftp-generate-anonymous-password} controls what happens: if 2634@code{ange-ftp-generate-anonymous-password} controls what happens: if
2635the value of this variable is a string, then that string is used as 2635the value of this variable is a string, then that string is used as
2636the password; if non-@code{nil} (the default), then the value of 2636the password; if non-@code{nil} (the default), then the value of
diff --git a/man/viper.texi b/man/viper.texi
index b62f1e097e3..1d580d455ae 100644
--- a/man/viper.texi
+++ b/man/viper.texi
@@ -414,7 +414,7 @@ For a full list of Ex commands supported by Viper, type
414commands, type @kbd{:help}. This will invoke Viper Info 414commands, type @kbd{:help}. This will invoke Viper Info
415(if it is installed). Then typing @kbd{i} will prompt you for a topic to 415(if it is installed). Then typing @kbd{i} will prompt you for a topic to
416search in the index. Note: to search for Ex commands in the index, you 416search in the index. Note: to search for Ex commands in the index, you
417should start them with a ``@kbd{:}'', e.g., @kbd{:WW}. 417should start them with a @kbd{:}, e.g., @kbd{:WW}.
418 418
419In Viper, Ex commands can be made to work on the current Emacs region. 419In Viper, Ex commands can be made to work on the current Emacs region.
420This is done by typing a digit argument before @kbd{:}. 420This is done by typing a digit argument before @kbd{:}.
@@ -2581,8 +2581,8 @@ occurrence of the pattern to search for.
2581 2581
2582Note: while loading initially, Viper binds this mouse action only if it is 2582Note: while loading initially, Viper binds this mouse action only if it is
2583not already bound to something else. If you want to use the mouse-search 2583not already bound to something else. If you want to use the mouse-search
2584feature and the Meta-Shift-button-1 mouse action is already bound to 2584feature, and the @kbd{Meta-Shift-Mouse-1} mouse action is already bound to
2585something else you can rebind the mouse-search feature by setting 2585something else, you can rebind the mouse-search feature by setting
2586@code{viper-mouse-search-key} to something else in your @code{~/.viper} 2586@code{viper-mouse-search-key} to something else in your @code{~/.viper}
2587file: 2587file:
2588@lisp 2588@lisp
@@ -2659,8 +2659,8 @@ purpose of mouse search and mouse insert. By default, this is set to
2659@code{double-click-time} in Emacs and to 2659@code{double-click-time} in Emacs and to
2660@code{mouse-track-multi-click-time} milliseconds in XEmacs. 2660@code{mouse-track-multi-click-time} milliseconds in XEmacs.
2661@end table 2661@end table
2662@kindex @kbd{S-mouse-1} 2662@kindex @kbd{S-Mouse-1}
2663@kindex @kbd{S-mouse-2} 2663@kindex @kbd{S-Mouse-2}
2664@kindex @kbd{meta shift button1up} 2664@kindex @kbd{meta shift button1up}
2665@kindex @kbd{meta shift button2up} 2665@kindex @kbd{meta shift button2up}
2666@vindex @code{viper-multiclick-timeout} 2666@vindex @code{viper-multiclick-timeout}
@@ -2938,16 +2938,18 @@ found will be executed. Usually this is the macro with a shorter name. So,
2938in our case, @kbd{[[[[text} will cause the macro @kbd{[[} to be executed 2938in our case, @kbd{[[[[text} will cause the macro @kbd{[[} to be executed
2939twice and then the remaining keys, @kbd{t e x t}, will be processed. 2939twice and then the remaining keys, @kbd{t e x t}, will be processed.
2940 2940
2941When defining macros using @kbd{:map} or @kbd{:map!}, the user enters the 2941When defining macros using @kbd{:map} or @kbd{:map!}, the user enters
2942actually keys to be used to invoke the macro. For instance, you should hit 2942the actually keys to be used to invoke the macro. For instance, you
2943the actual key @kbd{f6} if it is to be part of a macro name; you do 2943should hit the actual key @kbd{f6} if it is to be part of a macro
2944@emph{not} write `f 6'. When entering keys, Viper displays them as strings or 2944name; you do @emph{not} write @kbd{f 6}. When entering keys, Viper
2945vectors (e.g., "abc" or [f6 f7 a]). The same holds for unmapping. Hitting 2945displays them as strings or vectors (e.g., @code{"abc"} or @code{[f6
2946@key{TAB} while typing a macro name in the @kbd{:unmap} or @kbd{:unmap!} command 2946f7 a]}). The same holds for unmapping. Hitting @key{TAB} while
2947will cause name completion. Completions are displayed as strings or vectors. 2947typing a macro name in the @kbd{:unmap} or @kbd{:unmap!} command will
2948However, as before, you don't actually type ``"'', ``['', or ``]'' that 2948cause name completion. Completions are displayed as strings or
2949appear in the completions. These are meta-symbols that indicate whether 2949vectors. However, as before, you don't actually type @samp{"},
2950the corresponding macro name is a vector or a string. 2950@samp{[}, or @samp{]} that appear in the completions. These are
2951meta-symbols that indicate whether the corresponding macro name is a
2952vector or a string.
2951 2953
2952One last difference from Vi: Vi-style keyboard macros cannot be defined in 2954One last difference from Vi: Vi-style keyboard macros cannot be defined in
2953terms of other Vi-style keyboard macros (but named Emacs macros are OK). 2955terms of other Vi-style keyboard macros (but named Emacs macros are OK).
@@ -4384,7 +4386,7 @@ The following two mouse actions are normally bound to to special search and
4384insert commands in of Viper: 4386insert commands in of Viper:
4385 4387
4386@table @kbd 4388@table @kbd
4387@item S-mouse-1 4389@item S-Mouse-1
4388Holding Shift and clicking mouse button 1 will 4390Holding Shift and clicking mouse button 1 will
4389initiate search for 4391initiate search for
4390a region under the mouse pointer. 4392a region under the mouse pointer.
@@ -4393,7 +4395,7 @@ binding only if this mouse action is not
4393already bound to something else. 4395already bound to something else.
4394@xref{Viper Specials}, for more information.@refill 4396@xref{Viper Specials}, for more information.@refill
4395 4397
4396@item S-mouse-2 4398@item S-Mouse-2
4397Holding Shift and clicking button 2 of the mouse will 4399Holding Shift and clicking button 2 of the mouse will
4398insert a region surrounding the mouse pointer. 4400insert a region surrounding the mouse pointer.
4399This command can also take a prefix argument. 4401This command can also take a prefix argument.
@@ -4401,8 +4403,8 @@ Note: Viper sets this binding only if this mouse action is not
4401already bound to something else. 4403already bound to something else.
4402@xref{Viper Specials}, for more details.@refill 4404@xref{Viper Specials}, for more details.@refill
4403@end table 4405@end table
4404@kindex @kbd{S-mouse-1} 4406@kindex @kbd{S-Mouse-1}
4405@kindex @kbd{S-mouse-2} 4407@kindex @kbd{S-Mouse-2}
4406@kindex @kbd{meta button1up} 4408@kindex @kbd{meta button1up}
4407@kindex @kbd{meta button2up} 4409@kindex @kbd{meta button2up}
4408 4410