diff options
| author | John Wiegley | 2016-01-11 22:48:10 -0800 |
|---|---|---|
| committer | John Wiegley | 2016-01-11 22:48:10 -0800 |
| commit | a8dd976aa5299060ee3670f8d693887960aa6ad8 (patch) | |
| tree | c805ea51cdf387c43e9aa2a99c502e7e44810418 | |
| parent | 91b263e76f5ce170c1c8cbc34a2e7614c32612b8 (diff) | |
| parent | 9fb185aff7b1f36c30bd157ec446d9bad104d1ee (diff) | |
| download | emacs-a8dd976aa5299060ee3670f8d693887960aa6ad8.tar.gz emacs-a8dd976aa5299060ee3670f8d693887960aa6ad8.zip | |
Merge from origin/emacs-25
9fb185a shr-tag-video bug fix
6300655 Minor fixes in tramp-tests.el
50575b1 Ensure redisplay when 'truncate-lines' is set
0d9e80d Fix a doc string of 'transient-mark-mode'
0000ae5 MS-Windows followup to latest gnulib update
4bc5e02 Spelling fix
f1093f7 Do secure signed Bcc handling
| -rw-r--r-- | lisp/frame.el | 1 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 3 | ||||
| -rw-r--r-- | lisp/net/shr.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/xref.el | 2 | ||||
| -rw-r--r-- | nt/gnulib.mk | 7 | ||||
| -rw-r--r-- | src/buffer.c | 2 | ||||
| -rw-r--r-- | test/lisp/net/tramp-tests.el | 5 |
7 files changed, 17 insertions, 5 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 04dd4abdf03..09738d1e2ed 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -2239,6 +2239,7 @@ See also `toggle-frame-maximized'." | |||
| 2239 | overline-margin | 2239 | overline-margin |
| 2240 | line-prefix | 2240 | line-prefix |
| 2241 | wrap-prefix | 2241 | wrap-prefix |
| 2242 | truncate-lines | ||
| 2242 | bidi-paragraph-direction | 2243 | bidi-paragraph-direction |
| 2243 | bidi-display-reordering)) | 2244 | bidi-display-reordering)) |
| 2244 | 2245 | ||
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 7be2ff900d4..51dcc1a909f 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -4227,6 +4227,8 @@ Instead, just auto-save the buffer and then bury it." | |||
| 4227 | (if message-return-action | 4227 | (if message-return-action |
| 4228 | (apply (car message-return-action) (cdr message-return-action)))) | 4228 | (apply (car message-return-action) (cdr message-return-action)))) |
| 4229 | 4229 | ||
| 4230 | (autoload 'mml-secure-bcc-is-safe "mml-sec") | ||
| 4231 | |||
| 4230 | (defun message-send (&optional arg) | 4232 | (defun message-send (&optional arg) |
| 4231 | "Send the message in the current buffer. | 4233 | "Send the message in the current buffer. |
| 4232 | If `message-interactive' is non-nil, wait for success indication or | 4234 | If `message-interactive' is non-nil, wait for success indication or |
| @@ -4241,6 +4243,7 @@ It should typically alter the sending method in some way or other." | |||
| 4241 | (let ((inhibit-read-only t)) | 4243 | (let ((inhibit-read-only t)) |
| 4242 | (put-text-property (point-min) (point-max) 'read-only nil)) | 4244 | (put-text-property (point-min) (point-max) 'read-only nil)) |
| 4243 | (message-fix-before-sending) | 4245 | (message-fix-before-sending) |
| 4246 | (mml-secure-bcc-is-safe) | ||
| 4244 | (run-hooks 'message-send-hook) | 4247 | (run-hooks 'message-send-hook) |
| 4245 | (when message-confirm-send | 4248 | (when message-confirm-send |
| 4246 | (or (y-or-n-p "Send message? ") | 4249 | (or (y-or-n-p "Send message? ") |
diff --git a/lisp/net/shr.el b/lisp/net/shr.el index d24f0d37539..2511d673e7e 100644 --- a/lisp/net/shr.el +++ b/lisp/net/shr.el | |||
| @@ -1378,7 +1378,7 @@ The preference is a float determined from `shr-prefer-media-type'." | |||
| 1378 | (start (point))) | 1378 | (start (point))) |
| 1379 | (unless url | 1379 | (unless url |
| 1380 | (setq url (car (shr--extract-best-source dom)))) | 1380 | (setq url (car (shr--extract-best-source dom)))) |
| 1381 | (if image | 1381 | (if (> (length image) 0) |
| 1382 | (shr-tag-img nil image) | 1382 | (shr-tag-img nil image) |
| 1383 | (shr-insert " [video] ")) | 1383 | (shr-insert " [video] ")) |
| 1384 | (shr-urlify start (shr-expand-url url)))) | 1384 | (shr-urlify start (shr-expand-url url)))) |
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index 26471b0df3f..ae5ec61520d 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | 21 | ||
| 22 | ;; NOTE: The xref API is still experimental and can change in major, | 22 | ;; NOTE: The xref API is still experimental and can change in major, |
| 23 | ;; backward-incompatible ways. Everyone is encouraged to try it, and | 23 | ;; backward-incompatible ways. Everyone is encouraged to try it, and |
| 24 | ;; report to us any problems or use cases we hadn't anticiated, by | 24 | ;; report to us any problems or use cases we hadn't anticipated, by |
| 25 | ;; sending an email to emacs-devel, or `M-x report-emacs-bug'. | 25 | ;; sending an email to emacs-devel, or `M-x report-emacs-bug'. |
| 26 | ;; | 26 | ;; |
| 27 | ;; This file provides a somewhat generic infrastructure for cross | 27 | ;; This file provides a somewhat generic infrastructure for cross |
diff --git a/nt/gnulib.mk b/nt/gnulib.mk index 7c9cc199468..6884bf9f077 100644 --- a/nt/gnulib.mk +++ b/nt/gnulib.mk | |||
| @@ -453,6 +453,13 @@ EXTRA_libgnu_a_SOURCES += group-member.c | |||
| 453 | 453 | ||
| 454 | ## end gnulib module group-member | 454 | ## end gnulib module group-member |
| 455 | 455 | ||
| 456 | ## begin gnulib module ignore-value | ||
| 457 | |||
| 458 | |||
| 459 | EXTRA_DIST += ignore-value.h | ||
| 460 | |||
| 461 | ## end gnulib module ignore-value | ||
| 462 | |||
| 456 | ## begin gnulib module intprops | 463 | ## begin gnulib module intprops |
| 457 | 464 | ||
| 458 | 465 | ||
diff --git a/src/buffer.c b/src/buffer.c index c07b2dc021e..51c36de0c6b 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -6201,7 +6201,7 @@ all windows or just the selected window. | |||
| 6201 | 6201 | ||
| 6202 | Lisp programs may give this variable certain special values: | 6202 | Lisp programs may give this variable certain special values: |
| 6203 | 6203 | ||
| 6204 | - A value of `lambda' enables Transient Mark mode temporarily. | 6204 | - A value of \\='lambda (literally) enables Transient Mark mode temporarily. |
| 6205 | It is disabled again after any subsequent action that would | 6205 | It is disabled again after any subsequent action that would |
| 6206 | normally deactivate the mark (e.g. buffer modification). | 6206 | normally deactivate the mark (e.g. buffer modification). |
| 6207 | 6207 | ||
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index 5938ada8486..f0725847699 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el | |||
| @@ -1424,6 +1424,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." | |||
| 1424 | (should-not (get-buffer-window (current-buffer) t)) | 1424 | (should-not (get-buffer-window (current-buffer) t)) |
| 1425 | 1425 | ||
| 1426 | ;; Second run. The output must be appended. | 1426 | ;; Second run. The output must be appended. |
| 1427 | (goto-char (point-max)) | ||
| 1427 | (should (zerop (process-file "ls" nil t t fnnd))) | 1428 | (should (zerop (process-file "ls" nil t t fnnd))) |
| 1428 | ;; `ls' could produce colorized output. | 1429 | ;; `ls' could produce colorized output. |
| 1429 | (goto-char (point-min)) | 1430 | (goto-char (point-min)) |
| @@ -1652,8 +1653,8 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." | |||
| 1652 | (error | 1653 | (error |
| 1653 | (vc-register | 1654 | (vc-register |
| 1654 | nil (list (car vc-handled-backends) | 1655 | nil (list (car vc-handled-backends) |
| 1655 | (list (file-name-nondirectory tmp-name2))))))) | 1656 | (list (file-name-nondirectory tmp-name2)))))) |
| 1656 | (should (vc-registered tmp-name2))) | 1657 | (should (vc-registered (file-name-nondirectory tmp-name2))))) |
| 1657 | 1658 | ||
| 1658 | ;; Cleanup. | 1659 | ;; Cleanup. |
| 1659 | (ignore-errors (delete-directory tmp-name1 'recursive))))) | 1660 | (ignore-errors (delete-directory tmp-name1 'recursive))))) |