diff options
| author | Richard M. Stallman | 2003-09-26 10:01:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-09-26 10:01:42 +0000 |
| commit | 6142d1d06cbc870f82591f85eaa908541d9bb4f9 (patch) | |
| tree | 047be6d980befbee6b8af5b1ba1ab6537c008c15 | |
| parent | 7ae39109ac1df74e7e7c3fd951285ded153ddaf7 (diff) | |
| download | emacs-6142d1d06cbc870f82591f85eaa908541d9bb4f9.tar.gz emacs-6142d1d06cbc870f82591f85eaa908541d9bb4f9.zip | |
Avoid @strong{Note:}.
| -rw-r--r-- | lispref/ChangeLog | 11 | ||||
| -rw-r--r-- | lispref/buffers.texi | 2 | ||||
| -rw-r--r-- | lispref/commands.texi | 2 | ||||
| -rw-r--r-- | lispref/debugging.texi | 8 | ||||
| -rw-r--r-- | lispref/eval.texi | 10 | ||||
| -rw-r--r-- | lispref/loading.texi | 6 | ||||
| -rw-r--r-- | lispref/minibuf.texi | 9 | ||||
| -rw-r--r-- | lispref/text.texi | 2 | ||||
| -rw-r--r-- | lispref/variables.texi | 6 |
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 @@ | |||
| 1 | 2003-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 | |||
| 8 | 2003-09-26 Richard M. Stallman <rms@gnu.org> | ||
| 9 | |||
| 10 | * keymaps.texi (Remapping Commands): Fix typo. | ||
| 11 | |||
| 1 | 2003-09-23 Luc Teirlinck <teirllm@mail.auburn.edu> | 12 | 2003-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. | |||
| 106 | switch visibly to a different buffer so that the user can edit it. For | 106 | switch visibly to a different buffer so that the user can edit it. For |
| 107 | that, you must use the functions described in @ref{Displaying Buffers}. | 107 | that, 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 |
| 110 | should not depend on the command loop to set it back afterwards. | 110 | should not depend on the command loop to set it back afterwards. |
| 111 | Editing commands written in Emacs Lisp can be called from other programs | 111 | Editing commands written in Emacs Lisp can be called from other programs |
| 112 | as well as from the command loop; it is convenient for the caller if | 112 | as 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. | |||
| 2055 | If this is non-@code{nil}, its value specifies the current input method | 2055 | If this is non-@code{nil}, its value specifies the current input method |
| 2056 | function. | 2056 | function. |
| 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 |
| 2059 | buffer-local, and if you bind it around reading input (which is exactly | 2059 | buffer-local, and if you bind it around reading input (which is exactly |
| 2060 | when you @emph{would} bind it), switching buffers asynchronously while | 2060 | when you @emph{would} bind it), switching buffers asynchronously while |
| 2061 | Emacs is waiting will cause the value to be restored in the wrong | 2061 | Emacs 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 | |||
| 216 | up to invoke the debugger on entry, @code{debug-on-entry} does nothing. | 216 | up 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 |
| 221 | by the redefinition. In effect, redefining the function cancels | 221 | discarded by the redefinition. In effect, redefining the function |
| 222 | the break-on-entry feature for that function. | 222 | cancels 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. | |||
| 588 | specify limits to the evaluation process, or record recently returned | 588 | specify limits to the evaluation process, or record recently returned |
| 589 | values. Loading a file also does evaluation (@pxref{Loading}). | 589 | values. 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 |
| 592 | function in a data structure, and call it with @code{funcall} or | 592 | data structure, and call it with @code{funcall} or @code{apply}, than |
| 593 | @code{apply}, than to store an expression in the data structure and | 593 | to store an expression in the data structure and evaluate it. Using |
| 594 | evaluate it. Using functions provides the ability to pass information | 594 | functions provides the ability to pass information to them as |
| 595 | to them as arguments. | 595 | arguments. |
| 596 | 596 | ||
| 597 | @defun eval form | 597 | @defun eval form |
| 598 | This is the basic function evaluating an expression. It evaluates | 598 | This 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. | |||
| 148 | Normally, the variable's value is @code{nil}, which means those | 148 | Normally, the variable's value is @code{nil}, which means those |
| 149 | functions should use @code{read}. | 149 | functions should use @code{read}. |
| 150 | 150 | ||
| 151 | @strong{Note:} Instead of using this variable, it is cleaner to use | 151 | Instead of using this variable, it is cleaner to use another, newer |
| 152 | another, newer feature: to pass the function as the @var{read-function} | 152 | feature: to pass the function as the @var{read-function} argument to |
| 153 | argument 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 |
| 1113 | If you specify @var{initial}, that is an initial file name to insert in | 1113 | If you specify @var{initial}, that is an initial file name to insert |
| 1114 | the buffer (after @var{directory}, if that is inserted). In this | 1114 | in the buffer (after @var{directory}, if that is inserted). In this |
| 1115 | case, point goes at the beginning of @var{initial}. The default for | 1115 | case, 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 |
| 1118 | recommend using @var{default} rather than @var{initial} in most cases. | 1118 | note:} we recommend using @var{default} rather than @var{initial} in |
| 1119 | most cases. | ||
| 1119 | 1120 | ||
| 1120 | If @var{predicate} is non-@code{nil}, it specifies a function of one | 1121 | If @var{predicate} is non-@code{nil}, it specifies a function of one |
| 1121 | argument that decides which file names are acceptable completion | 1122 | argument 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 |
| 3937 | the body of a @code{combine-after-change-calls} form. | 3937 | the 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 |
| 3940 | parts of the buffer, this will still work, but it is not advisable, | 3940 | parts of the buffer, this will still work, but it is not advisable, |
| 3941 | because it may lead to inefficient behavior for some change hook | 3941 | because it may lead to inefficient behavior for some change hook |
| 3942 | functions. | 3942 | functions. |
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 | |||
| 1281 | variables cannot have buffer-local bindings as well. @xref{Multiple | 1281 | variables cannot have buffer-local bindings as well. @xref{Multiple |
| 1282 | Displays}. | 1282 | Displays}. |
| 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 |
| 1285 | variable. The hook variables are automatically made buffer-local | 1285 | variable. The hook variables are automatically made buffer-local as |
| 1286 | as needed if you use the @var{local} argument to @code{add-hook} or | 1286 | needed 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 | ||