]> git.eshelyaron.com Git - emacs.git/commitdiff
(complete.class_members): Make sure we return the _emacs_out
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 12 Sep 2007 19:44:36 +0000 (19:44 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 12 Sep 2007 19:44:36 +0000 (19:44 +0000)
message even in the face of exceptions.

etc/ChangeLog
etc/emacs.py

index 87202bbef2449163e4d046ad04d427faf288d66f..c8e8d8bb58116882285f946171322fba81bbb9ac 100644 (file)
@@ -1,3 +1,8 @@
+2007-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs.py (complete.class_members): Make sure we return the _emacs_out
+       message even in the face of exceptions.
+
 2007-09-05  Jason Rumney  <jasonr@gnu.org>
 
        * NEWS: Mention focus-follows-mouse change.
 
 2007-08-22  Karl Berry  <karl@gnu.org>
 
-       * refcard.tex: updates for printing.
-        (\versionyear): update to 2007.
-       (\copyrightnotice): modified or unmodified ok.
-       (Simple Customization): don't use goto-line, since now it's bound.
+       * refcard.tex: Updates for printing.
+       (\versionyear): Update to 2007.
+       (\copyrightnotice): Modified or unmodified ok.
+       (Simple Customization): Don't use goto-line, since now it's bound.
        Also, use now-preferred (kbd ...) syntax.
 
 2007-08-14  Glenn Morris  <rgm@gnu.org>
@@ -26,7 +31,7 @@
 
 2007-07-25  Glenn Morris  <rgm@gnu.org>
 
-       *  Relicense all FSF files to GPLv3 or later.
+       * Relicense all FSF files to GPLv3 or later.
 
        * COPYING: Switch to GPLv3.
 
index f11913cd7b59a0e7272010c728a96b0308fd419b..d8bfb6bcd68cc96cc626eb247aba0ee583699aab 100644 (file)
@@ -176,7 +176,9 @@ def complete (name, imports):
                    names.add('__class__')
                    names.union_update (class_members (object))
            except: names = all_names (dict)
-    except: return []
+    except:
+        print '_emacs_out ()'
+        return []
     l = len(name)
     print '_emacs_out (',
     for n in names: