Changeset 3894 for trunk/etc/emacs.py
- Timestamp:
- 10/02/05 09:47:43 (3 years ago)
- Files:
-
- trunk/etc (modified) (1 prop)
- trunk/etc/emacs.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/etc
- Property svn:ignore changed from
DOC-X
to
DOC-X
icons
DOC
- Property svn:ignore changed from
trunk/etc/emacs.py
r3828 r3894 83 83 print '_emacs_out ()' 84 84 85 def ehelp (name ):86 """Get help on string NAME .85 def ehelp (name, g, l): 86 """Get help on string NAME using globals G and locals L. 87 87 First try to eval name for, e.g. user definitions where we need 88 88 the object. Otherwise try the string form.""" 89 try: help (eval (name ))89 try: help (eval (name, g, l)) 90 90 except: help (name) 91 91
