diff options
Diffstat (limited to 'man')
| -rw-r--r-- | man/ChangeLog | 26 | ||||
| -rw-r--r-- | man/basic.texi | 4 | ||||
| -rw-r--r-- | man/calc.texi | 60 | ||||
| -rw-r--r-- | man/gnus.texi | 18 |
4 files changed, 89 insertions, 19 deletions
diff --git a/man/ChangeLog b/man/ChangeLog index 2395e82fdbb..7438fbad338 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,29 @@ | |||
| 1 | 2007-08-17 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * basic.texi (Position Info): Add index entry for face at point. | ||
| 4 | Mention that character faces are also displayed by "C-u C-x =". | ||
| 5 | |||
| 6 | 2007-08-17 Jay Belanger <jay.p.belanger@gmail.com> | ||
| 7 | |||
| 8 | * calc.texi: Move contents to beginning of file. | ||
| 9 | (Algebraic Entry): Fix the formatting of an example. | ||
| 10 | |||
| 11 | 2007-08-15 Jay Belanger <jay.p.belanger@gmail.com> | ||
| 12 | |||
| 13 | * calc.texi (Basic Operations on Units): Mention exact versus | ||
| 14 | inexact conversions. | ||
| 15 | |||
| 16 | 2007-08-14 Jay Belanger <jay.p.belanger@gmail.com> | ||
| 17 | |||
| 18 | * calc.texi (Basic Operations on Units): Mention default | ||
| 19 | values for new units. | ||
| 20 | (Quick Calculator Mode): Mention that binary format will | ||
| 21 | be displayed. | ||
| 22 | |||
| 23 | 2007-08-14 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 24 | |||
| 25 | * gnus.texi (Selecting a Group): Mention gnus-maximum-newsgroup. | ||
| 26 | |||
| 1 | 2007-08-10 Katsumi Yamaoka <yamaoka@jpl.org> | 27 | 2007-08-10 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 28 | ||
| 3 | * gnus.texi (NNTP): Mention nntp-xref-number-is-evil. | 29 | * gnus.texi (NNTP): Mention nntp-xref-number-is-evil. |
diff --git a/man/basic.texi b/man/basic.texi index 6d19281b089..333985e4a4a 100644 --- a/man/basic.texi +++ b/man/basic.texi | |||
| @@ -596,6 +596,7 @@ point=36169 of 36168 (EOB) column=0 | |||
| 596 | @cindex character set of character at point | 596 | @cindex character set of character at point |
| 597 | @cindex font of character at point | 597 | @cindex font of character at point |
| 598 | @cindex text properties at point | 598 | @cindex text properties at point |
| 599 | @cindex face at point | ||
| 599 | @w{@kbd{C-u C-x =}} displays the following additional information about a | 600 | @w{@kbd{C-u C-x =}} displays the following additional information about a |
| 600 | character. | 601 | character. |
| 601 | 602 | ||
| @@ -623,7 +624,8 @@ terminal, the code(s) sent to the terminal. | |||
| 623 | 624 | ||
| 624 | @item | 625 | @item |
| 625 | The character's text properties (@pxref{Text Properties,,, | 626 | The character's text properties (@pxref{Text Properties,,, |
| 626 | elisp, the Emacs Lisp Reference Manual}), and any overlays containing it | 627 | elisp, the Emacs Lisp Reference Manual}), including any non-default |
| 628 | faces used to display the character, and any overlays containing it | ||
| 627 | (@pxref{Overlays,,, elisp, the same manual}). | 629 | (@pxref{Overlays,,, elisp, the same manual}). |
| 628 | @end itemize | 630 | @end itemize |
| 629 | 631 | ||
diff --git a/man/calc.texi b/man/calc.texi index e13dd9097d6..685f945789f 100644 --- a/man/calc.texi +++ b/man/calc.texi | |||
| @@ -123,6 +123,13 @@ Copyright @copyright{} 1990, 1991, 2001, 2002, 2003, 2004, | |||
| 123 | @insertcopying | 123 | @insertcopying |
| 124 | @end titlepage | 124 | @end titlepage |
| 125 | 125 | ||
| 126 | |||
| 127 | @summarycontents | ||
| 128 | |||
| 129 | @c [end] | ||
| 130 | |||
| 131 | @contents | ||
| 132 | |||
| 126 | @c [begin] | 133 | @c [begin] |
| 127 | @ifnottex | 134 | @ifnottex |
| 128 | @node Top, Getting Started, (dir), (dir) | 135 | @node Top, Getting Started, (dir), (dir) |
| @@ -10013,11 +10020,18 @@ During numeric entry, the only editing key available is @key{DEL}. | |||
| 10013 | @cindex Algebraic notation | 10020 | @cindex Algebraic notation |
| 10014 | @cindex Formulas, entering | 10021 | @cindex Formulas, entering |
| 10015 | Calculations can also be entered in algebraic form. This is accomplished | 10022 | Calculations can also be entered in algebraic form. This is accomplished |
| 10016 | by typing the apostrophe key, @kbd{'}, followed by the expression in | 10023 | by typing the apostrophe key, ', followed by the expression in |
| 10017 | standard format: @kbd{@key{'} 2+3*4 @key{RET}} computes | 10024 | standard format: |
| 10025 | |||
| 10026 | @example | ||
| 10027 | ' 2+3*4 @key{RET}. | ||
| 10028 | @end example | ||
| 10029 | |||
| 10030 | @noindent | ||
| 10031 | This will compute | ||
| 10018 | @texline @math{2+(3\times4) = 14} | 10032 | @texline @math{2+(3\times4) = 14} |
| 10019 | @infoline @expr{2+(3*4) = 14} | 10033 | @infoline @expr{2+(3*4) = 14} |
| 10020 | and pushes that on the stack. If you wish you can | 10034 | and push it on the stack. If you wish you can |
| 10021 | ignore the RPN aspect of Calc altogether and simply enter algebraic | 10035 | ignore the RPN aspect of Calc altogether and simply enter algebraic |
| 10022 | expressions in this way. You may want to use @key{DEL} every so often to | 10036 | expressions in this way. You may want to use @key{DEL} every so often to |
| 10023 | clear previous results off the stack. | 10037 | clear previous results off the stack. |
| @@ -10166,8 +10180,8 @@ then the result of the evaluation is stored in that Calc variable. | |||
| 10166 | @xref{Store and Recall}. | 10180 | @xref{Store and Recall}. |
| 10167 | 10181 | ||
| 10168 | If the result is an integer and the current display radix is decimal, | 10182 | If the result is an integer and the current display radix is decimal, |
| 10169 | the number will also be displayed in hex and octal formats. If the | 10183 | the number will also be displayed in hex, octal and binary formats. If |
| 10170 | integer is in the range from 1 to 126, it will also be displayed as | 10184 | the integer is in the range from 1 to 126, it will also be displayed as |
| 10171 | an ASCII character. | 10185 | an ASCII character. |
| 10172 | 10186 | ||
| 10173 | For example, the quoted character @samp{"x"} produces the vector | 10187 | For example, the quoted character @samp{"x"} produces the vector |
| @@ -27436,14 +27450,29 @@ of angle are evaluated, regardless of the current angular mode. | |||
| 27436 | The @kbd{u c} (@code{calc-convert-units}) command converts a units | 27450 | The @kbd{u c} (@code{calc-convert-units}) command converts a units |
| 27437 | expression to new, compatible units. For example, given the units | 27451 | expression to new, compatible units. For example, given the units |
| 27438 | expression @samp{55 mph}, typing @kbd{u c m/s @key{RET}} produces | 27452 | expression @samp{55 mph}, typing @kbd{u c m/s @key{RET}} produces |
| 27439 | @samp{24.5872 m/s}. If the units you request are inconsistent with | 27453 | @samp{24.5872 m/s}. If you have previously converted a units expression |
| 27440 | the original units, the number will be converted into your units | 27454 | with the same type of units (in this case, distance over time), you will |
| 27441 | times whatever ``remainder'' units are left over. For example, | 27455 | be offered the previous choice of new units as a default. Continuing |
| 27442 | converting @samp{55 mph} into acres produces @samp{6.08e-3 acre / m s}. | 27456 | the above example, entering the units expression @samp{100 km/hr} and |
| 27443 | (Recall that multiplication binds more strongly than division in Calc | 27457 | typing @kbd{u c @key{RET}} (without specifying new units) produces |
| 27444 | formulas, so the units here are acres per meter-second.) Remainder | 27458 | @samp{27.7777777778 m/s}. |
| 27445 | units are expressed in terms of ``fundamental'' units like @samp{m} and | 27459 | |
| 27446 | @samp{s}, regardless of the input units. | 27460 | While many of Calc's conversion factors are exact, some are necessarily |
| 27461 | approximate. If Calc is in fraction mode (@pxref{Fraction Mode}), then | ||
| 27462 | unit conversions will try to give exact, rational conversions, but it | ||
| 27463 | isn't always possible. Given @samp{55 mph} in fraction mode, typing | ||
| 27464 | @kbd{u c m/s @key{RET}} produces @samp{15367:625 m/s}, for example, | ||
| 27465 | while typing @kbd{u c au/yr @key{RET}} produces | ||
| 27466 | @samp{5.18665819999e-3 au/yr}. | ||
| 27467 | |||
| 27468 | If the units you request are inconsistent with the original units, the | ||
| 27469 | number will be converted into your units times whatever ``remainder'' | ||
| 27470 | units are left over. For example, converting @samp{55 mph} into acres | ||
| 27471 | produces @samp{6.08e-3 acre / m s}. (Recall that multiplication binds | ||
| 27472 | more strongly than division in Calc formulas, so the units here are | ||
| 27473 | acres per meter-second.) Remainder units are expressed in terms of | ||
| 27474 | ``fundamental'' units like @samp{m} and @samp{s}, regardless of the | ||
| 27475 | input units. | ||
| 27447 | 27476 | ||
| 27448 | One special exception is that if you specify a single unit name, and | 27477 | One special exception is that if you specify a single unit name, and |
| 27449 | a compatible unit appears somewhere in the units expression, then | 27478 | a compatible unit appears somewhere in the units expression, then |
| @@ -36149,11 +36178,6 @@ the corresponding full Lisp name is derived by adding a prefix of | |||
| 36149 | 36178 | ||
| 36150 | @printindex fn | 36179 | @printindex fn |
| 36151 | 36180 | ||
| 36152 | @summarycontents | ||
| 36153 | |||
| 36154 | @c [end] | ||
| 36155 | |||
| 36156 | @contents | ||
| 36157 | @bye | 36181 | @bye |
| 36158 | 36182 | ||
| 36159 | 36183 | ||
diff --git a/man/gnus.texi b/man/gnus.texi index 94144b65e3f..7cabf674102 100644 --- a/man/gnus.texi +++ b/man/gnus.texi | |||
| @@ -2153,6 +2153,24 @@ most recently will be fetched. | |||
| 2153 | @code{gnus-large-newsgroup}, but is only used for ephemeral | 2153 | @code{gnus-large-newsgroup}, but is only used for ephemeral |
| 2154 | newsgroups. | 2154 | newsgroups. |
| 2155 | 2155 | ||
| 2156 | @vindex gnus-maximum-newsgroup | ||
| 2157 | In groups in some news servers, there might be a big gap between a few | ||
| 2158 | very old articles that will never be expired and the recent ones. In | ||
| 2159 | such a case, the server will return the data like @code{(1 . 30000000)} | ||
| 2160 | for the @code{LIST ACTIVE group} command, for example. Even if there | ||
| 2161 | are actually only the articles 1-10 and 29999900-30000000, Gnus doesn't | ||
| 2162 | know it at first and prepares for getting 30000000 articles. However, | ||
| 2163 | it will consume hundreds megabytes of memories and might make Emacs get | ||
| 2164 | stuck as the case may be. If you use such news servers, set the | ||
| 2165 | variable @code{gnus-maximum-newsgroup} to a positive number. The value | ||
| 2166 | means that Gnus ignores articles other than this number of the latest | ||
| 2167 | ones in every group. For instance, the value 10000 makes Gnus get only | ||
| 2168 | the articles 29990001-30000000 (if the latest article number is 30000000 | ||
| 2169 | in a group). Note that setting this variable to a number might prevent | ||
| 2170 | you from reading very old articles. The default value of the variable | ||
| 2171 | @code{gnus-maximum-newsgroup} is @code{nil}, which means Gnus never | ||
| 2172 | ignores old articles. | ||
| 2173 | |||
| 2156 | @vindex gnus-select-group-hook | 2174 | @vindex gnus-select-group-hook |
| 2157 | @vindex gnus-auto-select-first | 2175 | @vindex gnus-auto-select-first |
| 2158 | @vindex gnus-auto-select-subject | 2176 | @vindex gnus-auto-select-subject |