update.
[elisp/apel.git] / invisible.el
1 ;;; invisible.el --- hide region
2
3 ;; Copyright (C) 1995,1996,1997,1998,1999,2010 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
6 ;; Keywords: invisible, text-property, region
7
8 ;; This file is part of APEL (A Portable Emacs Library).
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Code:
26
27 (cond
28  ((featurep 'xemacs)
29   (require 'inv-xemacs))
30  ((>= emacs-major-version 23)
31   (require 'inv-23))
32  ((>= emacs-major-version 19)
33   (require 'inv-19))
34  (t
35   (require 'inv-18)))
36
37
38 ;;; @ end
39 ;;;
40
41 (require 'product)
42 (product-provide (provide 'invisible) (require 'apel-ver))
43
44 ;;; invisible.el ends here