aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'elisp-manual/20.2.5/01_all_fix-texinfo.patch')
-rw-r--r--elisp-manual/20.2.5/01_all_fix-texinfo.patch99
1 files changed, 99 insertions, 0 deletions
diff --git a/elisp-manual/20.2.5/01_all_fix-texinfo.patch b/elisp-manual/20.2.5/01_all_fix-texinfo.patch
new file mode 100644
index 0000000..ac509d5
--- /dev/null
+++ b/elisp-manual/20.2.5/01_all_fix-texinfo.patch
@@ -0,0 +1,99 @@
+--- elisp-manual-20-2.5-orig/commands.texi
++++ elisp-manual-20-2.5/commands.texi
+@@ -1924,5 +1924,5 @@
+ function.
+
+-@strong{Note:} Don't bind this variable with @code{let}. It is often
++@strong{Warning:} Don't bind this variable with @code{let}. It is often
+ buffer-local, and if you bind it around reading input (which is exactly
+ when you @emph{would} bind it), switching buffers asynchronously while
+--- elisp-manual-20-2.5-orig/debugging.texi
++++ elisp-manual-20-2.5/debugging.texi
+@@ -215,5 +215,5 @@
+ @code{debug-on-entry} always returns @var{function-name}.
+
+-@strong{Note:} if you redefine a function after using
++@strong{Warning:} if you redefine a function after using
+ @code{debug-on-entry} on it, the code to enter the debugger is discarded
+ by the redefinition. In effect, redefining the function cancels
+--- elisp-manual-20-2.5-orig/eval.texi
++++ elisp-manual-20-2.5/eval.texi
+@@ -589,5 +589,5 @@
+ values. Loading a file also does evaluation (@pxref{Loading}).
+
+- @strong{Note:} it is generally cleaner and more flexible to store a
++ It is generally cleaner and more flexible to store a
+ function in a data structure, and call it with @code{funcall} or
+ @code{apply}, than to store an expression in the data structure and
+--- elisp-manual-20-2.5-orig/loading.texi
++++ elisp-manual-20-2.5/loading.texi
+@@ -148,5 +148,5 @@
+ functions should use @code{read}.
+
+-@strong{Note:} Instead of using this variable, it is cleaner to use
++Instead of using this variable, it is cleaner to use
+ another, newer feature: to pass the function as the @var{read-function}
+ argument to @code{eval-region}. @xref{Eval}.
+--- elisp-manual-20-2.5-orig/minibuf.texi
++++ elisp-manual-20-2.5/minibuf.texi
+@@ -1042,6 +1042,6 @@
+ case, point goes at the beginning of @var{initial}. The default for
+ @var{initial} is @code{nil}---don't insert any file name. To see what
+-@var{initial} does, try the command @kbd{C-x C-v}. @strong{Note:} we
+-recommend using @var{default} rather than @var{initial} in most cases.
++@var{initial} does, try the command @kbd{C-x C-v}. @strong{Please note:}
++we recommend using @var{default} rather than @var{initial} in most cases.
+
+ Here is an example:
+--- elisp-manual-20-2.5-orig/os.texi
++++ elisp-manual-20-2.5/os.texi
+@@ -1385,5 +1385,5 @@
+ @kbd{C-\} and the characters @kbd{C-q} and @kbd{C-^}. Subsequently,
+ typing @kbd{C-\} has all the usual effects of typing @kbd{C-s}, and vice
+-versa. (@xref{Flow Control} for more information on this subject.)
++versa. (@xref{Flow Control}, for more information on this subject.)
+
+ @cindex flow control example
+--- elisp-manual-20-2.5-orig/positions.texi
++++ elisp-manual-20-2.5/positions.texi
+@@ -82,5 +82,5 @@
+ current buffer. This is @code{(1+ (buffer-size))}, unless narrowing is
+ in effect, in which case it is the position of the end of the region
+-that you narrowed to. (@xref{Narrowing}).
++that you narrowed to. (@xref{Narrowing}.)
+ @end defun
+
+--- elisp-manual-20-2.5-orig/strings.texi
++++ elisp-manual-20-2.5/strings.texi
+@@ -836,5 +836,5 @@
+ The definition of a word is any sequence of consecutive characters that
+ are assigned to the word constituent syntax class in the current syntax
+-table (@xref{Syntax Class Table}).
++table (@pxref{Syntax Class Table}).
+
+ When the argument to @code{capitalize} is a character, @code{capitalize}
+@@ -863,5 +863,5 @@
+ The definition of a word is any sequence of consecutive characters that
+ are assigned to the word constituent syntax class in the current syntax
+-table (@xref{Syntax Class Table}).
++table (@pxref{Syntax Class Table}).
+
+ @example
+--- elisp-manual-20-2.5-orig/text.texi
++++ elisp-manual-20-2.5/text.texi
+@@ -3276,5 +3276,5 @@
+ the body of a @code{combine-after-change-calls} form.
+
+-@strong{Note:} If the changes you combine occur in widely scattered
++@strong{Warning:} If the changes you combine occur in widely scattered
+ parts of the buffer, this will still work, but it is not advisable,
+ because it may lead to inefficient behavior for some change hook
+--- elisp-manual-20-2.5-orig/variables.texi
++++ elisp-manual-20-2.5/variables.texi
+@@ -1240,5 +1240,5 @@
+ Displays}.
+
+-@strong{Note:} do not use @code{make-local-variable} for a hook
++@strong{Warning:} do not use @code{make-local-variable} for a hook
+ variable. Instead, use @code{make-local-hook}. @xref{Hooks}.
+ @end deffn