Show
Ignore:
Timestamp:
10/02/05 09:47:43 (3 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/etc

    • Property svn:ignore changed from
      DOC-X
      to
      DOC-X
      icons
      DOC
  • trunk/etc/emacs.py

    r3828 r3894  
    8383        print '_emacs_out ()' 
    8484 
    85 def ehelp (name): 
    86     """Get help on string NAME
     85def ehelp (name, g, l): 
     86    """Get help on string NAME using globals G and locals L
    8787    First try to eval name for, e.g. user definitions where we need 
    8888    the object.  Otherwise try the string form.""" 
    89     try: help (eval (name)) 
     89    try: help (eval (name, g, l)) 
    9090    except: help (name) 
    9191