diff options
| author | Glenn Morris | 2014-10-12 15:56:45 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-10-12 15:56:45 -0700 |
| commit | b1d5ab0352b6132eee4feaf9091ce7dc7a3e6a84 (patch) | |
| tree | df2e6708c30f53f071bd824c49c7f00dfbe0ffba /doc | |
| parent | ec11ab9b783fc1f2c0ce858a711baa5f728c238b (diff) | |
| parent | e175fabcdd37f89db13ab90615cf0baa7bade4d9 (diff) | |
| download | emacs-b1d5ab0352b6132eee4feaf9091ce7dc7a3e6a84.tar.gz emacs-b1d5ab0352b6132eee4feaf9091ce7dc7a3e6a84.zip | |
Merge from emacs-24; up to 2014-07-26T11:58:24Z!schwab@linux-m68k.org
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/help.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/control.texi | 14 | ||||
| -rw-r--r-- | doc/lispref/elisp.texi | 2 | ||||
| -rw-r--r-- | doc/misc/org.texi | 3 |
5 files changed, 15 insertions, 10 deletions
diff --git a/doc/emacs/help.texi b/doc/emacs/help.texi index 10b5fcfb095..22bebed87df 100644 --- a/doc/emacs/help.texi +++ b/doc/emacs/help.texi | |||
| @@ -129,7 +129,7 @@ Display news of recent Emacs changes (@code{view-emacs-news}). | |||
| 129 | Find packages by topic keyword (@code{finder-by-keyword}). This lists | 129 | Find packages by topic keyword (@code{finder-by-keyword}). This lists |
| 130 | packages using a package menu buffer. @xref{Packages}. | 130 | packages using a package menu buffer. @xref{Packages}. |
| 131 | @item C-h P @var{package} @key{RET} | 131 | @item C-h P @var{package} @key{RET} |
| 132 | Display documentation about the package named @var{package} | 132 | Display documentation about the specified package |
| 133 | (@code{describe-package}). | 133 | (@code{describe-package}). |
| 134 | @item C-h r | 134 | @item C-h r |
| 135 | Display the Emacs manual in Info (@code{info-emacs-manual}). | 135 | Display the Emacs manual in Info (@code{info-emacs-manual}). |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index ba95d11399a..8ec524cc534 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * elisp.texi (DATE): Bump to October 2014. | ||
| 4 | |||
| 1 | 2014-10-09 Glenn Morris <rgm@gnu.org> | 5 | 2014-10-09 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * frames.texi (Multiple Terminals): Copyedits. | 7 | * frames.texi (Multiple Terminals): Copyedits. |
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index 08d2ff35a6a..5cf6368db52 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi | |||
| @@ -328,13 +328,13 @@ lexical binding): | |||
| 328 | @example | 328 | @example |
| 329 | (defun evaluate (exp env) | 329 | (defun evaluate (exp env) |
| 330 | (pcase exp | 330 | (pcase exp |
| 331 | (`(add ,x ,y) (+ (evaluate x env) (evaluate y env))) | 331 | (`(add ,x ,y) (+ (evaluate x env) (evaluate y env))) |
| 332 | (`(call ,fun ,arg) (funcall (evaluate fun env) (evaluate arg env))) | 332 | (`(call ,fun ,arg) (funcall (evaluate fun env) (evaluate arg env))) |
| 333 | (`(fn ,arg ,body) (lambda (val) | 333 | (`(fn ,arg ,body) (lambda (val) |
| 334 | (evaluate body (cons (cons arg val) env)))) | 334 | (evaluate body (cons (cons arg val) env)))) |
| 335 | ((pred numberp) exp) | 335 | ((pred numberp) exp) |
| 336 | ((pred symbolp) (cdr (assq exp env))) | 336 | ((pred symbolp) (cdr (assq exp env))) |
| 337 | (_ (error "Unknown expression %S" exp)))) | 337 | (_ (error "Unknown expression %S" exp)))) |
| 338 | @end example | 338 | @end example |
| 339 | 339 | ||
| 340 | Where @code{`(add ,x ,y)} is a pattern that checks that @code{exp} is a three | 340 | Where @code{`(add ,x ,y)} is a pattern that checks that @code{exp} is a three |
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi index 937345f21e4..fa665da34a4 100644 --- a/doc/lispref/elisp.texi +++ b/doc/lispref/elisp.texi | |||
| @@ -56,7 +56,7 @@ | |||
| 56 | @c (See comments for EDITION in emacs.texi) | 56 | @c (See comments for EDITION in emacs.texi) |
| 57 | @set VERSION 3.1 | 57 | @set VERSION 3.1 |
| 58 | @include emacsver.texi | 58 | @include emacsver.texi |
| 59 | @set DATE January 2013 | 59 | @set DATE October 2014 |
| 60 | 60 | ||
| 61 | @c in general, keep the following line commented out, unless doing a | 61 | @c in general, keep the following line commented out, unless doing a |
| 62 | @c copy of this manual that will be published. The manual should go | 62 | @c copy of this manual that will be published. The manual should go |
diff --git a/doc/misc/org.texi b/doc/misc/org.texi index cab8a811e6e..2af44239e8d 100644 --- a/doc/misc/org.texi +++ b/doc/misc/org.texi | |||
| @@ -2,7 +2,8 @@ | |||
| 2 | @c %**start of header | 2 | @c %**start of header |
| 3 | @setfilename ../../info/org.info | 3 | @setfilename ../../info/org.info |
| 4 | @settitle The Org Manual | 4 | @settitle The Org Manual |
| 5 | @set VERSION 8.2.8 | 5 | |
| 6 | @set VERSION 8.2.9 | ||
| 6 | 7 | ||
| 7 | @c Version and Contact Info | 8 | @c Version and Contact Info |
| 8 | @set MAINTAINERSITE @uref{http://orgmode.org,maintainers web page} | 9 | @set MAINTAINERSITE @uref{http://orgmode.org,maintainers web page} |