view etc/emacs.py @ 91336:04716f23ac87

(FONTSET_REF_AND_RANGE): Delete it. (fontset_ref_and_range): Delete it. (fontset_find_font): Call char_table_ref_and_range instead of FONTSET_REF_AND_RANGE. (make_fontset): Don't setup font groups of Latin here. (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII. (new_fontset_from_font): Make the specified font the default for all Latin characters.
author Kenichi Handa <handa@m17n.org>
date Mon, 14 Jan 2008 01:31:25 +0000
parents bdb3fe0ba9fa
children
line wrap: on
line source

"""Wrapper for version-specific implementations of python.el helper
functions """

import sys

if sys.version_info[0] == 3:
    from emacs3 import *
else:
    from emacs2 import *

# arch-tag: 894b5227-638f-45fd-8567-0417d5c35900