Klaus Berndl | 1 Dec 2004 15:57
Picon

ECB 2.30.1 released!

                              ECB 2.30.1 is released!

!This release fixes the errors occured at load-time of ECB 2.30!

What's new in the new release:
------------------------------

* Changes for ECB version 2.30.1

** Enhancement to the automatic option-upgrading mechanism
   ECB now automatically makes a backup-file of that file which will be
   modified by storing the upgraded rsp. renamed ECB-options. This backup file
   gets a unique name by adding a suffix ".before_ecb_≤version>" to the name
   of the modified file. If such a file already exists ECB adds a unique number
   to the end of the filename to make the filename unique.
   This is a safety mechanism if something fails during storing the upgraded
   options, so you never lose the contents of your customization-file!

** Enhancement to the VC-support

*** Better recomputing of the VC-state of a file when state changed outside
    With the new check-state-function `ecb-vc-state' the heuristic state is
    always computed right which is especially useful if the state for a file
    has been changed outside Emacs (e.g. by checking in from command line or
    Windows Explorer). This function is now added to the default-value of
    `ecb-vc-supported-backends' for GNU Emacs.

*** Added out-of-the-box support for VC-system Subversion
    For this the latest version of the VC-package incl. the library vc-syn.el
    is needed. Latest CVS Emacs contains this VC-version. The new function
(Continue reading)

Carsten Weinberg | 1 Dec 2004 19:58
Picon
Favicon

Re: ECB 2.30.1 released!

Klaus Berndl wrote:

>                              ECB 2.30.1 is released!
>  
>
Well done!

One of the best elisp packages of all.
Chong Yidong | 7 Dec 2004 17:57
Picon

New minor mode: wrap.el

This is a new minor mode for word wrapping. It is meant to be used
with longlines-mode.

I wrote this because refill-mode and longlines-mode didn't seem to
work well together. The behavior was always a little off, as though
Emacs was constantly fiddling with the text rather than wrapping long
lines. I think this minor mode provides a better simulation of word
wrapping.

Please comment.

-- Yidong

;;; wrap.el --- Minor mode for simulating soft word wrap

;; Copyright (C) 2004 Chong Yidong

;; Author: Chong Yidong <cyd at stupidchicken com>
;; Version: 0.0.1
;; Keywords: convenience

;; This file is not part of GNU Emacs.

;; This file is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2 of
;; the License, or (at your option) any later version.

;; This file is distributed in the hope that it will be
;; useful, but WITHOUT ANY WARRANTY; without even the implied
(Continue reading)

Chong Yidong | 8 Dec 2004 04:40
Picon

Re: New minor mode: wrap.el

Fixed a couple of bugs.

;;; wrap.el --- Minor mode for simulating soft word wrap

;; Copyright (C) 2004 Chong Yidong

;; Author: Chong Yidong <cyd at stupidchicken com>
;; Version: 0.0.2
;; Keywords: convenience

;; This file is not part of GNU Emacs.

;; This file is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2 of
;; the License, or (at your option) any later version.

;; This file is distributed in the hope that it will be
;; useful, but WITHOUT ANY WARRANTY; without even the implied
;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
;; PURPOSE.  See the GNU General Public License for more details.

;; You should have received a copy of the GNU General Public
;; License along with GNU Emacs; if not, write to the Free
;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
;; MA 02111-1307 USA

;;; Commentary:

;; This is wrap-mode, a minor mode for simulating soft word wrap. It
(Continue reading)

Ryan Yeske | 8 Dec 2004 08:08
Picon
Gravatar

rcirc.el

;;; rcirc.el --- lightweight emacs irc client

;; Copyright (C) 2004  Ryan Yeske <rcyeske <at> gmail.com>

;; Author: Ryan Yeske 
;; X-RCS: $Id: rcirc.el,v 1.103 2004/12/08 06:59:51 rcyeske Exp $
;; URL: http://www.emmett.ca/~rcyeske/rcirc
;; Keywords: comm

;; This file is not currently part of GNU Emacs.

;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

;;; Commentary:

;; rcirc is a lightweight irc client for emacs

(Continue reading)

bigfaceworm | 11 Dec 2004 02:22
Picon
Favicon

patch to autorevert.el

This patch adds a new hook to be run whenever a buffer is reverted.
Original autorevert.el was distributed with Emacs 21.1

------------------------------------------------
130a131,135
> (defcustom auto-revert-buffer-reverted-hook nil
>   "Functions to run when a buffer is reverted."
>   :group 'auto-revert
>   :type 'hook)
>
345c350,351
< 		(revert-buffer t t t)))
---
>                 (run-hooks 'auto-revert-buffer-reverted-hook)
>                 (revert-buffer t t t)))
Klaus Berndl | 11 Dec 2004 08:08
Picon

Re: patch to autorevert.el

On 10 Dec 2004, bigfaceworm <at> hotmail.com wrote:

>  This patch adds a new hook to be run whenever a buffer is reverted.
>  Original autorevert.el was distributed with Emacs 21.1
>  
>  ------------------------------------------------
>  130a131,135
> > (defcustom auto-revert-buffer-reverted-hook nil
> >   "Functions to run when a buffer is reverted."
> >   :group 'auto-revert
> >   :type 'hook)
> >
>  345c350,351
>  < 		(revert-buffer t t t)))
>  ---
> >                 (run-hooks 'auto-revert-buffer-reverted-hook)
> >                 (revert-buffer t t t)))

What's wrong with `after-revert-hook' an already existing hook:

after-revert-hook's value is 
(ecb-vc-after-revert-hook)

Documentation:
Normal hook for `revert-buffer' to run after reverting.
Note that the hook value that it runs is the value that was in effect
before reverting; that makes a difference if you have buffer-local
hook functions.

If `revert-buffer-function' is used to override the normal revert
(Continue reading)

Zajcev Evgeny | 17 Dec 2004 02:56
X-Face
Picon
Favicon

tpum.el --- Popup menus in text mode.


In this version of tpum added support for accel key in menu item.

Most recent version of tpum always(not actually) available at
http://lgarc.narod.ru/xemacs/tpum.el

Also implemented:

  * tpum minor mode, thanks to Uwe Brauer <oub <at> mat.ucm.es> for
    suggestion.

  * tpum major mode.

----- Cut here -----
;;; tpum.el --- Popup menus in text mode.

;; Copyright (C) 2003 by Free Software Foundation, Inc.

;; Author: Zajcev Evgeny <zevlg <at> yandex.ru>
;; Maintainer: none, if you want be a maintainer please e-mail me.
;; Created: 2003/10/21
;; Keywords: tools, menus
;; X-CVS: $Id: tpum.el,v 1.2 2004/12/27 04:30:00 lg Exp $

;; This file is NOT part of XEmacs.

;; tpum.el is free software; you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
(Continue reading)

Chong Yidong | 19 Dec 2004 11:17
Picon

longlines.el 2.0 -- automatically wrap long lines (merged with wrap-mode)

Alex Schroeder has very kindly offered to make me the maintainer of
longlines-mode, the minor mode for automatically wrapping long lines;
so here is a new version, v2.0.

I have merged in the code from wrap-mode, which was previously posted
on this newsgroup. That minor mode is now obsolete, all of its
functionality having been absorbed into longlines-mode. Longlines-mode
now uses the reversible line wrapping functions instead of fill-region
when formatting the buffer for the first time, to avoid clobbering the
file. Automatic wrapping of long lines is handled by a variable,
longlines-auto-wrap. Setting it to nil leads to the old longlines-mode
behavior -- i.e., you have to fill the paragraphs manually. There are
several other bug fixes, and hopefully not too many new bugs.

;;; longlines.el --- automatically wrap long lines -*- coding: iso-8859-1; -*-

;; Copyright (C) 2000, 2001 by Free Software Foundation, Inc.
;; Copyright (C) 2004 by Chong Yidong.

;; Authors: Kai Grossjohann <Kai.Grossjohann <at> CS.Uni-Dortmund.DE>
;;          Alex Schroeder <alex <at> gnu.org>
;;          Chong Yidong <cyd <at> stupidchicken.com>
;; Version: 2.0
;; Keywords: convenience

;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

(Continue reading)

Chong Yidong | 24 Dec 2004 11:44
Picon

longlines.el 2.1 -- automatically wrap long lines

This fixes some bugs in killing and yanking. It should work properly
now.

;;; longlines.el --- automatically wrap long lines -*- coding: iso-8859-1; -*-

;; Copyright (C) 2000, 2001 by Free Software Foundation, Inc.
;; Copyright (C) 2004 by Chong Yidong.

;; Authors:    Kai Grossjohann <Kai.Grossjohann <at> CS.Uni-Dortmund.DE>
;;             Alex Schroeder <alex <at> gnu.org>
;;             Chong Yidong <cyd <at> stupidchicken.com>
;; Maintainer: Chong Yidong <cyd <at> stupidchicken.com>
;; Version: 2.1
;; Keywords: convenience

;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

(Continue reading)


Gmane