]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge from origin/emacs-27
authorGlenn Morris <rgm@gnu.org>
Thu, 18 Mar 2021 15:50:32 +0000 (08:50 -0700)
committerGlenn Morris <rgm@gnu.org>
Thu, 18 Mar 2021 15:50:32 +0000 (08:50 -0700)
f60eb988f6 Fix typos and omissions for (elisp)Button Buffer Commands
876b95bf90 Teach Rmail about NBSP in "Re:"

# Conflicts:
# lisp/mail/rmail.el

1  2 
doc/lispref/display.texi
lisp/mail/rmail.el

Simple merge
index 2bd3ffa29106394338f4a2d9e271e44ae4e4843f,86154f2a61fb00e96d6b804d080915e0b95a8b85..c7960f85043bc4d45ba912ba2556a07beac349fd
@@@ -548,10 -582,7 +548,10 @@@ Examples
  ;; This pattern should catch all the common variants.
  ;; rms: I deleted the change to delete tags in square brackets
  ;; because they mess up RT tags.
 -(defvar rmail-reply-regexp "\\`\\(Re\\(([0-9]+)\\|\\[[0-9]+\\]\\|\\^[0-9]+\\)?\u00a0*: *\\)*"
 +(defvar rmail-reply-regexp
 +  (concat "\\`\\("
 +          rmail-re-abbrevs
-           "\\(([0-9]+)\\|\\[[0-9]+\\]\\|\\^[0-9]+\\)?[::] *\\)*")
++          "\\(([0-9]+)\\|\\[[0-9]+\\]\\|\\^[0-9]+\\)?\u00a0*[::] *\\)*")
    "Regexp to delete from Subject line before inserting `rmail-reply-prefix'.")
  
  (defcustom rmail-display-summary nil
@@@ -3356,7 -3398,8 +3356,7 @@@ whitespace, replacing whitespace runs w
  removing prefixes such as Re:, Fwd: and so on and mailing list
  tags such as [tag]."
    (let ((subject (or (rmail-get-header "Subject" msgnum) ""))
-       (regexp "\\`[ \t\n]*\\(\\(\\w\\{1,4\\}[::]\\|\\[[^]]+]\\)[ \t\n]+\\)*"))
 -      (regexp
 -         "\\`[ \t\n]*\\(\\(\\w\\{1,3\\}\u00a0*:\\|\\[[^]]+]\\)[ \t\n]+\\)*"))
++      (regexp "\\`[ \t\n]*\\(\\(\\w\\{1,4\\}\u00a0*[::]\\|\\[[^]]+]\\)[ \t\n]+\\)*"))
      (setq subject (rfc2047-decode-string subject))
      (setq subject (replace-regexp-in-string regexp "" subject))
      (replace-regexp-in-string "[ \t\n]+" " " subject)))