src/xdisp.c (single_display_spec_string): Correct a FIXME comment.
[emacs.git] / etc / emacs.py
blob24004b321fe41880d3f81cbd43667cd026784b0d
1 """Wrapper for version-specific implementations of python.el helper
2 functions """
4 import sys
6 if sys.version_info[0] == 3:
7 from emacs3 import *
8 else:
9 from emacs2 import *