aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispintro
diff options
context:
space:
mode:
authorMichael Albinus2018-02-26 13:53:37 +0100
committerMichael Albinus2018-02-26 13:53:37 +0100
commit9743f48de7325bd95a42e1a27acbf6635f8d086b (patch)
tree364b474f9019fa2899befe6d3260f8b8e1ed64f6 /doc/lispintro
parentce557a924a299650b5e0c93ba276f1ec651f7941 (diff)
downloademacs-9743f48de7325bd95a42e1a27acbf6635f8d086b.tar.gz
emacs-9743f48de7325bd95a42e1a27acbf6635f8d086b.zip
Mark keys consistently in manuals
* doc/emacs/killing.texi: * doc/lispintro/emacs-lisp-intro.texi: * doc/misc/calc.texi: * doc/misc/cc-mode.texi: * doc/misc/dired-x.texi: * doc/misc/ede.texi: * doc/misc/edt.texi: * doc/misc/efaq.texi: * doc/misc/erc.texi: * doc/misc/eshell.texi: * doc/misc/gnus-faq.texi: * doc/misc/gnus-news.texi: * doc/misc/idlwave.texi: * doc/misc/ido.texi: * doc/misc/mairix-el.texi: * doc/misc/message.texi: * doc/misc/mh-e.texi: * doc/misc/newsticker.texi: * doc/misc/org.texi: * doc/misc/pcl-cvs.texi: * doc/misc/ses.texi: * doc/misc/sieve.texi: * doc/misc/smtpmail.texi: * doc/misc/speedbar.texi: * doc/misc/srecode.texi: * doc/misc/vhdl-mode.texi: * doc/misc/vip.texi: * doc/misc/viper.texi: Mark keys consistently.
Diffstat (limited to 'doc/lispintro')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 79663408215..b79432e7196 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -13254,7 +13254,7 @@ If you are reading this inside of GNU Emacs and you want to see the
13254whole function, you can type @kbd{C-h f} (@code{describe-function}) 13254whole function, you can type @kbd{C-h f} (@code{describe-function})
13255and the name of the function. This gives you the function 13255and the name of the function. This gives you the function
13256documentation and the name of the library containing the function's 13256documentation and the name of the library containing the function's
13257source. Place point over the name of the library and press the RET 13257source. Place point over the name of the library and press the @key{RET}
13258key; you will be taken directly to the source. (Be sure to install 13258key; you will be taken directly to the source. (Be sure to install
13259your sources! Without them, you are like a person who tries to drive 13259your sources! Without them, you are like a person who tries to drive
13260a car with his eyes shut!) 13260a car with his eyes shut!)
@@ -14739,7 +14739,7 @@ In Emacs 22
14739 "Edit file FILENAME. 14739 "Edit file FILENAME.
14740Switch to a buffer visiting file FILENAME, 14740Switch to a buffer visiting file FILENAME,
14741creating one if none already exists. 14741creating one if none already exists.
14742Interactively, the default if you just type RET is the current directory, 14742Interactively, the default if you just type @key{RET} is the current directory,
14743but the visited file name is available through the minibuffer history: 14743but the visited file name is available through the minibuffer history:
14744type M-n to pull it into the minibuffer. 14744type M-n to pull it into the minibuffer.
14745 14745
@@ -15917,8 +15917,8 @@ a regular expression, including functions that are not interactive.
15917What we want to look for is some command that prints or inserts 15917What we want to look for is some command that prints or inserts
15918columns. Very likely, the name of the function will contain either 15918columns. Very likely, the name of the function will contain either
15919the word ``print'' or the word ``insert'' or the word ``column''. 15919the word ``print'' or the word ``insert'' or the word ``column''.
15920Therefore, we can simply type @kbd{M-x apropos RET 15920Therefore, we can simply type @kbd{M-x apropos @key{RET}
15921print\|insert\|column RET} and look at the result. On my system, this 15921print\|insert\|column @key{RET}} and look at the result. On my system, this
15922command once took quite some time, and then produced a list of 79 15922command once took quite some time, and then produced a list of 79
15923functions and variables. Now it does not take much time at all and 15923functions and variables. Now it does not take much time at all and
15924produces a list of 211 functions and variables. Scanning down the 15924produces a list of 211 functions and variables. Scanning down the
@@ -18147,7 +18147,7 @@ You can enter the debugger when you call the function by calling
18147Type: 18147Type:
18148 18148
18149@smallexample 18149@smallexample
18150M-x debug-on-entry RET triangle-bugged RET 18150M-x debug-on-entry @key{RET} triangle-bugged @key{RET}
18151@end smallexample 18151@end smallexample
18152 18152
18153@need 1250 18153@need 1250
@@ -18255,7 +18255,7 @@ To cancel the effect of @code{debug-on-entry}, call
18255@code{cancel-debug-on-entry} and the name of the function, like this: 18255@code{cancel-debug-on-entry} and the name of the function, like this:
18256 18256
18257@smallexample 18257@smallexample
18258M-x cancel-debug-on-entry RET triangle-bugged RET 18258M-x cancel-debug-on-entry @key{RET} triangle-bugged @key{RET}
18259@end smallexample 18259@end smallexample
18260 18260
18261@noindent 18261@noindent
@@ -18341,7 +18341,7 @@ this by positioning your cursor within or just after the definition
18341and typing 18341and typing
18342 18342
18343@smallexample 18343@smallexample
18344M-x edebug-defun RET 18344M-x edebug-defun @key{RET}
18345@end smallexample 18345@end smallexample
18346 18346
18347@noindent 18347@noindent
@@ -18552,7 +18552,7 @@ one of those long, but decipherable functions. You can look up
18552 18552
18553In this instance, since the code is Lisp, the @file{*Help*} buffer 18553In this instance, since the code is Lisp, the @file{*Help*} buffer
18554contains the name of the library containing the function's source. 18554contains the name of the library containing the function's source.
18555You can put point over the name of the library and press the RET key, 18555You can put point over the name of the library and press the @key{RET} key,
18556which in this situation is bound to @code{help-follow}, and be taken 18556which in this situation is bound to @code{help-follow}, and be taken
18557directly to the source, in the same way as @kbd{M-.} 18557directly to the source, in the same way as @kbd{M-.}
18558(@code{find-tag}). 18558(@code{find-tag}).