Mercurial > emacs
view etc/emacs.py @ 84855:5b7295004fd1
(produce-allout-mode-map, allout-process-exposed):
Use `mapc' rather than `mapcar'.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 25 Sep 2007 10:41:00 +0000 |
parents | 9b1c9000269c |
children | 69c173eabff4 |
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 *