diff options
| author | Lars Ingebrigtsen | 2014-02-08 05:04:39 -0800 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2014-02-08 05:04:39 -0800 |
| commit | 6fbf6c29f4c79dab82c35991945558b6e192a372 (patch) | |
| tree | d99f7524899f94f81e6886ccbf4d3600d0d6722b /doc | |
| parent | 18c6aa8c86177dcc780c79b640c807d3f5353f25 (diff) | |
| download | emacs-6fbf6c29f4c79dab82c35991945558b6e192a372.tar.gz emacs-6fbf6c29f4c79dab82c35991945558b6e192a372.zip | |
* regs.texi (File Registers): Clarify metasyntactical variables.
Fixes: debbugs:13565
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/emacs/regs.texi | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 8d976127ec9..97acd1c212f 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> | 1 | 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * regs.texi (File Registers): Clarify metasyntactical variables | ||
| 4 | (bug#13565). | ||
| 5 | |||
| 3 | * search.texi (Search Case): Rearrange text slightly to make it | 6 | * search.texi (Search Case): Rearrange text slightly to make it |
| 4 | obvious that `M-c' also toggles sensitivity if `case-fold-search' | 7 | obvious that `M-c' also toggles sensitivity if `case-fold-search' |
| 5 | is nil (bug#14726). | 8 | is nil (bug#14726). |
diff --git a/doc/emacs/regs.texi b/doc/emacs/regs.texi index 8968cbbcffa..5bc22e94ed3 100644 --- a/doc/emacs/regs.texi +++ b/doc/emacs/regs.texi | |||
| @@ -240,10 +240,10 @@ numeric argument stores zero in the register. | |||
| 240 | 240 | ||
| 241 | If you visit certain file names frequently, you can visit them more | 241 | If you visit certain file names frequently, you can visit them more |
| 242 | conveniently if you put their names in registers. Here's the Lisp code | 242 | conveniently if you put their names in registers. Here's the Lisp code |
| 243 | used to put a file name in a register: | 243 | used to put a file @var{name} into register @var{r}: |
| 244 | 244 | ||
| 245 | @smallexample | 245 | @smallexample |
| 246 | (set-register ?@var{r} '(file . @var{name})) | 246 | (set-register @var{r} '(file . @var{name})) |
| 247 | @end smallexample | 247 | @end smallexample |
| 248 | 248 | ||
| 249 | @need 3000 | 249 | @need 3000 |