7815219b78abdcbef67e90135929a31b608618de
[elisp/apel.git] / emu-xemacs.el
1 ;;; emu-xemacs.el --- emu API implementation for XEmacs
2
3 ;; Copyright (C) 1995 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995,1996,1997 MORIOKA Tomohiko
5
6 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
7 ;; Version:
8 ;;      $Id: emu-xemacs.el,v 7.19 1997/04/05 06:50:48 morioka Exp $
9 ;; Keywords: emulation, compatibility, XEmacs
10
11 ;; This file is part of XEmacs.
12
13 ;; This program is free software; you can redistribute it and/or
14 ;; modify it under the terms of the GNU General Public License as
15 ;; published by the Free Software Foundation; either version 2, or (at
16 ;; your option) any later version.
17
18 ;; This program is distributed in the hope that it will be useful, but
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 ;; General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with XEmacs; see the file COPYING.  If not, write to the Free
25 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
26 ;; 02111-1307, USA.
27
28 ;;; Code:
29
30 ;;; @ face
31 ;;;
32
33 (or (fboundp 'face-list)
34     (defalias 'face-list 'list-faces)
35     )
36
37 (or (memq 'underline (face-list))
38     (and (fboundp 'make-face)
39          (make-face 'underline)
40          ))
41
42 (or (face-differs-from-default-p 'underline)
43     (set-face-underline-p 'underline t))
44
45
46 ;;; @ overlay
47 ;;;
48
49 (condition-case nil
50     (require 'overlay)
51   (error (defalias 'make-overlay 'make-extent)
52          (defalias 'overlay-put 'set-extent-property)
53          (defalias 'overlay-buffer 'extent-buffer)
54          (defun move-overlay (extent start end &optional buffer)
55            (set-extent-endpoints extent start end)
56            )
57          ))
58
59
60 ;;; @ visible/invisible
61 ;;;
62
63 (defmacro enable-invisible ())
64
65 (defmacro end-of-invisible ())
66
67 (defun invisible-region (start end)
68   (if (save-excursion
69         (goto-char start)
70         (eq (following-char) ?\n))
71       (setq start (1+ start))
72     )
73   (put-text-property start end 'invisible t)
74   )
75
76 (defun visible-region (start end)
77   (put-text-property start end 'invisible nil)
78   )
79
80 (defun invisible-p (pos)
81   (if (save-excursion
82         (goto-char pos)
83         (eq (following-char) ?\n))
84       (setq pos (1+ pos))
85     )
86   (get-text-property pos 'invisible)
87   )
88
89 (defun next-visible-point (pos)
90   (save-excursion
91     (if (save-excursion
92           (goto-char pos)
93           (eq (following-char) ?\n))
94         (setq pos (1+ pos))
95       )
96     (or (next-single-property-change pos 'invisible)
97         (point-max))))
98
99
100 ;;; @ mouse
101 ;;;
102
103 (defvar mouse-button-1 'button1)
104 (defvar mouse-button-2 'button2)
105 (defvar mouse-button-3 'button3)
106
107
108 ;;; @ dired
109 ;;;
110
111 (or (fboundp 'dired-other-frame)
112     (defun dired-other-frame (dirname &optional switches)
113       "\"Edit\" directory DIRNAME.  Like `dired' but makes a new frame."
114       (interactive (dired-read-dir-and-switches "in other frame "))
115       (switch-to-buffer-other-frame (dired-noselect dirname switches)))
116     )
117
118
119 ;;; @ string
120 ;;;
121
122 (defmacro char-list-to-string (char-list)
123   "Convert list of character CHAR-LIST to string. [emu-xemacs.el]"
124   `(mapconcat #'char-to-string ,char-list ""))
125
126
127 ;;; @@ to avoid bug of XEmacs 19.14
128 ;;;
129
130 (or (string-match "^../"
131                   (file-relative-name "/usr/local/share" "/usr/local/lib"))
132     ;; This function was imported from Emacs 19.33.
133     (defun file-relative-name (filename &optional directory)
134       "Convert FILENAME to be relative to DIRECTORY
135 (default: default-directory). [emu-xemacs.el]"
136       (setq filename (expand-file-name filename)
137             directory (file-name-as-directory
138                        (expand-file-name
139                         (or directory default-directory))))
140       (let ((ancestor ""))
141         (while (not (string-match (concat "^" (regexp-quote directory))
142                                   filename))
143           (setq directory (file-name-directory (substring directory 0 -1))
144                 ancestor (concat "../" ancestor)))
145         (concat ancestor (substring filename (match-end 0)))))
146     )
147
148     
149 ;;; @ end
150 ;;;
151
152 (provide 'emu-xemacs)
153
154 ;;; emu-xemacs.el ends here