diff options
| author | Werner LEMBERG | 2005-03-25 10:17:33 +0000 |
|---|---|---|
| committer | Werner LEMBERG | 2005-03-25 10:17:33 +0000 |
| commit | 2cbd16b93ebcaec3f42fcc9de129f53792583adb (patch) | |
| tree | 38a6fa9a1c278f5dec9fb1e74f1c9fc86829e5e4 | |
| parent | f8b00e0f4a6140a6a390ffb97c8f984bbf7df2de (diff) | |
| download | emacs-2cbd16b93ebcaec3f42fcc9de129f53792583adb.tar.gz emacs-2cbd16b93ebcaec3f42fcc9de129f53792583adb.zip | |
* calc.texi, cl.texi, gnus.texi, idlwave.texi, reftex.texi: Replace
`legal' with `valid'.
| -rw-r--r-- | man/ChangeLog | 5 | ||||
| -rw-r--r-- | man/calc.texi | 14 | ||||
| -rw-r--r-- | man/cl.texi | 20 | ||||
| -rw-r--r-- | man/gnus.texi | 4 | ||||
| -rw-r--r-- | man/idlwave.texi | 12 | ||||
| -rw-r--r-- | man/reftex.texi | 20 |
6 files changed, 40 insertions, 35 deletions
diff --git a/man/ChangeLog b/man/ChangeLog index 4292d378d51..57948590627 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2005-03-25 Werner Lemberg <wl@gnu.org> | 1 | 2005-03-25 Werner Lemberg <wl@gnu.org> |
| 2 | 2 | ||
| 3 | * calc.texi, cl.texi, gnus.texi, idlwave.texi, reftex.texi: Replace | ||
| 4 | `legal' with `valid'. | ||
| 5 | |||
| 6 | 2005-03-25 Werner Lemberg <wl@gnu.org> | ||
| 7 | |||
| 3 | * calc.texi, reftex.texi: Replace `illegal' with `invalid'. | 8 | * calc.texi, reftex.texi: Replace `illegal' with `invalid'. |
| 4 | 9 | ||
| 5 | 2005-03-24 Jay Belanger <belanger@truman.edu> | 10 | 2005-03-24 Jay Belanger <belanger@truman.edu> |
diff --git a/man/calc.texi b/man/calc.texi index 5a5d1e31eb1..b2150a3ae56 100644 --- a/man/calc.texi +++ b/man/calc.texi | |||
| @@ -13942,7 +13942,7 @@ Without being switched into C mode first, Calc would have misinterpreted | |||
| 13942 | the brackets in @samp{a[1]} and @samp{a[2]}, would not have known that | 13942 | the brackets in @samp{a[1]} and @samp{a[2]}, would not have known that |
| 13943 | @code{atan} was equivalent to Calc's built-in @code{arctan} function, | 13943 | @code{atan} was equivalent to Calc's built-in @code{arctan} function, |
| 13944 | and would have written the formula back with notations (like implicit | 13944 | and would have written the formula back with notations (like implicit |
| 13945 | multiplication) which would not have been legal for a C program. | 13945 | multiplication) which would not have been valid for a C program. |
| 13946 | 13946 | ||
| 13947 | As another example, suppose you are maintaining a C program and a La@TeX{} | 13947 | As another example, suppose you are maintaining a C program and a La@TeX{} |
| 13948 | document, each of which needs a copy of the same formula. You can grab the | 13948 | document, each of which needs a copy of the same formula. You can grab the |
| @@ -15472,7 +15472,7 @@ backslashes in tokens.) | |||
| 15472 | This will parse @samp{3 bad token 4 /"\ 5} to @samp{silly(3,4,5)}. | 15472 | This will parse @samp{3 bad token 4 /"\ 5} to @samp{silly(3,4,5)}. |
| 15473 | 15473 | ||
| 15474 | The token @kbd{#} has a predefined meaning in Calc's formula parser; | 15474 | The token @kbd{#} has a predefined meaning in Calc's formula parser; |
| 15475 | it is not legal to use @samp{"#"} in a syntax rule. However, longer | 15475 | it is not valid to use @samp{"#"} in a syntax rule. However, longer |
| 15476 | tokens that include the @samp{#} character are allowed. Also, while | 15476 | tokens that include the @samp{#} character are allowed. Also, while |
| 15477 | @samp{"$"} and @samp{"\""} are allowed as tokens, their presence in | 15477 | @samp{"$"} and @samp{"\""} are allowed as tokens, their presence in |
| 15478 | the syntax table will prevent those characters from working in their | 15478 | the syntax table will prevent those characters from working in their |
| @@ -23426,7 +23426,7 @@ is allowed only within @code{IntegRules}; it means ``integrate this | |||
| 23426 | with respect to the same integration variable.'' If Calc is unable | 23426 | with respect to the same integration variable.'' If Calc is unable |
| 23427 | to integrate @code{u}, the integration that invoked @code{IntegRules} | 23427 | to integrate @code{u}, the integration that invoked @code{IntegRules} |
| 23428 | also fails. Thus integrating @samp{twice(f(x))} fails, returning the | 23428 | also fails. Thus integrating @samp{twice(f(x))} fails, returning the |
| 23429 | unevaluated integral @samp{integ(twice(f(x)), x)}. It is still legal | 23429 | unevaluated integral @samp{integ(twice(f(x)), x)}. It is still valid |
| 23430 | to call @code{integ} with two or more arguments, however; in this case, | 23430 | to call @code{integ} with two or more arguments, however; in this case, |
| 23431 | if @code{u} is not integrable, @code{twice} itself will still be | 23431 | if @code{u} is not integrable, @code{twice} itself will still be |
| 23432 | integrated: If the above rule is changed to @samp{... := twice(integ(u,x))}, | 23432 | integrated: If the above rule is changed to @samp{... := twice(integ(u,x))}, |
| @@ -25273,7 +25273,7 @@ As a special feature, if the limits are infinite (or omitted, as | |||
| 25273 | described above) but the formula includes vectors subscripted by | 25273 | described above) but the formula includes vectors subscripted by |
| 25274 | expressions that involve the iteration variable, Calc narrows | 25274 | expressions that involve the iteration variable, Calc narrows |
| 25275 | the limits to include only the range of integers which result in | 25275 | the limits to include only the range of integers which result in |
| 25276 | legal subscripts for the vector. For example, the sum | 25276 | valid subscripts for the vector. For example, the sum |
| 25277 | @samp{sum(k [a,b,c,d,e,f,g]_(2k),k)} evaluates to @samp{b + 2 d + 3 f}. | 25277 | @samp{sum(k [a,b,c,d,e,f,g]_(2k),k)} evaluates to @samp{b + 2 d + 3 f}. |
| 25278 | 25278 | ||
| 25279 | The limits of a sum do not need to be integers. For example, | 25279 | The limits of a sum do not need to be integers. For example, |
| @@ -28738,7 +28738,7 @@ command. | |||
| 28738 | @kindex g A | 28738 | @kindex g A |
| 28739 | @pindex calc-graph-add-3d | 28739 | @pindex calc-graph-add-3d |
| 28740 | The @kbd{g A} (@code{calc-graph-add-3d}) command adds a 3D curve | 28740 | The @kbd{g A} (@code{calc-graph-add-3d}) command adds a 3D curve |
| 28741 | to the graph. It is not legal to intermix 2D and 3D curves in a | 28741 | to the graph. It is not valid to intermix 2D and 3D curves in a |
| 28742 | single graph. This command takes three arguments, ``x'', ``y'', | 28742 | single graph. This command takes three arguments, ``x'', ``y'', |
| 28743 | and ``z'', from the stack. With a positive prefix @expr{n}, it | 28743 | and ``z'', from the stack. With a positive prefix @expr{n}, it |
| 28744 | takes @expr{n+2} arguments (common ``x'' and ``y'', plus @expr{n} | 28744 | takes @expr{n+2} arguments (common ``x'' and ``y'', plus @expr{n} |
| @@ -30503,7 +30503,7 @@ of mode setting, the second is a name for the mode itself, and | |||
| 30503 | the third is the value in the form of a Lisp symbol, number, | 30503 | the third is the value in the form of a Lisp symbol, number, |
| 30504 | or list. Annotations with unrecognizable text in the first or | 30504 | or list. Annotations with unrecognizable text in the first or |
| 30505 | second parts are ignored. The third part is not checked to make | 30505 | second parts are ignored. The third part is not checked to make |
| 30506 | sure the value is of a legal type or range; if you write an | 30506 | sure the value is of a valid type or range; if you write an |
| 30507 | annotation by hand, be sure to give a proper value or results | 30507 | annotation by hand, be sure to give a proper value or results |
| 30508 | will be unpredictable. Mode-setting annotations are case-sensitive. | 30508 | will be unpredictable. Mode-setting annotations are case-sensitive. |
| 30509 | 30509 | ||
| @@ -31792,7 +31792,7 @@ to pop @var{num} values off the stack, resimplify them by calling | |||
| 31792 | @code{calc-normalize}, and hand them to your function according to the | 31792 | @code{calc-normalize}, and hand them to your function according to the |
| 31793 | function's argument list. Your function may include @code{&optional} and | 31793 | function's argument list. Your function may include @code{&optional} and |
| 31794 | @code{&rest} parameters, so long as calling the function with @var{num} | 31794 | @code{&rest} parameters, so long as calling the function with @var{num} |
| 31795 | parameters is legal. | 31795 | parameters is valid. |
| 31796 | 31796 | ||
| 31797 | Your function must return either a number or a formula in a form | 31797 | Your function must return either a number or a formula in a form |
| 31798 | acceptable to Calc, or a list of such numbers or formulas. These value(s) | 31798 | acceptable to Calc, or a list of such numbers or formulas. These value(s) |
diff --git a/man/cl.texi b/man/cl.texi index 455465a27a3..6c52a16b733 100644 --- a/man/cl.texi +++ b/man/cl.texi | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | @copying | 5 | @copying |
| 6 | This file documents the GNU Emacs Common Lisp emulation package. | 6 | This file documents the GNU Emacs Common Lisp emulation package. |
| 7 | 7 | ||
| 8 | Copyright (C) 1993, 2002 Free Software Foundation, Inc. | 8 | Copyright (C) 1993, 2002, 2005 Free Software Foundation, Inc. |
| 9 | 9 | ||
| 10 | @quotation | 10 | @quotation |
| 11 | Permission is granted to copy, distribute and/or modify this document | 11 | Permission is granted to copy, distribute and/or modify this document |
| @@ -991,7 +991,7 @@ just as with @code{setq}. @code{setf} returns the value of the last | |||
| 991 | @var{form}. | 991 | @var{form}. |
| 992 | 992 | ||
| 993 | The following Lisp forms will work as generalized variables, and | 993 | The following Lisp forms will work as generalized variables, and |
| 994 | so may legally appear in the @var{place} argument of @code{setf}: | 994 | so may appear in the @var{place} argument of @code{setf}: |
| 995 | 995 | ||
| 996 | @itemize @bullet | 996 | @itemize @bullet |
| 997 | @item | 997 | @item |
| @@ -1073,7 +1073,7 @@ x (point-max))} in this case). | |||
| 1073 | 1073 | ||
| 1074 | @item | 1074 | @item |
| 1075 | A call of the form @code{(substring @var{subplace} @var{n} [@var{m}])}, | 1075 | A call of the form @code{(substring @var{subplace} @var{n} [@var{m}])}, |
| 1076 | where @var{subplace} is itself a legal generalized variable whose | 1076 | where @var{subplace} is itself a valid generalized variable whose |
| 1077 | current value is a string, and where the value stored is also a | 1077 | current value is a string, and where the value stored is also a |
| 1078 | string. The new string is spliced into the specified part of the | 1078 | string. The new string is spliced into the specified part of the |
| 1079 | destination string. For example: | 1079 | destination string. For example: |
| @@ -2379,7 +2379,7 @@ that they are exclusive rather than inclusive limits: | |||
| 2379 | 2379 | ||
| 2380 | The @code{by} value is always positive, even for downward-counting | 2380 | The @code{by} value is always positive, even for downward-counting |
| 2381 | loops. Some sort of @code{from} value is required for downward | 2381 | loops. Some sort of @code{from} value is required for downward |
| 2382 | loops; @samp{for x downto 5} is not a legal loop clause all by | 2382 | loops; @samp{for x downto 5} is not a valid loop clause all by |
| 2383 | itself. | 2383 | itself. |
| 2384 | 2384 | ||
| 2385 | @item for @var{var} in @var{list} by @var{function} | 2385 | @item for @var{var} in @var{list} by @var{function} |
| @@ -2481,7 +2481,7 @@ are also recognized but are equivalent to @code{symbols} in Emacs Lisp. | |||
| 2481 | Due to a minor implementation restriction, it will not work to have | 2481 | Due to a minor implementation restriction, it will not work to have |
| 2482 | more than one @code{for} clause iterating over symbols, hash tables, | 2482 | more than one @code{for} clause iterating over symbols, hash tables, |
| 2483 | keymaps, overlays, or intervals in a given @code{loop}. Fortunately, | 2483 | keymaps, overlays, or intervals in a given @code{loop}. Fortunately, |
| 2484 | it would rarely if ever be useful to do so. It @emph{is} legal to mix | 2484 | it would rarely if ever be useful to do so. It @emph{is} valid to mix |
| 2485 | one of these types of clauses with other clauses like @code{for ... to} | 2485 | one of these types of clauses with other clauses like @code{for ... to} |
| 2486 | or @code{while}. | 2486 | or @code{while}. |
| 2487 | 2487 | ||
| @@ -2727,7 +2727,7 @@ not automatically imply a return value. The loop must use some | |||
| 2727 | explicit mechanism, such as @code{finally return}, to return | 2727 | explicit mechanism, such as @code{finally return}, to return |
| 2728 | the accumulated result. | 2728 | the accumulated result. |
| 2729 | 2729 | ||
| 2730 | It is legal for several accumulation clauses of the same type to | 2730 | It is valid for several accumulation clauses of the same type to |
| 2731 | accumulate into the same place. From Steele: | 2731 | accumulate into the same place. From Steele: |
| 2732 | 2732 | ||
| 2733 | @example | 2733 | @example |
| @@ -3248,8 +3248,8 @@ In particular, | |||
| 3248 | (get sym prop) @equiv{} (getf (symbol-plist sym) prop) | 3248 | (get sym prop) @equiv{} (getf (symbol-plist sym) prop) |
| 3249 | @end example | 3249 | @end example |
| 3250 | 3250 | ||
| 3251 | It is legal to use @code{getf} as a @code{setf} place, in which case | 3251 | It is valid to use @code{getf} as a @code{setf} place, in which case |
| 3252 | its @var{place} argument must itself be a legal @code{setf} place. | 3252 | its @var{place} argument must itself be a valid @code{setf} place. |
| 3253 | The @var{default} argument, if any, is ignored in this context. | 3253 | The @var{default} argument, if any, is ignored in this context. |
| 3254 | The effect is to change (via @code{setcar}) the value cell in the | 3254 | The effect is to change (via @code{setcar}) the value cell in the |
| 3255 | list that corresponds to @var{property}, or to cons a new property-value | 3255 | list that corresponds to @var{property}, or to cons a new property-value |
| @@ -3535,7 +3535,7 @@ be an integer in which case the new object is seeded from that | |||
| 3535 | integer; each different integer seed will result in a completely | 3535 | integer; each different integer seed will result in a completely |
| 3536 | different sequence of random numbers. | 3536 | different sequence of random numbers. |
| 3537 | 3537 | ||
| 3538 | It is legal to print a @code{random-state} object to a buffer or | 3538 | It is valid to print a @code{random-state} object to a buffer or |
| 3539 | file and later read it back with @code{read}. If a program wishes | 3539 | file and later read it back with @code{read}. If a program wishes |
| 3540 | to use a sequence of pseudo-random numbers which can be reproduced | 3540 | to use a sequence of pseudo-random numbers which can be reproduced |
| 3541 | later for debugging, it can call @code{(make-random-state t)} to | 3541 | later for debugging, it can call @code{(make-random-state t)} to |
| @@ -4575,7 +4575,7 @@ initialized from the corresponding argument. Slots whose names | |||
| 4575 | do not appear in the argument list are initialized based on the | 4575 | do not appear in the argument list are initialized based on the |
| 4576 | @var{default-value} in their slot descriptor. Also, @code{&optional} | 4576 | @var{default-value} in their slot descriptor. Also, @code{&optional} |
| 4577 | and @code{&key} arguments which don't specify defaults take their | 4577 | and @code{&key} arguments which don't specify defaults take their |
| 4578 | defaults from the slot descriptor. It is legal to include arguments | 4578 | defaults from the slot descriptor. It is valid to include arguments |
| 4579 | which don't correspond to slot names; these are useful if they are | 4579 | which don't correspond to slot names; these are useful if they are |
| 4580 | referred to in the defaults for optional, keyword, or @code{&aux} | 4580 | referred to in the defaults for optional, keyword, or @code{&aux} |
| 4581 | arguments which @emph{do} correspond to slots. | 4581 | arguments which @emph{do} correspond to slots. |
diff --git a/man/gnus.texi b/man/gnus.texi index 3a98f64baa1..c670da11b22 100644 --- a/man/gnus.texi +++ b/man/gnus.texi | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | 8 | ||
| 9 | @copying | 9 | @copying |
| 10 | Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000, 2001, | 10 | Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000, 2001, |
| 11 | 2002, 2003, 2004 | 11 | 2002, 2003, 2004, 2005 |
| 12 | Free Software Foundation, Inc. | 12 | Free Software Foundation, Inc. |
| 13 | 13 | ||
| 14 | @quotation | 14 | @quotation |
| @@ -18594,7 +18594,7 @@ that most will look for it here, this variable tells the summary | |||
| 18594 | buffer how to maneuver around undownloaded (only headers stored in the | 18594 | buffer how to maneuver around undownloaded (only headers stored in the |
| 18595 | agent) and unfetched (neither article nor headers stored) articles. | 18595 | agent) and unfetched (neither article nor headers stored) articles. |
| 18596 | 18596 | ||
| 18597 | The legal values are @code{nil} (maneuver to any article), | 18597 | The valid values are @code{nil} (maneuver to any article), |
| 18598 | @code{undownloaded} (maneuvering while unplugged ignores articles that | 18598 | @code{undownloaded} (maneuvering while unplugged ignores articles that |
| 18599 | have not been fetched), @code{always-undownloaded} (maneuvering always | 18599 | have not been fetched), @code{always-undownloaded} (maneuvering always |
| 18600 | ignores articles that have not been fetched), @code{unfetched} | 18600 | ignores articles that have not been fetched), @code{unfetched} |
diff --git a/man/idlwave.texi b/man/idlwave.texi index 4082c42e970..8226c0ac63f 100644 --- a/man/idlwave.texi +++ b/man/idlwave.texi | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | @set IDLVERSION 6.1 | 14 | @set IDLVERSION 6.1 |
| 15 | @set NSYSROUTINES 1850 | 15 | @set NSYSROUTINES 1850 |
| 16 | @set NSYSKEYWORDS 7685 | 16 | @set NSYSKEYWORDS 7685 |
| 17 | @set DATE November, 2004 | 17 | @set DATE March, 2005 |
| 18 | @set AUTHOR J.D. Smith & Carsten Dominik | 18 | @set AUTHOR J.D. Smith & Carsten Dominik |
| 19 | @set AUTHOR-EMAIL jdsmith@@as.arizona.edu | 19 | @set AUTHOR-EMAIL jdsmith@@as.arizona.edu |
| 20 | @set MAINTAINER J.D. Smith | 20 | @set MAINTAINER J.D. Smith |
| @@ -29,7 +29,7 @@ Emacs, and interacting with an IDL shell run as a subprocess. | |||
| 29 | This is edition @value{EDITION} of the IDLWAVE User Manual for IDLWAVE | 29 | This is edition @value{EDITION} of the IDLWAVE User Manual for IDLWAVE |
| 30 | @value{VERSION} | 30 | @value{VERSION} |
| 31 | 31 | ||
| 32 | Copyright @copyright{} 1999, 2000, 2001, 2002, 2003, 2004 Free Software | 32 | Copyright @copyright{} 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software |
| 33 | Foundation, Inc. | 33 | Foundation, Inc. |
| 34 | 34 | ||
| 35 | Permission is granted to copy, distribute and/or modify this document | 35 | Permission is granted to copy, distribute and/or modify this document |
| @@ -60,7 +60,7 @@ license to the document, as described in section 6 of the license. | |||
| 60 | This is edition @value{EDITION} of the @cite{IDLWAVE User Manual} for | 60 | This is edition @value{EDITION} of the @cite{IDLWAVE User Manual} for |
| 61 | IDLWAVE version @value{VERSION}, @value{DATE}. | 61 | IDLWAVE version @value{VERSION}, @value{DATE}. |
| 62 | @sp 2 | 62 | @sp 2 |
| 63 | Copyright @copyright{} 1999, 2000, 2001, 2002, 2003, 2004 Free Software | 63 | Copyright @copyright{} 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software |
| 64 | Foundation, Inc. | 64 | Foundation, Inc. |
| 65 | @sp 2 | 65 | @sp 2 |
| 66 | @cindex Copyright, of IDLWAVE | 66 | @cindex Copyright, of IDLWAVE |
| @@ -2204,7 +2204,7 @@ case of routines, keywords, classes, and methods as they are completed, see | |||
| 2204 | 2204 | ||
| 2205 | @defopt idlwave-abbrev-change-case (@code{nil}) | 2205 | @defopt idlwave-abbrev-change-case (@code{nil}) |
| 2206 | Non-@code{nil} means all abbrevs will be forced to either upper or lower | 2206 | Non-@code{nil} means all abbrevs will be forced to either upper or lower |
| 2207 | case. Legal values are @code{nil}, @code{t}, and @code{down}. | 2207 | case. Valid values are @code{nil}, @code{t}, and @code{down}. |
| 2208 | @end defopt | 2208 | @end defopt |
| 2209 | 2209 | ||
| 2210 | @defopt idlwave-reserved-word-upcase (@code{nil}) | 2210 | @defopt idlwave-reserved-word-upcase (@code{nil}) |
| @@ -2829,7 +2829,7 @@ provides faster access (@pxref{Electric Debug Mode}). | |||
| 2829 | 2829 | ||
| 2830 | @defopt idlwave-shell-mark-breakpoints (@code{t}) | 2830 | @defopt idlwave-shell-mark-breakpoints (@code{t}) |
| 2831 | Non-@code{nil} means mark breakpoints in the source file buffers. The | 2831 | Non-@code{nil} means mark breakpoints in the source file buffers. The |
| 2832 | value indicates the preferred method. Legal values are @code{nil}, | 2832 | value indicates the preferred method. Valid values are @code{nil}, |
| 2833 | @code{t}, @code{face}, and @code{glyph}. | 2833 | @code{t}, @code{face}, and @code{glyph}. |
| 2834 | @end defopt | 2834 | @end defopt |
| 2835 | 2835 | ||
| @@ -2866,7 +2866,7 @@ been set (or you give two prefix arguments), the last command on the | |||
| 2866 | 2866 | ||
| 2867 | @defopt idlwave-shell-mark-stop-line (@code{t}) | 2867 | @defopt idlwave-shell-mark-stop-line (@code{t}) |
| 2868 | Non-@code{nil} means mark the source code line where IDL is currently | 2868 | Non-@code{nil} means mark the source code line where IDL is currently |
| 2869 | stopped. The value specifies the preferred method. Legal values are | 2869 | stopped. The value specifies the preferred method. Valid values are |
| 2870 | @code{nil}, @code{t}, @code{arrow}, and @code{face}. | 2870 | @code{nil}, @code{t}, @code{arrow}, and @code{face}. |
| 2871 | @end defopt | 2871 | @end defopt |
| 2872 | 2872 | ||
diff --git a/man/reftex.texi b/man/reftex.texi index c633540b28b..0d3c5bdc32e 100644 --- a/man/reftex.texi +++ b/man/reftex.texi | |||
| @@ -737,7 +737,7 @@ the context of the label definition and constructs a label from | |||
| 737 | that@footnote{Note that the context may contain constructs which are | 737 | that@footnote{Note that the context may contain constructs which are |
| 738 | invalid in labels. @b{Ref@TeX{}} will therefore strip the accent from | 738 | invalid in labels. @b{Ref@TeX{}} will therefore strip the accent from |
| 739 | accented Latin-1 characters and remove everything else which is not | 739 | accented Latin-1 characters and remove everything else which is not |
| 740 | legal in labels. This mechanism is safe, but may not be satisfactory | 740 | valid in labels. This mechanism is safe, but may not be satisfactory |
| 741 | for non-western languages. Check the following variables if you need to | 741 | for non-western languages. Check the following variables if you need to |
| 742 | change things: @code{reftex-translate-to-ascii-function}, | 742 | change things: @code{reftex-translate-to-ascii-function}, |
| 743 | @code{reftex-derive-label-parameters}, @code{reftex-label-illegal-re}, | 743 | @code{reftex-derive-label-parameters}, @code{reftex-label-illegal-re}, |
| @@ -2833,7 +2833,7 @@ to be changed for other languages. See the variables | |||
| 2833 | @vindex reftex-translate-to-ascii-function | 2833 | @vindex reftex-translate-to-ascii-function |
| 2834 | @vindex reftex-label-illegal-re | 2834 | @vindex reftex-label-illegal-re |
| 2835 | Also, when a label is derived from context, @b{Ref@TeX{}} clears the | 2835 | Also, when a label is derived from context, @b{Ref@TeX{}} clears the |
| 2836 | context string from non-ASCII characters in order to make a legal label. | 2836 | context string from non-ASCII characters in order to make a valid label. |
| 2837 | If there should ever be a version of @TeX{} which allows extended | 2837 | If there should ever be a version of @TeX{} which allows extended |
| 2838 | characters @emph{in labels}, then we will have to look at the | 2838 | characters @emph{in labels}, then we will have to look at the |
| 2839 | variables @code{reftex-translate-to-ascii-function} and | 2839 | variables @code{reftex-translate-to-ascii-function} and |
| @@ -4120,7 +4120,7 @@ Flags governing label insertion. The value has the form | |||
| 4120 | 4120 | ||
| 4121 | If @var{derive}is @code{t}, @b{Ref@TeX{}} will try to derive a sensible | 4121 | If @var{derive}is @code{t}, @b{Ref@TeX{}} will try to derive a sensible |
| 4122 | label from context. A section label for example will be derived from | 4122 | label from context. A section label for example will be derived from |
| 4123 | the section heading. The conversion of the context to a legal label is | 4123 | the section heading. The conversion of the context to a valid label is |
| 4124 | governed by the specifications given in | 4124 | governed by the specifications given in |
| 4125 | @code{reftex-derive-label-parameters}. If @var{derive} is @code{nil}, | 4125 | @code{reftex-derive-label-parameters}. If @var{derive} is @code{nil}, |
| 4126 | the default label will consist of the prefix and a unique number, like | 4126 | the default label will consist of the prefix and a unique number, like |
| @@ -4166,7 +4166,7 @@ buffer. | |||
| 4166 | @end deffn | 4166 | @end deffn |
| 4167 | 4167 | ||
| 4168 | @deffn Hook reftex-string-to-label-function | 4168 | @deffn Hook reftex-string-to-label-function |
| 4169 | Function to turn an arbitrary string into a legal label. | 4169 | Function to turn an arbitrary string into a valid label. |
| 4170 | @b{Ref@TeX{}}'s default function uses the variable | 4170 | @b{Ref@TeX{}}'s default function uses the variable |
| 4171 | @code{reftex-derive-label-parameters}. | 4171 | @code{reftex-derive-label-parameters}. |
| 4172 | @end deffn | 4172 | @end deffn |
| @@ -4174,7 +4174,7 @@ Function to turn an arbitrary string into a legal label. | |||
| 4174 | @deffn Hook reftex-translate-to-ascii-function | 4174 | @deffn Hook reftex-translate-to-ascii-function |
| 4175 | Filter function which will process a context string before it is used to | 4175 | Filter function which will process a context string before it is used to |
| 4176 | derive a label from it. The intended application is to convert ISO or | 4176 | derive a label from it. The intended application is to convert ISO or |
| 4177 | Mule characters into something legal in labels. The default function | 4177 | Mule characters into something valid in labels. The default function |
| 4178 | @code{reftex-latin1-to-ascii} removes the accents from Latin-1 | 4178 | @code{reftex-latin1-to-ascii} removes the accents from Latin-1 |
| 4179 | characters. X-Symbol (>=2.6) sets this variable to the much more | 4179 | characters. X-Symbol (>=2.6) sets this variable to the much more |
| 4180 | general @code{x-symbol-translate-to-ascii}. | 4180 | general @code{x-symbol-translate-to-ascii}. |
| @@ -4558,7 +4558,7 @@ indexing from the phrase buffer. | |||
| 4558 | 4558 | ||
| 4559 | The final entry may also be a symbol. It must have an association in | 4559 | The final entry may also be a symbol. It must have an association in |
| 4560 | the variable @code{reftex-index-macros-builtin} to specify the main | 4560 | the variable @code{reftex-index-macros-builtin} to specify the main |
| 4561 | indexing package you are using. Legal values are currently | 4561 | indexing package you are using. Valid values are currently |
| 4562 | @example | 4562 | @example |
| 4563 | default @r{The LaTeX default - unnecessary to specify this one} | 4563 | default @r{The LaTeX default - unnecessary to specify this one} |
| 4564 | multind @r{The multind.sty package} | 4564 | multind @r{The multind.sty package} |
| @@ -4590,7 +4590,7 @@ Default index tag. When working with multiple indexes, RefTeX queries | |||
| 4590 | for an index tag when creating index entries or displaying a specific | 4590 | for an index tag when creating index entries or displaying a specific |
| 4591 | index. This variable controls the default offered for these queries. | 4591 | index. This variable controls the default offered for these queries. |
| 4592 | The default can be selected with @key{RET} during selection or | 4592 | The default can be selected with @key{RET} during selection or |
| 4593 | completion. Legal values of this variable are: | 4593 | completion. Valid values of this variable are: |
| 4594 | @example | 4594 | @example |
| 4595 | nil @r{Do not provide a default index} | 4595 | nil @r{Do not provide a default index} |
| 4596 | "tag" @r{The default index tag given as a string, e.g. "idx"} | 4596 | "tag" @r{The default index tag given as a string, e.g. "idx"} |
| @@ -4830,9 +4830,9 @@ This is a list of items, each item is like: | |||
| 4830 | @example | 4830 | @example |
| 4831 | @var{type}: @r{File type like @code{"bib"} or @code{"tex"}.} | 4831 | @var{type}: @r{File type like @code{"bib"} or @code{"tex"}.} |
| 4832 | @var{def-ext}: @r{The default extension for that file type, like @code{".tex"} or @code{".bib"}.} | 4832 | @var{def-ext}: @r{The default extension for that file type, like @code{".tex"} or @code{".bib"}.} |
| 4833 | @var{other-ext}: @r{Any number of other legal extensions for this file type.} | 4833 | @var{other-ext}: @r{Any number of other valid extensions for this file type.} |
| 4834 | @end example | 4834 | @end example |
| 4835 | When a files is searched and it does not have any of the legal extensions, | 4835 | When a files is searched and it does not have any of the valid extensions, |
| 4836 | we try the default extension first, and then the naked file name. | 4836 | we try the default extension first, and then the naked file name. |
| 4837 | @end defopt | 4837 | @end defopt |
| 4838 | 4838 | ||
| @@ -5457,7 +5457,7 @@ lowercase labels (default @code{t}). | |||
| 5457 | All @file{.rel} files have a final newline to avoid queries. | 5457 | All @file{.rel} files have a final newline to avoid queries. |
| 5458 | @item | 5458 | @item |
| 5459 | Single byte representations of accented European letters (ISO-8859-1) | 5459 | Single byte representations of accented European letters (ISO-8859-1) |
| 5460 | are now legal in labels. | 5460 | are now valid in labels. |
| 5461 | @end itemize | 5461 | @end itemize |
| 5462 | 5462 | ||
| 5463 | @noindent @b{Version 3.33} | 5463 | @noindent @b{Version 3.33} |