diff options
| author | Glenn Morris | 2020-02-23 07:50:28 -0800 |
|---|---|---|
| committer | Glenn Morris | 2020-02-23 07:50:28 -0800 |
| commit | 3f01a17d68644cc3d802e1565e6f2a3b89d9279a (patch) | |
| tree | 5e1a60be7a5b935af4f04ffd4d6dba866b4cf34d /doc | |
| parent | b6be1ce644a07b6dc30eaa24dec082effd7add40 (diff) | |
| parent | dd5756436c580cc0d00ee875d6645861daf5a867 (diff) | |
| download | emacs-3f01a17d68644cc3d802e1565e6f2a3b89d9279a.tar.gz emacs-3f01a17d68644cc3d802e1565e6f2a3b89d9279a.zip | |
Merge from origin/emacs-27
dd5756436c Move more logic to vc-ignore from vc-default-ignore
2aed279be1 Warn about the likes of "[:alnum:]" in regexps
0273f261a7 Don't write absolute filenames and duplicate strings to CV...
d7c22338d2 Fix cursor-sensor--detect when current buf != selected win...
2e39fc83bb * doc/emacs/sending.texi (Mail Sending): Fix index entries.
b410f902d5 Document 'message-send-mail-function' in the Emacs manual
ac0546612d Fix reference to 'message-send-and-exit' in Emacs manual
cd6a9b8f65 Skip shell prompt on current line in Eshell even if it's p...
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/sending.texi | 11 | ||||
| -rw-r--r-- | doc/lispref/searching.texi | 9 |
2 files changed, 14 insertions, 6 deletions
diff --git a/doc/emacs/sending.texi b/doc/emacs/sending.texi index 283a59a2912..190549a194e 100644 --- a/doc/emacs/sending.texi +++ b/doc/emacs/sending.texi | |||
| @@ -338,14 +338,14 @@ Send the message, and leave the mail buffer selected (@code{message-send}). | |||
| 338 | @kindex C-c C-s @r{(Message mode)} | 338 | @kindex C-c C-s @r{(Message mode)} |
| 339 | @kindex C-c C-c @r{(Message mode)} | 339 | @kindex C-c C-c @r{(Message mode)} |
| 340 | @findex message-send | 340 | @findex message-send |
| 341 | @findex message-send-and-exit | ||
| 341 | @vindex message-kill-buffer-on-exit | 342 | @vindex message-kill-buffer-on-exit |
| 342 | The usual command to send a message is @kbd{C-c C-c} | 343 | The usual command to send a message is @kbd{C-c C-c} |
| 343 | (@code{mail-send-and-exit}). This sends the message and then | 344 | (@code{message-send-and-exit}). This sends the message and then |
| 344 | buries the mail buffer, putting it at the lowest priority for | 345 | buries the mail buffer, putting it at the lowest priority for |
| 345 | reselection. If you want it to kill the mail buffer instead, change | 346 | reselection. If you want it to kill the mail buffer instead, change |
| 346 | the variable @code{message-kill-buffer-on-exit} to @code{t}. | 347 | the variable @code{message-kill-buffer-on-exit} to @code{t}. |
| 347 | 348 | ||
| 348 | @findex message-send-and-exit | ||
| 349 | The command @kbd{C-c C-s} (@code{message-send}) sends the message | 349 | The command @kbd{C-c C-s} (@code{message-send}) sends the message |
| 350 | and leaves the buffer selected. Use this command if you want to | 350 | and leaves the buffer selected. Use this command if you want to |
| 351 | modify the message (perhaps with new recipients) and send it again. | 351 | modify the message (perhaps with new recipients) and send it again. |
| @@ -361,9 +361,12 @@ twice). | |||
| 361 | @cindex Feedmail | 361 | @cindex Feedmail |
| 362 | @cindex Sendmail | 362 | @cindex Sendmail |
| 363 | @cindex Mailclient | 363 | @cindex Mailclient |
| 364 | @vindex message-send-mail-function | ||
| 364 | @vindex send-mail-function | 365 | @vindex send-mail-function |
| 365 | The variable @code{send-mail-function} controls how the message is | 366 | The variable @code{message-send-mail-function} controls how the |
| 366 | delivered. Its value should be one of the following functions: | 367 | message is delivered (@code{send-mail-function} is used for Mail mode). |
| 368 | The value of @code{send-mail-function} should be one of the following | ||
| 369 | functions: | ||
| 367 | 370 | ||
| 368 | @table @code | 371 | @table @code |
| 369 | @item sendmail-query-once | 372 | @item sendmail-query-once |
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 1f6db0643e8..a4d5a27203f 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi | |||
| @@ -582,8 +582,13 @@ an unquoted @samp{[} is special again and a @samp{]} not. | |||
| 582 | @cindex alpha character class, regexp | 582 | @cindex alpha character class, regexp |
| 583 | @cindex xdigit character class, regexp | 583 | @cindex xdigit character class, regexp |
| 584 | 584 | ||
| 585 | Here is a table of the classes you can use in a character alternative, | 585 | Below is a table of the classes you can use in a character |
| 586 | and what they mean: | 586 | alternative, and what they mean. Note that the @samp{[} and @samp{]} |
| 587 | characters that enclose the class name are part of the name, so a | ||
| 588 | regular expression using these classes needs one more pair of | ||
| 589 | brackets. For example, a regular expression matching a sequence of | ||
| 590 | one or more letters and digits would be @samp{[[:alnum:]]+}, not | ||
| 591 | @samp{[:alnum:]+}. | ||
| 587 | 592 | ||
| 588 | @table @samp | 593 | @table @samp |
| 589 | @item [:ascii:] | 594 | @item [:ascii:] |