* Makefile (elc): Remove emu*.elc to use newest emu by
[elisp/apel.git] / emu-e19.el
1 ;;; emu-e19.el --- emu API implementation for Emacs 19.*
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: emulation, compatibility
7
8 ;; This file is part of emu.
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., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 ;;; @ face
28 ;;;
29
30 (defun-maybe find-face (face)
31   (car (memq face (face-list)))
32   )
33
34
35 ;;; @ for tm-7.106
36 ;;;
37
38 (defalias 'tl:make-overlay 'make-overlay)
39 (defalias 'tl:overlay-put 'overlay-put)
40 (defalias 'tl:overlay-buffer 'overlay-buffer)
41
42 (make-obsolete 'tl:make-overlay 'make-overlay)
43 (make-obsolete 'tl:overlay-put 'overlay-put)
44 (make-obsolete 'tl:overlay-buffer 'overlay-buffer)
45
46
47 ;;; @ visible/invisible
48 ;;;
49
50 (defmacro enable-invisible ())
51
52 (defmacro end-of-invisible ())
53
54 (defun invisible-region (start end)
55   (if (save-excursion
56         (goto-char (1- end))
57         (eq (following-char) ?\n)
58         )
59       (setq end (1- end))
60     )
61   (put-text-property start end 'invisible t)
62   )
63
64 (defun visible-region (start end)
65   (put-text-property start end 'invisible nil)
66   )
67
68 (defun invisible-p (pos)
69   (get-text-property pos 'invisible)
70   )
71
72 (defun next-visible-point (pos)
73   (save-excursion
74     (goto-char (next-single-property-change pos 'invisible))
75     (if (eq (following-char) ?\n)
76         (forward-char)
77       )
78     (point)))
79
80
81 ;;; @ mouse
82 ;;;
83
84 (defvar mouse-button-1 [mouse-1])
85 (defvar mouse-button-2 [mouse-2])
86 (defvar mouse-button-3 [down-mouse-3])
87
88
89 ;;; @ string
90 ;;;
91
92 (defmacro char-list-to-string (char-list)
93   "Convert list of character CHAR-LIST to string."
94   (` (mapconcat (function char-to-string)
95                 (, char-list)
96                 "")))
97
98
99 ;;; @ end
100 ;;;
101
102 (provide 'emu-e19)
103
104 ;;; emu-e19.el ends here