diff options
| author | Tom Tromey | 2013-03-17 05:17:24 -0600 |
|---|---|---|
| committer | Tom Tromey | 2013-03-17 05:17:24 -0600 |
| commit | 6bd488cd8d05aa3983ca55f70ee384732d8c0085 (patch) | |
| tree | 5645fc7b882638d6c0eb3f61fd55bde1a63fc190 /doc/lispref | |
| parent | 71f91792e3013b397996905224f387da5cc539a9 (diff) | |
| parent | 9c44569ea2a18099307e0571d523d8637000a153 (diff) | |
| download | emacs-6bd488cd8d05aa3983ca55f70ee384732d8c0085.tar.gz emacs-6bd488cd8d05aa3983ca55f70ee384732d8c0085.zip | |
merge from trunk
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 11 | ||||
| -rw-r--r-- | doc/lispref/control.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/elisp.texi | 10 |
3 files changed, 22 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 3c976d37062..7455881518a 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2013-03-16 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * elisp.texi: Add some stuff specific to www.gnu.org. | ||
| 4 | |||
| 5 | 2013-03-16 Glenn Morris <rgm@gnu.org> | ||
| 6 | |||
| 7 | * Version 24.3 released. | ||
| 8 | 2013-03-11 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 9 | |||
| 10 | * control.texi (Pattern matching case statement): Fix typo. | ||
| 11 | |||
| 1 | 2013-03-04 Paul Eggert <eggert@cs.ucla.edu> | 12 | 2013-03-04 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 13 | ||
| 3 | * elisp.texi, intro.texi: Switch from Latin-1 to UTF-8. | 14 | * elisp.texi, intro.texi: Switch from Latin-1 to UTF-8. |
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index 76a2f464792..9ee01299260 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi | |||
| @@ -373,7 +373,7 @@ symbol to the value that it matched, so that you can later refer to it, either | |||
| 373 | in the @var{body-forms} or also later in the pattern. | 373 | in the @var{body-forms} or also later in the pattern. |
| 374 | @item _ | 374 | @item _ |
| 375 | This so-called @emph{don't care} pattern matches anything, like the previous | 375 | This so-called @emph{don't care} pattern matches anything, like the previous |
| 376 | one, but unless symbol patterns it does not bind any variable. | 376 | one, but unlike symbol patterns it does not bind any variable. |
| 377 | @item (pred @var{pred}) | 377 | @item (pred @var{pred}) |
| 378 | This pattern matches if the function @var{pred} returns non-@code{nil} when | 378 | This pattern matches if the function @var{pred} returns non-@code{nil} when |
| 379 | called with the object being matched. | 379 | called with the object being matched. |
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi index 66fda259d7d..343d9cc98e2 100644 --- a/doc/lispref/elisp.texi +++ b/doc/lispref/elisp.texi | |||
| @@ -97,6 +97,16 @@ This is edition @value{VERSION} of the @cite{GNU Emacs Lisp Reference Manual},@* | |||
| 97 | This is the @cite{GNU Emacs Lisp Reference Manual} | 97 | This is the @cite{GNU Emacs Lisp Reference Manual} |
| 98 | @end ifnottex | 98 | @end ifnottex |
| 99 | corresponding to Emacs version @value{EMACSVER}. | 99 | corresponding to Emacs version @value{EMACSVER}. |
| 100 | @ifset WWW_GNU_ORG | ||
| 101 | @html | ||
| 102 | <p>The homepage for GNU Emacs is at | ||
| 103 | <a href="/software/emacs/">http://www.gnu.org/software/emacs/</a>.<br> | ||
| 104 | For information on using Emacs, refer to | ||
| 105 | the <a href="/software/emacs/manual/html_node/emacs/index.html">Emacs | ||
| 106 | Manual</a>.<br> To view this manual in other formats, | ||
| 107 | click <a href="/software/emacs/manual/elisp.html">here</a>. | ||
| 108 | @end html | ||
| 109 | @end ifset | ||
| 100 | 110 | ||
| 101 | Copyright @copyright{} 1990--1996, 1998--2013 Free Software Foundation, Inc. | 111 | Copyright @copyright{} 1990--1996, 1998--2013 Free Software Foundation, Inc. |
| 102 | 112 | ||