aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-09-26 10:01:42 +0000
committerRichard M. Stallman2003-09-26 10:01:42 +0000
commit6142d1d06cbc870f82591f85eaa908541d9bb4f9 (patch)
tree047be6d980befbee6b8af5b1ba1ab6537c008c15
parent7ae39109ac1df74e7e7c3fd951285ded153ddaf7 (diff)
downloademacs-6142d1d06cbc870f82591f85eaa908541d9bb4f9.tar.gz
emacs-6142d1d06cbc870f82591f85eaa908541d9bb4f9.zip
Avoid @strong{Note:}.
-rw-r--r--lispref/ChangeLog11
-rw-r--r--lispref/buffers.texi2
-rw-r--r--lispref/commands.texi2
-rw-r--r--lispref/debugging.texi8
-rw-r--r--lispref/eval.texi10
-rw-r--r--lispref/loading.texi6
-rw-r--r--lispref/minibuf.texi9
-rw-r--r--lispref/text.texi2
-rw-r--r--lispref/variables.texi6
9 files changed, 34 insertions, 22 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 3404bd304d8..02e1e4e54f0 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,14 @@
12003-09-26 Richard M. Stallman <rms@gnu.org>
2
3
4 * buffers.texi, commands.texi, debugging.texi, eval.texi:
5 * loading.texi, minibuf.texi, text.texi, variables.texi:
6 Avoid @strong{Note:}.
7
82003-09-26 Richard M. Stallman <rms@gnu.org>
9
10 * keymaps.texi (Remapping Commands): Fix typo.
11
12003-09-23 Luc Teirlinck <teirllm@mail.auburn.edu> 122003-09-23 Luc Teirlinck <teirllm@mail.auburn.edu>
2 13
3 * processes.texi (Low-Level Network): Fix typo. 14 * processes.texi (Low-Level Network): Fix typo.
diff --git a/lispref/buffers.texi b/lispref/buffers.texi
index c811f0b0017..5b1104eb058 100644
--- a/lispref/buffers.texi
+++ b/lispref/buffers.texi
@@ -106,7 +106,7 @@ Emacs reads a command is the buffer that the command will apply to.
106switch visibly to a different buffer so that the user can edit it. For 106switch visibly to a different buffer so that the user can edit it. For
107that, you must use the functions described in @ref{Displaying Buffers}. 107that, you must use the functions described in @ref{Displaying Buffers}.
108 108
109 @strong{Note:} Lisp functions that change to a different current buffer 109 @strong{Warning:} Lisp functions that change to a different current buffer
110should not depend on the command loop to set it back afterwards. 110should not depend on the command loop to set it back afterwards.
111Editing commands written in Emacs Lisp can be called from other programs 111Editing commands written in Emacs Lisp can be called from other programs
112as well as from the command loop; it is convenient for the caller if 112as well as from the command loop; it is convenient for the caller if
diff --git a/lispref/commands.texi b/lispref/commands.texi
index b60cb2b8732..4a8fe10c4c8 100644
--- a/lispref/commands.texi
+++ b/lispref/commands.texi
@@ -2055,7 +2055,7 @@ calls that function, passing the character as an argument.
2055If this is non-@code{nil}, its value specifies the current input method 2055If this is non-@code{nil}, its value specifies the current input method
2056function. 2056function.
2057 2057
2058@strong{Note:} Don't bind this variable with @code{let}. It is often 2058@strong{Warning:} don't bind this variable with @code{let}. It is often
2059buffer-local, and if you bind it around reading input (which is exactly 2059buffer-local, and if you bind it around reading input (which is exactly
2060when you @emph{would} bind it), switching buffers asynchronously while 2060when you @emph{would} bind it), switching buffers asynchronously while
2061Emacs is waiting will cause the value to be restored in the wrong 2061Emacs is waiting will cause the value to be restored in the wrong
diff --git a/lispref/debugging.texi b/lispref/debugging.texi
index cc3fc7a9bd9..e98adaa22e4 100644
--- a/lispref/debugging.texi
+++ b/lispref/debugging.texi
@@ -216,10 +216,10 @@ When @code{debug-on-entry} is called interactively, it prompts for
216up to invoke the debugger on entry, @code{debug-on-entry} does nothing. 216up to invoke the debugger on entry, @code{debug-on-entry} does nothing.
217@code{debug-on-entry} always returns @var{function-name}. 217@code{debug-on-entry} always returns @var{function-name}.
218 218
219@strong{Note:} if you redefine a function after using 219@strong{Warning:} if you redefine a function after using
220@code{debug-on-entry} on it, the code to enter the debugger is discarded 220@code{debug-on-entry} on it, the code to enter the debugger is
221by the redefinition. In effect, redefining the function cancels 221discarded by the redefinition. In effect, redefining the function
222the break-on-entry feature for that function. 222cancels the break-on-entry feature for that function.
223 223
224@example 224@example
225@group 225@group
diff --git a/lispref/eval.texi b/lispref/eval.texi
index 5a9cb6117e2..165889e75ed 100644
--- a/lispref/eval.texi
+++ b/lispref/eval.texi
@@ -588,11 +588,11 @@ property list. On these occasions, use the @code{eval} function.
588specify limits to the evaluation process, or record recently returned 588specify limits to the evaluation process, or record recently returned
589values. Loading a file also does evaluation (@pxref{Loading}). 589values. Loading a file also does evaluation (@pxref{Loading}).
590 590
591 @strong{Note:} it is generally cleaner and more flexible to store a 591 It is generally cleaner and more flexible to store a function in a
592function in a data structure, and call it with @code{funcall} or 592data structure, and call it with @code{funcall} or @code{apply}, than
593@code{apply}, than to store an expression in the data structure and 593to store an expression in the data structure and evaluate it. Using
594evaluate it. Using functions provides the ability to pass information 594functions provides the ability to pass information to them as
595to them as arguments. 595arguments.
596 596
597@defun eval form 597@defun eval form
598This is the basic function evaluating an expression. It evaluates 598This is the basic function evaluating an expression. It evaluates
diff --git a/lispref/loading.texi b/lispref/loading.texi
index 752f0bcf7a4..71ae09284a8 100644
--- a/lispref/loading.texi
+++ b/lispref/loading.texi
@@ -148,9 +148,9 @@ The function should accept one argument, just as @code{read} does.
148Normally, the variable's value is @code{nil}, which means those 148Normally, the variable's value is @code{nil}, which means those
149functions should use @code{read}. 149functions should use @code{read}.
150 150
151@strong{Note:} Instead of using this variable, it is cleaner to use 151Instead of using this variable, it is cleaner to use another, newer
152another, newer feature: to pass the function as the @var{read-function} 152feature: to pass the function as the @var{read-function} argument to
153argument to @code{eval-region}. @xref{Eval}. 153@code{eval-region}. @xref{Eval}.
154@end defvar 154@end defvar
155 155
156 For information about how @code{load} is used in building Emacs, see 156 For information about how @code{load} is used in building Emacs, see
diff --git a/lispref/minibuf.texi b/lispref/minibuf.texi
index 0e455a446e7..114942ed787 100644
--- a/lispref/minibuf.texi
+++ b/lispref/minibuf.texi
@@ -1110,12 +1110,13 @@ initial input. It defaults to the current buffer's value of
1110@code{default-directory}. 1110@code{default-directory}.
1111 1111
1112@c Emacs 19 feature 1112@c Emacs 19 feature
1113If you specify @var{initial}, that is an initial file name to insert in 1113If you specify @var{initial}, that is an initial file name to insert
1114the buffer (after @var{directory}, if that is inserted). In this 1114in the buffer (after @var{directory}, if that is inserted). In this
1115case, point goes at the beginning of @var{initial}. The default for 1115case, point goes at the beginning of @var{initial}. The default for
1116@var{initial} is @code{nil}---don't insert any file name. To see what 1116@var{initial} is @code{nil}---don't insert any file name. To see what
1117@var{initial} does, try the command @kbd{C-x C-v}. @strong{Note:} we 1117@var{initial} does, try the command @kbd{C-x C-v}. @strong{Please
1118recommend using @var{default} rather than @var{initial} in most cases. 1118note:} we recommend using @var{default} rather than @var{initial} in
1119most cases.
1119 1120
1120If @var{predicate} is non-@code{nil}, it specifies a function of one 1121If @var{predicate} is non-@code{nil}, it specifies a function of one
1121argument that decides which file names are acceptable completion 1122argument that decides which file names are acceptable completion
diff --git a/lispref/text.texi b/lispref/text.texi
index 77a457cadd8..25a4c978fb9 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -3936,7 +3936,7 @@ made within the @code{combine-after-change-calls} body.
3936@code{after-change-functions} within 3936@code{after-change-functions} within
3937the body of a @code{combine-after-change-calls} form. 3937the body of a @code{combine-after-change-calls} form.
3938 3938
3939@strong{Note:} If the changes you combine occur in widely scattered 3939@strong{Warning:} if the changes you combine occur in widely scattered
3940parts of the buffer, this will still work, but it is not advisable, 3940parts of the buffer, this will still work, but it is not advisable,
3941because it may lead to inefficient behavior for some change hook 3941because it may lead to inefficient behavior for some change hook
3942functions. 3942functions.
diff --git a/lispref/variables.texi b/lispref/variables.texi
index 0a99b1c110f..ab5e99e506c 100644
--- a/lispref/variables.texi
+++ b/lispref/variables.texi
@@ -1281,9 +1281,9 @@ If the variable is terminal-local, this function signals an error. Such
1281variables cannot have buffer-local bindings as well. @xref{Multiple 1281variables cannot have buffer-local bindings as well. @xref{Multiple
1282Displays}. 1282Displays}.
1283 1283
1284@strong{Note:} Do not use @code{make-local-variable} for a hook 1284@strong{Warning:} do not use @code{make-local-variable} for a hook
1285variable. The hook variables are automatically made buffer-local 1285variable. The hook variables are automatically made buffer-local as
1286as needed if you use the @var{local} argument to @code{add-hook} or 1286needed if you use the @var{local} argument to @code{add-hook} or
1287@code{remove-hook}. 1287@code{remove-hook}.
1288@end deffn 1288@end deffn
1289 1289