comparison lisp/allout.el @ 49964:76b62bb3c715

Update maintainer's e-mail address.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 24 Feb 2003 17:28:28 +0000
parents 13d146080936
children 4a0a4a66f5b1
comparison
equal deleted inserted replaced
49963:dcf423f8ed33 49964:76b62bb3c715
1 ;;; allout.el --- extensive outline mode for use alone and with other modes 1 ;;; allout.el --- extensive outline mode for use alone and with other modes
2 2
3 ;; Copyright (C) 1992, 1993, 1994, 2001, 2002 Free Software Foundation, Inc. 3 ;; Copyright (C) 1992, 1993, 1994, 2001, 2002 Free Software Foundation, Inc.
4 4
5 ;; Author: Ken Manheimer <klm@python.org> 5 ;; Author: Ken Manheimer <klm@zope.org>
6 ;; Maintainer: Ken Manheimer <klm@python.org> 6 ;; Maintainer: Ken Manheimer <klm@zope.org>
7 ;; Created: Dec 1991 - first release to usenet 7 ;; Created: Dec 1991 - first release to usenet
8 ;; Version: $Id: allout.el,v 1.39 2003/02/04 11:00:03 lektu Exp $|| 8 ;; Version: $Id: allout.el,v 1.40 2003/02/24 17:23:38 lektu Exp $||
9 ;; Keywords: outlines mode wp languages 9 ;; Keywords: outlines mode wp languages
10 10
11 ;; This file is part of GNU Emacs. 11 ;; This file is part of GNU Emacs.
12 12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify 13 ;; GNU Emacs is free software; you can redistribute it and/or modify
56 ;; 3.x, for those of you that depend on the old method.) 56 ;; 3.x, for those of you that depend on the old method.)
57 ;; 57 ;;
58 ;; Note - the lines beginning with `;;;_' are outline topic headers. 58 ;; Note - the lines beginning with `;;;_' are outline topic headers.
59 ;; Just `ESC-x eval-current-buffer' to give it a whirl. 59 ;; Just `ESC-x eval-current-buffer' to give it a whirl.
60 60
61 ;; Ken Manheimer klm@python.org 61 ;; Ken Manheimer klm@zope.org
62 62
63 ;;; Code: 63 ;;; Code:
64 64
65 ;;;_* Provide 65 ;;;_* Provide
66 (provide 'allout) 66 (provide 'allout)
506 506
507 ;;;_ #1 Internal Outline Formatting and Configuration 507 ;;;_ #1 Internal Outline Formatting and Configuration
508 ;;;_ : Version 508 ;;;_ : Version
509 ;;;_ = allout-version 509 ;;;_ = allout-version
510 (defvar allout-version 510 (defvar allout-version
511 (let ((rcs-rev "$Revision: 1.39 $")) 511 (let ((rcs-rev "$Revision: 1.40 $"))
512 (condition-case err 512 (condition-case err
513 (save-match-data 513 (save-match-data
514 (string-match "Revision: \\([0-9]+\\.[0-9]+\\)" rcs-rev) 514 (string-match "Revision: \\([0-9]+\\.[0-9]+\\)" rcs-rev)
515 (substring rcs-rev (match-beginning 1) (match-end 1))) 515 (substring rcs-rev (match-beginning 1) (match-end 1)))
516 ('error rcs-rev))) 516 ('error rcs-rev)))