diff options
| author | Richard M. Stallman | 2000-01-12 05:22:30 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2000-01-12 05:22:30 +0000 |
| commit | 080a57baf6265ea547e638bb99f5cdc39d1f1307 (patch) | |
| tree | e392c72a14061f361af3c252e8fd68338eabf362 | |
| parent | 83c8f4616a4a1ea7919351c34dd3d577fad1770f (diff) | |
| download | emacs-080a57baf6265ea547e638bb99f5cdc39d1f1307.tar.gz emacs-080a57baf6265ea547e638bb99f5cdc39d1f1307.zip | |
*** empty log message ***
| -rw-r--r-- | lispref/advice.texi | 4 | ||||
| -rw-r--r-- | lispref/anti.texi | 2 | ||||
| -rw-r--r-- | lispref/backups.texi | 2 | ||||
| -rw-r--r-- | lispref/buffers.texi | 17 | ||||
| -rw-r--r-- | lispref/commands.texi | 2 |
5 files changed, 19 insertions, 8 deletions
diff --git a/lispref/advice.texi b/lispref/advice.texi index a7bcdaf16dd..9fe5179e105 100644 --- a/lispref/advice.texi +++ b/lispref/advice.texi | |||
| @@ -426,12 +426,12 @@ redefined. | |||
| 426 | This variable controls whether to compile the combined definition | 426 | This variable controls whether to compile the combined definition |
| 427 | that results from activating advice for a function. | 427 | that results from activating advice for a function. |
| 428 | 428 | ||
| 429 | A value of @code{always} specifies to compile unconditionally | 429 | A value of @code{always} specifies to compile unconditionally. |
| 430 | A value of @code{nil} specifies never compile the advice. | 430 | A value of @code{nil} specifies never compile the advice. |
| 431 | 431 | ||
| 432 | A value of @code{maybe} specifies to compile if the byte-compiler is | 432 | A value of @code{maybe} specifies to compile if the byte-compiler is |
| 433 | already loaded. A value of @code{like-original} specifies to compile | 433 | already loaded. A value of @code{like-original} specifies to compile |
| 434 | the advice if the the original definition of the advised function is | 434 | the advice if the original definition of the advised function is |
| 435 | compiled or a built-in function. | 435 | compiled or a built-in function. |
| 436 | 436 | ||
| 437 | This variable takes effect only if the @var{compile} argument of | 437 | This variable takes effect only if the @var{compile} argument of |
diff --git a/lispref/anti.texi b/lispref/anti.texi index 0b8f4924216..b3174e22a0a 100644 --- a/lispref/anti.texi +++ b/lispref/anti.texi | |||
| @@ -81,7 +81,7 @@ the scroll bars. | |||
| 81 | 81 | ||
| 82 | @item | 82 | @item |
| 83 | For simplicity, all ASCII characters now have the same height and width. | 83 | For simplicity, all ASCII characters now have the same height and width. |
| 84 | (Certain characters, such as Chinese characters, always have have twice | 84 | (Certain characters, such as Chinese characters, always have twice |
| 85 | the standard width.) All characters are created equal. | 85 | the standard width.) All characters are created equal. |
| 86 | 86 | ||
| 87 | @item | 87 | @item |
diff --git a/lispref/backups.texi b/lispref/backups.texi index e148dc79077..d26d0dc4c90 100644 --- a/lispref/backups.texi +++ b/lispref/backups.texi | |||
| @@ -519,7 +519,7 @@ The value of this variable is the number of seconds of idle time that | |||
| 519 | should cause auto-saving. Each time the user pauses for this long, | 519 | should cause auto-saving. Each time the user pauses for this long, |
| 520 | Emacs does auto-saving for all buffers in which that is enabled. (If | 520 | Emacs does auto-saving for all buffers in which that is enabled. (If |
| 521 | the current buffer is large, the specified timeout is multiplied by a | 521 | the current buffer is large, the specified timeout is multiplied by a |
| 522 | factor that depends increases as the size increases; for a million-byte | 522 | factor that increases as the size increases; for a million-byte |
| 523 | buffer, the factor is almost 4.) | 523 | buffer, the factor is almost 4.) |
| 524 | 524 | ||
| 525 | If the value is zero or nil, then auto-saving is not done as a result | 525 | If the value is zero or nil, then auto-saving is not done as a result |
diff --git a/lispref/buffers.texi b/lispref/buffers.texi index e97d4431992..b82c0df1296 100644 --- a/lispref/buffers.texi +++ b/lispref/buffers.texi | |||
| @@ -335,9 +335,20 @@ produces a name not currently in use for any buffer by appending a | |||
| 335 | number inside of @samp{<@dots{}>}. | 335 | number inside of @samp{<@dots{}>}. |
| 336 | 336 | ||
| 337 | If the optional second argument @var{ignore} is non-@code{nil}, it | 337 | If the optional second argument @var{ignore} is non-@code{nil}, it |
| 338 | should be buffer name in the sequence to be tried. That name will be | 338 | should be a string; it makes a difference if it is a name in the |
| 339 | considered acceptable, if it is tried, even if a buffer with that name | 339 | sequence of names to be tried. That name will be considered acceptable, |
| 340 | exists. | 340 | if it is tried, even if a buffer with that name exists. Thus, if |
| 341 | buffers named @samp{foo}, @samp{foo<2>}, @samp{foo<3>} and @samp{foo<4>} | ||
| 342 | exist, | ||
| 343 | |||
| 344 | @example | ||
| 345 | (generate-new-buffer-name "foo") | ||
| 346 | @result{} "foo<5>" | ||
| 347 | (generate-new-buffer-name "foo" "foo<3>") | ||
| 348 | @result{} "foo<3>" | ||
| 349 | (generate-new-buffer-name "foo" "foo<6>") | ||
| 350 | @result{} "foo<5>" | ||
| 351 | @end example | ||
| 341 | 352 | ||
| 342 | See the related function @code{generate-new-buffer} in @ref{Creating | 353 | See the related function @code{generate-new-buffer} in @ref{Creating |
| 343 | Buffers}. | 354 | Buffers}. |
diff --git a/lispref/commands.texi b/lispref/commands.texi index dd5f17c00cf..1d3c4f022c5 100644 --- a/lispref/commands.texi +++ b/lispref/commands.texi | |||
| @@ -1869,7 +1869,7 @@ same symbol that would normally represent that combination of mouse | |||
| 1869 | button and modifier keys. The information about the window part is kept | 1869 | button and modifier keys. The information about the window part is kept |
| 1870 | elsewhere in the event---in the coordinates. But | 1870 | elsewhere in the event---in the coordinates. But |
| 1871 | @code{read-key-sequence} translates this information into imaginary | 1871 | @code{read-key-sequence} translates this information into imaginary |
| 1872 | ``prefix keys'', all of which are symbols: @code{heder-line}, | 1872 | ``prefix keys'', all of which are symbols: @code{header-line}, |
| 1873 | @code{horizontal-scroll-bar}, @code{menu-bar}, @code{mode-line}, | 1873 | @code{horizontal-scroll-bar}, @code{menu-bar}, @code{mode-line}, |
| 1874 | @code{vertical-line}, and @code{vertical-scroll-bar}. You can define | 1874 | @code{vertical-line}, and @code{vertical-scroll-bar}. You can define |
| 1875 | meanings for mouse clicks in special window parts by defining key | 1875 | meanings for mouse clicks in special window parts by defining key |