diff options
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/frames.texi | 3 | ||||
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/process.c | 2 |
4 files changed, 14 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 1c8f239eb9d..cd39f44fc98 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-08-13 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * frames.texi (Display Feature Testing): Add an index. | ||
| 4 | |||
| 1 | 2013-08-12 Glenn Morris <rgm@gnu.org> | 5 | 2013-08-12 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * Makefile.in (prefix, datarootdir, datadir, PACKAGE_TARNAME) | 7 | * Makefile.in (prefix, datarootdir, datadir, PACKAGE_TARNAME) |
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index 37b48cdb6a9..00cf4dc6be4 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -1362,7 +1362,7 @@ Terminals}. | |||
| 1362 | @node Input Focus | 1362 | @node Input Focus |
| 1363 | @section Input Focus | 1363 | @section Input Focus |
| 1364 | @cindex input focus | 1364 | @cindex input focus |
| 1365 | @c @cindex selected frame Duplicates selected-frame | 1365 | @c @cindex selected frame Duplicates selected-frame, same for selected-window. |
| 1366 | 1366 | ||
| 1367 | At any time, one frame in Emacs is the @dfn{selected frame}. The selected | 1367 | At any time, one frame in Emacs is the @dfn{selected frame}. The selected |
| 1368 | window always resides on the selected frame. | 1368 | window always resides on the selected frame. |
| @@ -2391,6 +2391,7 @@ displays returned by @code{display-mm-height} and | |||
| 2391 | @code{display-mm-width} in case the system provides incorrect values. | 2391 | @code{display-mm-width} in case the system provides incorrect values. |
| 2392 | @end defopt | 2392 | @end defopt |
| 2393 | 2393 | ||
| 2394 | @cindex backing store | ||
| 2394 | @defun display-backing-store &optional display | 2395 | @defun display-backing-store &optional display |
| 2395 | This function returns the backing store capability of the display. | 2396 | This function returns the backing store capability of the display. |
| 2396 | Backing store means recording the pixels of windows (and parts of | 2397 | Backing store means recording the pixels of windows (and parts of |
diff --git a/src/ChangeLog b/src/ChangeLog index 04c89b63fa4..3b8dfe011ee 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-08-12 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * process.c (deactivate_process): Reset fds to -1 (Bug#15035). | ||
| 4 | This fixes a problem introduced by the Bug#15035 patch | ||
| 5 | when using GPG. Reported by Herbert J. Skuhra. | ||
| 6 | |||
| 1 | 2013-08-12 Eli Zaretskii <eliz@gnu.org> | 7 | 2013-08-12 Eli Zaretskii <eliz@gnu.org> |
| 2 | 8 | ||
| 3 | * decompress.c <zlib_initialized> [WINDOWSNT]: New static variable. | 9 | * decompress.c <zlib_initialized> [WINDOWSNT]: New static variable. |
diff --git a/src/process.c b/src/process.c index a2bcffe5160..c803d69d6d8 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -3842,6 +3842,8 @@ deactivate_process (Lisp_Object proc) | |||
| 3842 | 3842 | ||
| 3843 | if (inchannel >= 0) | 3843 | if (inchannel >= 0) |
| 3844 | { | 3844 | { |
| 3845 | p->infd = -1; | ||
| 3846 | p->outfd = -1; | ||
| 3845 | #ifdef DATAGRAM_SOCKETS | 3847 | #ifdef DATAGRAM_SOCKETS |
| 3846 | if (DATAGRAM_CHAN_P (inchannel)) | 3848 | if (DATAGRAM_CHAN_P (inchannel)) |
| 3847 | { | 3849 | { |