aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJohn Wiegley2016-01-11 22:48:10 -0800
committerJohn Wiegley2016-01-11 22:48:10 -0800
commita8dd976aa5299060ee3670f8d693887960aa6ad8 (patch)
treec805ea51cdf387c43e9aa2a99c502e7e44810418 /lisp
parent91b263e76f5ce170c1c8cbc34a2e7614c32612b8 (diff)
parent9fb185aff7b1f36c30bd157ec446d9bad104d1ee (diff)
downloademacs-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
Diffstat (limited to 'lisp')
-rw-r--r--lisp/frame.el1
-rw-r--r--lisp/gnus/message.el3
-rw-r--r--lisp/net/shr.el2
-rw-r--r--lisp/progmodes/xref.el2
4 files changed, 6 insertions, 2 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.
4232If `message-interactive' is non-nil, wait for success indication or 4234If `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