Mercurial > emacs
view admin/make-changelog-diff @ 110025:5f352fd4346a
Misc Gnus fixes by Lars Magne Ingebrigtsen <larsi@gnus.org>.
2010-08-29 Adam SjŠĖgren <asjo@koldfront.dk>
* gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
functions.
2010-08-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-art.el (gnus-article-add-button): Take an optional parameter to
say what the mouseover text should be.
* gnus-html.el (gnus-html-prefetch-images): Use the summary-local
version of the mm-w3m-safe-url-regexp variable to only download images
in the groups where we want that to happen.
* gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
* gnus-art.el (gnus-article-beginning-of-window): Make into defun for
easier debugging.
(gnus-article-beginning-of-window): Add kludge to allow spacing past
big pictures in the article buffer.
* mm-decode.el (mm-text-html-renderer): Default the html renderer to
gnus-article-html.
(mm-text-html-renderer): gnus-article-html needs curl in addition to
w3m.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Mon, 30 Aug 2010 06:17:45 +0000 |
parents | 3e136d0943a4 |
children | 52a7f3f50b89 ef719132ddfa |
line wrap: on
line source
#! /bin/bash ## Author: Francesco Potorti` <pot@gnu.org> if [ $# -ne 2 ]; then echo "usage: $0 TAG1 TAG2" >&2 exit 1 fi if [ ! -f INSTALL -o ! -f configure -o ! -d lib-src ]; then echo "this script should be run in the emacs root directory" >&2 exit 2 fi cvs -q diff -b -r $1 -r $2 $(find -name ChangeLog|sort) | sed -n -e 's/^=\+/======/p' -e 's/^> //p' -e 's/^diff.*//p' \ -e 's/^RCS file: .cvsroot.emacs.emacs.\(.*\),v/\1/p' | sed -n -e "/^======$/ { N N h d } H s/.*// x s/^\n// p" # arch-tag: 7604a259-40b4-4f97-86b2-496a9c546f0a