diff options
| author | Romain Francoise | 2006-02-08 21:58:41 +0000 |
|---|---|---|
| committer | Romain Francoise | 2006-02-08 21:58:41 +0000 |
| commit | 5f7b8867a3290c4116dbac15bdf2a9e3ddbd89a4 (patch) | |
| tree | d6677c9212cc0ecfd1a3d5921cab7418c53718e0 | |
| parent | 745cfc57058bf80726961f8e4775b290e308bf7c (diff) | |
| download | emacs-5f7b8867a3290c4116dbac15bdf2a9e3ddbd89a4.tar.gz emacs-5f7b8867a3290c4116dbac15bdf2a9e3ddbd89a4.zip | |
(Top): Remove paragraph about the FAQ being a
transitional document, etc.
(Searching for/replacing newlines): New node.
(Yanking text in isearch): New node.
(Inserting text at the beginning of each line): Rename and make
more general, mention `M-;' in Message mode.
| -rw-r--r-- | man/ChangeLog | 9 | ||||
| -rw-r--r-- | man/faq.texi | 53 |
2 files changed, 43 insertions, 19 deletions
diff --git a/man/ChangeLog b/man/ChangeLog index edd9592722c..4f93bc48498 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2006-02-08 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * faq.texi (Top): Remove paragraph about the FAQ being a | ||
| 4 | transitional document, etc. | ||
| 5 | (Searching for/replacing newlines): New node. | ||
| 6 | (Yanking text in isearch): New node. | ||
| 7 | (Inserting text at the beginning of each line): Rename and make | ||
| 8 | more general, mention `M-;' in Message mode. | ||
| 9 | |||
| 1 | 2006-02-07 Luc Teirlinck <teirllm@auburn.edu> | 10 | 2006-02-07 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 11 | ||
| 3 | * mule.texi (International): | 12 | * mule.texi (International): |
diff --git a/man/faq.texi b/man/faq.texi index 77955d9c1ce..734212758d5 100644 --- a/man/faq.texi +++ b/man/faq.texi | |||
| @@ -59,12 +59,9 @@ distribution.] | |||
| 59 | 59 | ||
| 60 | This is the GNU Emacs FAQ, last updated on @today{}. | 60 | This is the GNU Emacs FAQ, last updated on @today{}. |
| 61 | 61 | ||
| 62 | The FAQ is maintained as a Texinfo document, allowing us to create HTML, | 62 | This FAQ is maintained as a part of GNU Emacs. If you find any errors, |
| 63 | Info, and TeX documents from a single source file, and is slowly but | 63 | or have any suggestions, please use @kbd{M-x report-emacs-bug} to report |
| 64 | surely being improved. Please bear with us as we improve on this | 64 | them. |
| 65 | format. This FAQ is maintained as a part of GNU Emacs. If you find | ||
| 66 | any errors, or have any suggestions, please use @kbd{M-x report-emacs-bug} | ||
| 67 | to report them. | ||
| 68 | 65 | ||
| 69 | @menu | 66 | @menu |
| 70 | * FAQ notation:: | 67 | * FAQ notation:: |
| @@ -1177,6 +1174,8 @@ In addition, Emacs 22 now includes the Emacs Lisp Reference Manual | |||
| 1177 | * Highlighting a region:: | 1174 | * Highlighting a region:: |
| 1178 | * Controlling case sensitivity:: | 1175 | * Controlling case sensitivity:: |
| 1179 | * Wrapping words automatically:: | 1176 | * Wrapping words automatically:: |
| 1177 | * Searching for/replacing newlines:: | ||
| 1178 | * Yanking text in isearch:: | ||
| 1180 | * Spell-checkers:: | 1179 | * Spell-checkers:: |
| 1181 | * Checking TeX and *roff documents:: | 1180 | * Checking TeX and *roff documents:: |
| 1182 | * Changing load-path:: | 1181 | * Changing load-path:: |
| @@ -1195,7 +1194,7 @@ In addition, Emacs 22 now includes the Emacs Lisp Reference Manual | |||
| 1195 | * Valid X resources:: | 1194 | * Valid X resources:: |
| 1196 | * Evaluating Emacs Lisp code:: | 1195 | * Evaluating Emacs Lisp code:: |
| 1197 | * Changing the length of a Tab:: | 1196 | * Changing the length of a Tab:: |
| 1198 | * Inserting > at the beginning of each line:: | 1197 | * Inserting text at the beginning of each line:: |
| 1199 | * Underlining paragraphs:: | 1198 | * Underlining paragraphs:: |
| 1200 | * Repeating a command as many times as possible:: | 1199 | * Repeating a command as many times as possible:: |
| 1201 | * Forcing the cursor to remain in the same column:: | 1200 | * Forcing the cursor to remain in the same column:: |
| @@ -1534,7 +1533,7 @@ including | |||
| 1534 | in your @file{.emacs} file. (Also see @ref{Turning on syntax | 1533 | in your @file{.emacs} file. (Also see @ref{Turning on syntax |
| 1535 | highlighting}.) | 1534 | highlighting}.) |
| 1536 | 1535 | ||
| 1537 | @node Controlling case sensitivity, Wrapping words automatically, Highlighting a region, Common requests | 1536 | @node Controlling case sensitivity, Searching for/replacing newlines, Highlighting a region, Common requests |
| 1538 | @section How do I control Emacs's case-sensitivity when searching/replacing? | 1537 | @section How do I control Emacs's case-sensitivity when searching/replacing? |
| 1539 | @cindex @code{case-fold-search} | 1538 | @cindex @code{case-fold-search} |
| 1540 | @cindex Case sensitivity of searches | 1539 | @cindex Case sensitivity of searches |
| @@ -1566,7 +1565,23 @@ mode's hook. For example: | |||
| 1566 | (setq case-fold-search nil))) | 1565 | (setq case-fold-search nil))) |
| 1567 | @end lisp | 1566 | @end lisp |
| 1568 | 1567 | ||
| 1569 | @node Wrapping words automatically, Spell-checkers, Controlling case sensitivity, Common requests | 1568 | @node Searching for/replacing newlines, Yanking text in isearch, Controlling case sensitivity, Common requests |
| 1569 | @section How do I input a newline character in isearch or query-replace? | ||
| 1570 | @cindex Searching for newlines | ||
| 1571 | @cindex Replacing newlines | ||
| 1572 | |||
| 1573 | Use @kbd{C-q C-j}. For more information, see @inforef{Special Isearch, | ||
| 1574 | Special Input for Incremental Search, emacs}. | ||
| 1575 | |||
| 1576 | |||
| 1577 | @node Yanking text in isearch, Wrapping words automatically, Searching for/replacing newlines, Common requests | ||
| 1578 | @section How do I copy text from the kill ring into the search string? | ||
| 1579 | @cindex Yanking text into the search string | ||
| 1580 | @cindex isearch yanking | ||
| 1581 | |||
| 1582 | Use @kbd{M-y}. @inforef{Isearch Yank, Isearch Yanking, emacs}. | ||
| 1583 | |||
| 1584 | @node Wrapping words automatically, Spell-checkers, Yanking text in isearch, Common requests | ||
| 1570 | @section How do I make Emacs wrap words for me? | 1585 | @section How do I make Emacs wrap words for me? |
| 1571 | @cindex Wrapping word automatically | 1586 | @cindex Wrapping word automatically |
| 1572 | @cindex Wrapping lines | 1587 | @cindex Wrapping lines |
| @@ -2102,7 +2117,7 @@ about them. | |||
| 2102 | 2117 | ||
| 2103 | @end itemize | 2118 | @end itemize |
| 2104 | 2119 | ||
| 2105 | @node Changing the length of a Tab, Inserting > at the beginning of each line, Evaluating Emacs Lisp code, Common requests | 2120 | @node Changing the length of a Tab, Inserting text at the beginning of each line, Evaluating Emacs Lisp code, Common requests |
| 2106 | @section How do I change Emacs's idea of the @key{TAB} character's length? | 2121 | @section How do I change Emacs's idea of the @key{TAB} character's length? |
| 2107 | @cindex Tab length | 2122 | @cindex Tab length |
| 2108 | @cindex Length of tab character | 2123 | @cindex Length of tab character |
| @@ -2121,8 +2136,9 @@ Do not confuse variable @code{tab-width} with variable | |||
| 2121 | @key{TAB} characters. The latter controls what characters are inserted | 2136 | @key{TAB} characters. The latter controls what characters are inserted |
| 2122 | when you press the @key{TAB} character in certain modes. | 2137 | when you press the @key{TAB} character in certain modes. |
| 2123 | 2138 | ||
| 2124 | @node Inserting > at the beginning of each line, Underlining paragraphs, Changing the length of a Tab, Common requests | 2139 | @node Inserting text at the beginning of each line, Underlining paragraphs, Changing the length of a Tab, Common requests |
| 2125 | @section How do I insert @samp{>} at the beginning of every line? | 2140 | @section How do I insert <some text> at the beginning of every line? |
| 2141 | @cindex Prefixing a region with some text | ||
| 2126 | @cindex Prefix character, inserting in mail/news replies | 2142 | @cindex Prefix character, inserting in mail/news replies |
| 2127 | @cindex Replies to mail/news, inserting a prefix character | 2143 | @cindex Replies to mail/news, inserting a prefix character |
| 2128 | @cindex @code{mail-yank-prefix} | 2144 | @cindex @code{mail-yank-prefix} |
| @@ -2130,7 +2146,7 @@ when you press the @key{TAB} character in certain modes. | |||
| 2130 | @cindex News replies, inserting a prefix character | 2146 | @cindex News replies, inserting a prefix character |
| 2131 | 2147 | ||
| 2132 | To do this to an entire buffer, type @kbd{M-< M-x replace-regexp | 2148 | To do this to an entire buffer, type @kbd{M-< M-x replace-regexp |
| 2133 | @key{RET} ^ @key{RET} > @key{RET}}. | 2149 | @key{RET} ^ @key{RET} your text @key{RET}}. |
| 2134 | 2150 | ||
| 2135 | To do this to a region, use @code{string-insert-rectangle}. | 2151 | To do this to a region, use @code{string-insert-rectangle}. |
| 2136 | Set the mark (@kbd{C-@key{SPC}}) at the beginning of the first line you | 2152 | Set the mark (@kbd{C-@key{SPC}}) at the beginning of the first line you |
| @@ -2139,13 +2155,12 @@ want to prefix, move the cursor to last line to be prefixed, and type | |||
| 2139 | buffer, type @kbd{C-x h M-x string-insert-rectangle @key{RET}}. | 2155 | buffer, type @kbd{C-x h M-x string-insert-rectangle @key{RET}}. |
| 2140 | 2156 | ||
| 2141 | If you are trying to prefix a yanked mail message with @samp{>}, you | 2157 | If you are trying to prefix a yanked mail message with @samp{>}, you |
| 2142 | might want to set the variable @code{mail-yank-prefix}. Better yet, use | 2158 | might want to set the variable @code{mail-yank-prefix}. In Message |
| 2143 | the Supercite package (@pxref{Supercite}), which provides flexible | 2159 | buffers, you can even use @kbd{M-;} to cite yanked messages (@kbd{M-;} |
| 2144 | citation for yanked mail and news messages; it is included in Emacs | 2160 | runs the function @code{comment-region}, it is a general-purpose |
| 2145 | since version 19.20. @xref{Changing the included text prefix}, for | 2161 | mechanism to comment regions). |
| 2146 | additional information. | ||
| 2147 | 2162 | ||
| 2148 | @node Underlining paragraphs, Repeating a command as many times as possible, Inserting > at the beginning of each line, Common requests | 2163 | @node Underlining paragraphs, Repeating a command as many times as possible, Inserting text at the beginning of each line, Common requests |
| 2149 | @section How do I insert @samp{_^H} before each character in a region to get an underlined paragraph? | 2164 | @section How do I insert @samp{_^H} before each character in a region to get an underlined paragraph? |
| 2150 | @cindex Underlining a region of text | 2165 | @cindex Underlining a region of text |
| 2151 | @cindex @code{underline-region} | 2166 | @cindex @code{underline-region} |