X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=inv-xemacs.el;h=3652326355146fc7d0ec4bf085566858ffc47ae0;hb=4eb25842d0d6d88ccbe4dd46ffeb3d17e857ea52;hp=c6c056be6145c7a95fb45f8d69a831de76d6295d;hpb=5760307aa255d1dc28a7e5861c63efb020dadb25;p=elisp%2Fapel.git diff --git a/inv-xemacs.el b/inv-xemacs.el index c6c056b..3652326 100644 --- a/inv-xemacs.el +++ b/inv-xemacs.el @@ -20,44 +20,41 @@ ;; You should have received a copy of the GNU General Public License ;; along with XEmacs; see the file COPYING. If not, write to the Free -;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -;; 02111-1307, USA. +;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +;; MA 02110-1301, USA. ;;; Code: -(defmacro enable-invisible ()) +(require 'poe) -(defmacro end-of-invisible ()) +(defun enable-invisible ()) +(defun disable-invisible ()) +(defalias 'end-of-invisible 'disable-invisible) +(make-obsolete 'end-of-invisible 'disable-invisible) (defun invisible-region (start end) (if (save-excursion (goto-char start) (eq (following-char) ?\n)) - (setq start (1+ start)) - ) - (put-text-property start end 'invisible t) - ) + (setq start (1+ start))) + (put-text-property start end 'invisible t)) (defun visible-region (start end) - (put-text-property start end 'invisible nil) - ) + (put-text-property start end 'invisible nil)) (defun invisible-p (pos) (if (save-excursion (goto-char pos) (eq (following-char) ?\n)) - (setq pos (1+ pos)) - ) - (get-text-property pos 'invisible) - ) + (setq pos (1+ pos))) + (get-text-property pos 'invisible)) (defun next-visible-point (pos) (save-excursion (if (save-excursion (goto-char pos) (eq (following-char) ?\n)) - (setq pos (1+ pos)) - ) + (setq pos (1+ pos))) (or (next-single-property-change pos 'invisible) (point-max)))) @@ -65,6 +62,7 @@ ;;; @ end ;;; -(provide 'inv-xemacs) +(require 'product) +(product-provide (provide 'inv-xemacs) (require 'apel-ver)) ;;; inv-xemacs.el ends here