src/Pure/Thy/completion.scala
changeset 43695 5130dfe1b7be
parent 43462 7f65a68f8b26
child 45900 793bf5fa5fbf
--- a/src/Pure/Thy/completion.scala	Wed Jul 06 23:11:59 2011 +0200
+++ b/src/Pure/Thy/completion.scala	Thu Jul 07 13:48:30 2011 +0200
@@ -62,15 +62,15 @@
 
   def + (keyword: String): Completion = this + (keyword, keyword)
 
-  def + (symbols: Symbol.Interpretation): Completion =
+  def add_symbols: Completion =
   {
     val words =
-      (for ((x, _) <- symbols.names) yield (x, x)).toList :::
-      (for ((x, y) <- symbols.names) yield (y, x)).toList :::
-      (for ((x, y) <- symbols.abbrevs if Completion.is_word(y)) yield (y, x)).toList
+      (for ((x, _) <- Symbol.names) yield (x, x)).toList :::
+      (for ((x, y) <- Symbol.names) yield (y, x)).toList :::
+      (for ((x, y) <- Symbol.abbrevs if Completion.is_word(y)) yield (y, x)).toList
 
     val abbrs =
-      (for ((x, y) <- symbols.abbrevs if !Completion.is_word(y))
+      (for ((x, y) <- Symbol.abbrevs if !Completion.is_word(y))
         yield (y.reverse.toString, (y, x))).toList
 
     val old = this