diff options
| author | Glenn Morris | 2014-10-29 22:15:28 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-10-29 22:15:28 -0700 |
| commit | 52b410c60aebeb769ec9580af25ca50df2a44751 (patch) | |
| tree | ba5de0b896c5ea410ceb2f2f1866c0fac73ea236 /doc/misc | |
| parent | cc99f920f507d28bb1422f8a3d52723ddc734c8a (diff) | |
| parent | 237bf45a48999d5a8a3617822dddf3ea305bc269 (diff) | |
| download | emacs-52b410c60aebeb769ec9580af25ca50df2a44751.tar.gz emacs-52b410c60aebeb769ec9580af25ca50df2a44751.zip | |
Merge from emacs-24; up to 117634
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/ChangeLog | 9 | ||||
| -rw-r--r-- | doc/misc/efaq.texi | 22 | ||||
| -rw-r--r-- | doc/misc/eieio.texi | 10 |
3 files changed, 12 insertions, 29 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 82e768c6564..1ecc0a65741 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2014-10-30 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * efaq.texi (Gnus does not work with NNTP): Remove; ancient. | ||
| 4 | |||
| 5 | 2014-10-30 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 6 | |||
| 7 | * eieio.texi (Accessing Slots, CLOS compatibility): Adjust wording | ||
| 8 | since `setf' is in core rather than in CL nowadays. | ||
| 9 | |||
| 1 | 2014-10-29 Paul Eggert <eggert@cs.ucla.edu> | 10 | 2014-10-29 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 11 | ||
| 3 | Simplify use of current-time and friends. | 12 | Simplify use of current-time and friends. |
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi index 4d1df8b97dc..0159101916d 100644 --- a/doc/misc/efaq.texi +++ b/doc/misc/efaq.texi | |||
| @@ -4190,7 +4190,6 @@ fontset, or you can select it by setting the default font in your | |||
| 4190 | * Replying to the sender of a message:: | 4190 | * Replying to the sender of a message:: |
| 4191 | * Automatically starting a mail or news reader:: | 4191 | * Automatically starting a mail or news reader:: |
| 4192 | * Reading news with Emacs:: | 4192 | * Reading news with Emacs:: |
| 4193 | * Gnus does not work with NNTP:: | ||
| 4194 | * Making Gnus faster:: | 4193 | * Making Gnus faster:: |
| 4195 | * Catching up in all newsgroups:: | 4194 | * Catching up in all newsgroups:: |
| 4196 | @end menu | 4195 | @end menu |
| @@ -4384,27 +4383,6 @@ Manual, gnus, The Gnus Manual}, which includes @ref{Frequently Asked | |||
| 4384 | Questions,, the Gnus FAQ, gnus, The Gnus Manual}. | 4383 | Questions,, the Gnus FAQ, gnus, The Gnus Manual}. |
| 4385 | 4384 | ||
| 4386 | 4385 | ||
| 4387 | @node Gnus does not work with NNTP | ||
| 4388 | @section Why doesn't Gnus work via NNTP? | ||
| 4389 | @cindex Gnus and NNTP | ||
| 4390 | @cindex NNTP, Gnus fails to work with | ||
| 4391 | |||
| 4392 | There is a bug in NNTP version 1.5.10, such that when multiple requests | ||
| 4393 | are sent to the NNTP server, the server only handles the first one | ||
| 4394 | before blocking waiting for more input which never comes. NNTP version | ||
| 4395 | 1.5.11 claims to fix this. | ||
| 4396 | |||
| 4397 | You can work around the bug inside Emacs like this: | ||
| 4398 | |||
| 4399 | @lisp | ||
| 4400 | (setq nntp-maximum-request 1) | ||
| 4401 | @end lisp | ||
| 4402 | |||
| 4403 | You can find out what version of NNTP your news server is running by | ||
| 4404 | telnetting to the NNTP port (usually 119) on the news server machine | ||
| 4405 | (i.e., @kbd{telnet server-machine 119}). The server should give its | ||
| 4406 | version number in the welcome message. Type @kbd{quit} to get out. | ||
| 4407 | |||
| 4408 | @node Making Gnus faster | 4386 | @node Making Gnus faster |
| 4409 | @section How do I make Gnus faster? | 4387 | @section How do I make Gnus faster? |
| 4410 | @cindex Faster, starting Gnus | 4388 | @cindex Faster, starting Gnus |
diff --git a/doc/misc/eieio.texi b/doc/misc/eieio.texi index 8f93300e24a..80e52baf255 100644 --- a/doc/misc/eieio.texi +++ b/doc/misc/eieio.texi | |||
| @@ -755,8 +755,8 @@ Unlike @code{oref}, the symbol for @var{slot} must be quoted. | |||
| 755 | 755 | ||
| 756 | @defun set-slot-value object slot value | 756 | @defun set-slot-value object slot value |
| 757 | @anchor{set-slot-value} | 757 | @anchor{set-slot-value} |
| 758 | This is not a CLOS function, but is meant to mirror @code{slot-value} if | 758 | This is not a CLOS function, but is the setter for @code{slot-value} |
| 759 | you don't want to use the cl package's @code{setf} function. This | 759 | used by the @code{setf} macro. This |
| 760 | function sets the value of @var{slot} from @var{object}. Unlike | 760 | function sets the value of @var{slot} from @var{object}. Unlike |
| 761 | @code{oset}, the symbol for @var{slot} must be quoted. | 761 | @code{oset}, the symbol for @var{slot} must be quoted. |
| 762 | @end defun | 762 | @end defun |
| @@ -790,7 +790,7 @@ This establishes a lexical environment for referring to the slots in | |||
| 790 | the instance named by the given slot-names as though they were | 790 | the instance named by the given slot-names as though they were |
| 791 | variables. Within such a context the value of the slot can be | 791 | variables. Within such a context the value of the slot can be |
| 792 | specified by using its slot name, as if it were a lexically bound | 792 | specified by using its slot name, as if it were a lexically bound |
| 793 | variable. Both setf and setq can be used to set the value of the | 793 | variable. Both @code{setf} and @code{setq} can be used to set the value of the |
| 794 | slot. | 794 | slot. |
| 795 | 795 | ||
| 796 | @var{spec-list} is of a form similar to @dfn{let}. For example: | 796 | @var{spec-list} is of a form similar to @dfn{let}. For example: |
| @@ -1850,10 +1850,6 @@ for the given object. This is different than that found in CLOS because | |||
| 1850 | in @eieio{} this function accepts replacement arguments. This permits | 1850 | in @eieio{} this function accepts replacement arguments. This permits |
| 1851 | subclasses to modify arguments as they are passed up the tree. If no | 1851 | subclasses to modify arguments as they are passed up the tree. If no |
| 1852 | arguments are given, the expected CLOS behavior is used. | 1852 | arguments are given, the expected CLOS behavior is used. |
| 1853 | @item setf | ||
| 1854 | If the common-lisp subsystem is loaded, the setf parameters are also | ||
| 1855 | loaded so the form @code{(setf (slot-value object slot) t)} should | ||
| 1856 | work. | ||
| 1857 | @end table | 1853 | @end table |
| 1858 | 1854 | ||
| 1859 | CLOS supports the @code{describe} command, but @eieio{} provides | 1855 | CLOS supports the @code{describe} command, but @eieio{} provides |