2 ;;; emu-mule.el --- Mule 2.* emulation module for Mule
4 ;;; Copyright (C) 1995 Free Software Foundation, Inc.
5 ;;; Copyright (C) 1994,1995 MORIOKA Tomohiko
7 ;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
9 ;;; $Id: emu-mule.el,v 6.3 1995/09/21 00:08:02 morioka Exp $
10 ;;; Keywords: emulation, compatibility, Mule
12 ;;; This file is part of tl and tm (Tools for MIME).
15 (defun some-element (pred seq)
16 "Return the first element of sequence SEQ
17 whose return value applied function PRED is not nil.
18 [emu-mule; tl-list function]"
19 (let ((i 0)(len (length seq)) element)
22 (if (funcall pred (setq element (elt seq i)))
30 "Return leading character of CHAR or LEADING-CHARACTER."
36 (if (not (boundp 'emacs-major-version))
37 (defconst emacs-major-version (string-to-int emacs-version))
40 (cond ((>= emacs-major-version 19)
42 (defun fontset-pixel-size (fontset)
50 (cdr (get-fontset-info fontset))
55 (defun tl:make-overlay (beg end &optional buffer type))
56 (defun tl:overlay-put (overlay prop value))
57 (defun tl:add-text-properties (start end properties &optional object))