[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:08433] Re: canna and emacs 20.3



At around Fri, 18 Sep 1998 18:37:58 +0900,
 Katsuya Okabe <okatsuya@xxxxxxxxxxxxxxx> may have mentioned:

> 岡部といいます. 

...

> char-or-char-int-p というのは XEmacs の関数で, Emacs では APEL でエミュ
> レートしているのではなかったでしょうか. 

/usr/share/emacs/site-lisp/apel で grep char-or-char-int-p したところ、以下の
様な事が分かりました。 (from /usr/share/emacs/site-lisp/apel/emu.el)

;;; @ for XEmacs 20
;;;

(or (fboundp 'char-int)
    (fset 'char-int (symbol-function 'identity))
    )
(or (fboundp 'int-char)
    (fset 'int-char (symbol-function 'identity))
    )
(or (fboundp 'char-or-char-int-p)
    (fset 'char-or-char-int-p (symbol-function 'integerp))
    )

これ以外は何も見当たりませんでした。

-sen