(release-files, release-files-signed, release-cvs-export)
(release-make-tar-ball, release-diff, release-post-clean): Add
CIN.
+ (OLD_PATTERN): Remove quotes.
+ (release-bump-version): Fix typo.
* etc/images/README: Add more Emacs 22 icons. Add suggestion on
how to use those in Emacs 21.
RELEASE_COMMIT_FILES = lisp/ChangeLog lisp/gnus.el \
texi/ChangeLog texi/gnus.texi texi/message.texi texi/gnus-faq.texi
# Pattern matching previous version(s):
-OLD_PATTERN = '5.10.[0-9]*\|0\.3'
+OLD_PATTERN = 5.10.[0-9]*\|0\.3
# CVS tag of the previous version:
OLD_TAG = v5-10-6
# CVS tag of the current release:
sed -i -e '/^(defconst gnus-version-number /s,"$(OLD_PATTERN)","$(VERSION)",' lisp/gnus.el
sed -i -e '/^.newcommand{.gnusversionname}{Gnus v/s,$(OLD_PATTERN),$(VERSION),' texi/gnus.texi
sed -i -e '/^This manual corresponds to [A-Za-z ]*Gnus v/s,$(OLD_PATTERN),$(VERSION),' texi/gnus.texi
- sed -i -e '/^corresponding to this manual is [A-Za-z ]*Gnusv/s,$(OLD_PATTERN),$(VERSION),' texi/message.texi
+ sed -i -e '/^corresponding to this manual is [A-Za-z ]*Gnus v/s,$(OLD_PATTERN),$(VERSION),' texi/message.texi
if [ "x$(CODENAME)" = "x" ]; then \
sed -i -e '/The current release ($(OLD_PATTERN)) should/s,$(OLD_PATTERN),$(VERSION),' texi/gnus-faq.texi; \
else \
+2006-04-05 Daiki Ueno <ueno@unixuser.org>
+
+ * pgg-gpg.el (pgg-gpg-process-filter): Fix.
+
+2006-04-05 Simon Josefsson <jas@extundo.com>
+
+ * password.el (password-reset): New function.
+
+2006-04-05 Daiki Ueno <ueno@unixuser.org>
+
+ * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
+ for BEGIN_SIGNING too, new in GnuPG 1.4.3.
+
+2006-04-04 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
+
+ * nnweb.el (nnweb-google-create-mapping): Update regexp. Some
+ whitespace was matched into the url, which broke browsing hits
+ > 100 when mm-url-use-external was nil.
+
+2006-04-04 Reiner Steib <Reiner.Steib@gmx.de>
+
+ * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
+ gnus-extra-headers for 'Newsgroups.
+
+ * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
+ bound.
+
2006-04-04 Daiki Ueno <ueno@unixuser.org>
* pgg-gpg.el: Clean up process buffers every time gpg processes
* gnus-async.el: Require timer-funcs at compile time when in
XEmacs for `run-with-idle-timer'.
-2005-03-13 Steve Youngs <steve@sxemacs.org>
+2005-03-13 Andrey Slusar <anrays@gmail.com> (tiny change)
* gnus.el: Don't try and mark `gnus-agent-save-groups' as an
autoloaded function.
- From: Andrey Slusar <anrays@gmail.com>.
2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
* mm-encode.el (mm-content-transfer-encoding-defaults): Use
qp-or-base64 for the application/* types.
-2004-07-02 Jesper Harder <harder@ifa.au.dk>
+2004-07-02 Joakim Verona <joakim@verona.se> (tiny change)
- * nnrss.el (nnrss-read-group-data): Fix off-by-one error. From
- Joakim Verona <joakim@verona.se>.
+ * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
2004-06-30 Teodor Zlatanov <tzz@lifelogs.com>
* gnus-group.el (gnus-group-get-new-news-this-group): Don't
update info that isn't there.
+2004-06-29 From Ilya N. Golubev <gin@mo.msk.ru>.
+
+ * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
+ entry.
+
2004-06-29 Katsumi Yamaoka <yamaoka@jpl.org>
* mm-view.el (mm-inline-render-with-function): Use multibyte
entry. From Ilya N. Golubev <gin@mo.msk.ru>.
(mm-enrich-utf-8-by-mule-ucs): New function run when Mule-UCS is
loaded under XEmacs.
- (): Don't make duplicated entries in mm-mime-mule-charset-alist.
+ (mm-mime-mule-charset-alist): Avoid duplicated entries.
2004-06-28 Jesper Harder <harder@ifa.au.dk>
* gnus-util.el (gnus-rename-file): New function.
+2004-04-07 Christian Neukirchen <chneukirchen@yahoo.de> (tiny change)
+
+ * mm-util.el (mm-image-load-path): Handle nil in load-path.
+
2004-04-07 Jesper Harder <harder@ifa.au.dk>
* rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
'+'. Reported by Stefan Wiens <s.wi@gmx.net>.
- * mm-util.el (mm-image-load-path): Handle nil in load-path.
- From Christian Neukirchen <chneukirchen@yahoo.de>.
-
2004-04-06 Jesper Harder <harder@ifa.au.dk>
* gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
(or
(cdr (assq 'Newsgroups extra-headers))
(and
+ (memq 'Newsgroups gnus-extra-headers)
(eq (car (gnus-find-method-for-group
gnus-newsgroup-name)) 'nntp)
(gnus-group-real-name gnus-newsgroup-name))))
:group 'message)
(defcustom message-tool-bar-gnome
- '((ispell-message "spell" nil :visible (not flyspell-mode))
- (flyspell-buffer "spell" t :visible flyspell-mode
+ '((ispell-message "spell" nil
+ :visible (or (not (boundp 'flyspell-mode))
+ (not flyspell-mode)))
+ (flyspell-buffer "spell" t
+ :visible (and (boundp 'flyspell-mode)
+ flyspell-mode)
:help "Flyspell whole buffer")
(gmm-ignore "separator")
(message-send-and-exit "mail/send")
(goto-char (point-min))
(incf i 100)
(if (or (not (re-search-forward
- "<a href=\"\n\\([^>\"]+\\)\"><img src=\"[^\"]+next"
+ "<a href=\"\n\\([^>\" \n\t]+\\)[^<]*<img src=[^>]+next"
nil t))
(>= i nnweb-max-hits))
(setq more nil)
;;; password.el --- Read passwords from user, possibly using a password cache.
-;; Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
+;; Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
;; Author: Simon Josefsson <simon@josefsson.org>
;; Created: 2003-12-21
(set (intern key password-data) password)
nil)
+(defun password-reset ()
+ "Clear the password cache."
+ (interactive)
+ (fillarray password-data 0))
+
(provide 'password)
;;; password.el ends here
+2006-04-04 Reiner Steib <Reiner.Steib@gmx.de>
+
+ * gnus.texi, message.texi: Bump version.
+
2006-04-04 Simon Josefsson <jas@extundo.com>
* gnus.texi (Security): Improve.