Merge from origin/emacs-25
9fb185a
shr-tag-video bug fix6300655
Minor fixes in tramp-tests.el50575b1
Ensure redisplay when 'truncate-lines' is set0d9e80d
Fix a doc string of 'transient-mark-mode'0000ae5
MS-Windows followup to latest gnulib update4bc5e02
Spelling fixf1093f7
Do secure signed Bcc handling
This commit is contained in:
commit
a8dd976aa5
7 changed files with 17 additions and 5 deletions
|
@ -2239,6 +2239,7 @@ See also `toggle-frame-maximized'."
|
|||
overline-margin
|
||||
line-prefix
|
||||
wrap-prefix
|
||||
truncate-lines
|
||||
bidi-paragraph-direction
|
||||
bidi-display-reordering))
|
||||
|
||||
|
|
|
@ -4227,6 +4227,8 @@ Instead, just auto-save the buffer and then bury it."
|
|||
(if message-return-action
|
||||
(apply (car message-return-action) (cdr message-return-action))))
|
||||
|
||||
(autoload 'mml-secure-bcc-is-safe "mml-sec")
|
||||
|
||||
(defun message-send (&optional arg)
|
||||
"Send the message in the current buffer.
|
||||
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."
|
|||
(let ((inhibit-read-only t))
|
||||
(put-text-property (point-min) (point-max) 'read-only nil))
|
||||
(message-fix-before-sending)
|
||||
(mml-secure-bcc-is-safe)
|
||||
(run-hooks 'message-send-hook)
|
||||
(when message-confirm-send
|
||||
(or (y-or-n-p "Send message? ")
|
||||
|
|
|
@ -1378,7 +1378,7 @@ The preference is a float determined from `shr-prefer-media-type'."
|
|||
(start (point)))
|
||||
(unless url
|
||||
(setq url (car (shr--extract-best-source dom))))
|
||||
(if image
|
||||
(if (> (length image) 0)
|
||||
(shr-tag-img nil image)
|
||||
(shr-insert " [video] "))
|
||||
(shr-urlify start (shr-expand-url url))))
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
;; NOTE: The xref API is still experimental and can change in major,
|
||||
;; backward-incompatible ways. Everyone is encouraged to try it, and
|
||||
;; report to us any problems or use cases we hadn't anticiated, by
|
||||
;; report to us any problems or use cases we hadn't anticipated, by
|
||||
;; sending an email to emacs-devel, or `M-x report-emacs-bug'.
|
||||
;;
|
||||
;; This file provides a somewhat generic infrastructure for cross
|
||||
|
|
|
@ -453,6 +453,13 @@ EXTRA_libgnu_a_SOURCES += group-member.c
|
|||
|
||||
## end gnulib module group-member
|
||||
|
||||
## begin gnulib module ignore-value
|
||||
|
||||
|
||||
EXTRA_DIST += ignore-value.h
|
||||
|
||||
## end gnulib module ignore-value
|
||||
|
||||
## begin gnulib module intprops
|
||||
|
||||
|
||||
|
|
|
@ -6201,7 +6201,7 @@ all windows or just the selected window.
|
|||
|
||||
Lisp programs may give this variable certain special values:
|
||||
|
||||
- A value of `lambda' enables Transient Mark mode temporarily.
|
||||
- A value of \\='lambda (literally) enables Transient Mark mode temporarily.
|
||||
It is disabled again after any subsequent action that would
|
||||
normally deactivate the mark (e.g. buffer modification).
|
||||
|
||||
|
|
|
@ -1424,6 +1424,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
|
|||
(should-not (get-buffer-window (current-buffer) t))
|
||||
|
||||
;; Second run. The output must be appended.
|
||||
(goto-char (point-max))
|
||||
(should (zerop (process-file "ls" nil t t fnnd)))
|
||||
;; `ls' could produce colorized output.
|
||||
(goto-char (point-min))
|
||||
|
@ -1652,8 +1653,8 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
|
|||
(error
|
||||
(vc-register
|
||||
nil (list (car vc-handled-backends)
|
||||
(list (file-name-nondirectory tmp-name2)))))))
|
||||
(should (vc-registered tmp-name2)))
|
||||
(list (file-name-nondirectory tmp-name2))))))
|
||||
(should (vc-registered (file-name-nondirectory tmp-name2)))))
|
||||
|
||||
;; Cleanup.
|
||||
(ignore-errors (delete-directory tmp-name1 'recursive)))))
|
||||
|
|
Loading…
Add table
Reference in a new issue