X-Git-Url: http://cgit.sxemacs.org/?a=blobdiff_plain;f=lisp%2FChangeLog;h=c8c5b3ebbbbaf467a9bbfbb5748fa6989d3fdd34;hb=7c0c5448e9b45864024f524e090312a438d600e9;hp=41d390b1ecee5827ea6282b71eeff7c29755dc21;hpb=b094acedc8f1bea034535fb457765d03d4a310a9;p=gnus diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 41d390b1e..c8c5b3ebb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,105 @@ +2015-10-20 Michael Sperber + + * mailcap.el (mailcap-mime-data): Conditonalize `doc-view-mode', which + does not exist on XEmacs. + +2015-10-18 Michael Sperber + + * nnml.el (nnml-retrieve-groups, nnml-request-scan): + * nnmail.el (nnmail-get-new-mail-per-group): + (nnmail-get-new-mail-1): Unbreak `group' option for `mail-sources'. + +2015-10-18 Michael Sperber + + * message.el (message-get-reply-headers): In addition to + `mail-dont-reply-to-names', bind `rmail-dont-reply-to-names', which is + used in XEmacs. + +2015-10-14 Katsumi Yamaoka + + * auth-source.el (auth-source-epa-make-gpg-token): Revert. + +2015-10-11 Nicolas Petton + + * auth-source.el (auth-source-epa-make-gpg-token): + Replace an usage of `epg-context-set-armor' with `setf'. + (auth-source-do-debug, auth-source-do-trivia) + (auth-source-read-char-choice, auth-source-search) + (auth-source-pick-first-password, auth-source-netrc-parse) + (auth-source-netrc-search, auth-source-secrets-search) + (auth-source-macos-keychain-search) + (auth-source-macos-keychain-search-items, auth-source-plstore-search) + (auth-source-user-or-password): Use sharp-quoting with functions. + +2015-09-30 Wieland Hoffmann + + * auth-source.el (auth-source-search): Clarify :create's meaning. + +2015-09-17 Paul Eggert + + Backslash cleanup in Elisp source files + + This patch should not change behavior. It typically omits backslashes + where they are redundant (e.g., in the string literal "^\$"). + In a few places, insert backslashes where they make regular expressions + clearer: e.g., replace "^\*" (equivalent to "^*") with "^\\*", which + has the same effect as a regular expression. + Also, use ‘\ %’ instead of ‘\%’ when avoiding confusion with SCCS IDs, + and similarly use ‘\ $’ instead of ‘\$’ when avoiding confusion + with RCS IDs, as that makes it clearer that the backslash is intended. + * auth-source.el (auth-source-secrets-search) + (auth-source-macos-keychain-search): + * gnus-art.el (gnus-mime-action-on-part) + (gnus-mime-display-multipart-related-as-mixed) + (gnus-button-mid-or-mail-heuristic-alist) + (gnus-button-mid-or-mail-heuristic, gnus-article-extend-url-button): + * gnus-bookmark.el (gnus-bookmark-bmenu-toggle-infos) + (gnus-bookmark-bookmark-inline-details, gnus-bookmark-bookmark-details) + (gnus-bookmark-alist, gnus-bookmark-name-from-full-record) + (gnus-bookmark-bmenu-mode, gnus-bookmark-delete): + * gnus-cus.el (gnus-group-customize): + * gnus-group.el (gnus-group-line-format, gnus-group-mode-line-format) + (gnus-group-jump-to-group-prompt, gnus-group-name-at-point): + * gnus-mlspl.el (gnus-group-split-fancy): + * gnus-registry.el (gnus-registry-prune-factor): + * gnus-salt.el (gnus-summary-pick-line-format): + * gnus-sieve.el (gnus-sieve-update, gnus-sieve-generate) + (gnus-sieve-script): + * gnus-util.el (gnus-directory-sep-char-regexp): + * gnus.el (gnus-message-archive-group, gnus-user-agent): + * message.el (message-archive-header, message-reply-headers) + (message-send-method-alist): + * mm-decode.el (mm-add-meta-html-tag): + * nndoc.el (nndoc-generate-lanl-gov-head): + * nnheader.el (nnheader-max-head-length): + * registry.el (registry-db, registry-prune): + * rfc1843.el (rfc1843-hzp-word-regexp) + (rfc1843-hzp-word-regexp-strictly): + * rfc2047.el (rfc2047-encoded-word-regexp) + (rfc2047-encoded-word-regexp-loose): + + Fix several backslash typos in Elisp strings + * gnus-art.el (gnus-button-handle-library): + * gnus-group.el (gnus-read-ephemeral-gmane-group-url): + * nntp.el (nntp-via-shell-prompt, nntp-telnet-shell-prompt): + * spam-report.el (spam-report-gmane-regex): + Fix typo by replacing ‘\’ with ‘\\’ in a string literal. + For example, to get the regular expression ‘\.’ use the string + literal "\\.", not "\." (which is equivalent to "."). + + * auth-source.el (auth-source-read-char-choice): + * nnmaildir.el (NOV example): + * registry.el (registry-search): Doc fix. + +2015-09-14 Katsumi Yamaoka + + * gnus-compat.el: Require overlay for XEmacs. + +2015-09-12 Stefan Monnier + + * message.el (message-hide-headers): Bind inhibit-modification-hooks to + t rather than after-change-functions to nil. + 2015-09-09 Stefan Monnier * time-date.el (time-to-seconds, time-less-p):