undo 46d911ab9170 since it causes problems
authorsmolkas
Mon, 06 May 2013 11:17:33 +0200
changeset 51881 475c2eab2d7c
parent 51880 46d911ab9170
child 51882 2023639f566b
undo 46d911ab9170 since it causes problems
src/HOL/Tools/ATP/atp_proof.ML
--- a/src/HOL/Tools/ATP/atp_proof.ML	Mon May 06 11:05:32 2013 +0200
+++ b/src/HOL/Tools/ATP/atp_proof.ML	Mon May 06 11:17:33 2013 +0200
@@ -215,7 +215,7 @@
 (* Strings enclosed in single quotes (e.g., file names) *)
 val scan_general_id =
   $$ "'" |-- Scan.repeat (~$$ "'") --| $$ "'" >> implode
-  || Scan.repeat ($$ "$") -- Scan.many1 (fn s => Symbol.is_letdig s orelse s="-")
+  || Scan.repeat ($$ "$") -- Scan.many1 Symbol.is_letdig
      >> (fn (ss1, ss2) => implode ss1 ^ implode ss2)
 
 val scan_nat = Scan.repeat1 (Scan.one Symbol.is_ascii_digit) >> implode