Mercurial > emacs
view admin/make-changelog-diff @ 99595:eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
* viper-init.el (viper-ESC-keyseq-timeout): Make it into a function
instead of a variable.
* viper-util.el (viper-fast-keysequence-p): Changed to use
viper-ESC-keyseq-timeout as a function.
(viper-get-saved-cursor-color-in-replace-mode): Use defun instead of
defsubst.
* viper-cmd.el: Let line-move-visual to nil when using next-line or
previous-line.
(viper-R-state-post-command-sentinel): Use defun instead of defsubst.
* viper-keym.el (viper-ESC-key): Use (kbd "ESC").
* ediff-util.el (ediff-toggle-multiframe): Check if control window is
live.
(ediff-save-buffer): Let window-min-height to 2.
* ediff-wind.el (ediff-setup-windows-plain-compare): Avoid selecting
the minibuffer.
author | Michael Kifer <kifer@cs.stonybrook.edu> |
---|---|
date | Sun, 16 Nov 2008 04:55: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