summaryrefslogtreecommitdiff
path: root/interp/symbols.ml
diff options
context:
space:
mode:
authorGravatar Samuel Mimram <samuel.mimram@ens-lyon.org>2005-01-31 14:34:14 +0000
committerGravatar Samuel Mimram <samuel.mimram@ens-lyon.org>2005-01-31 14:34:14 +0000
commit6497f27021fec4e01f2182014f2bb1989b4707f9 (patch)
tree473be7e63895a42966970ab6a70998113bc1bd59 /interp/symbols.ml
parent6b649aba925b6f7462da07599fe67ebb12a3460e (diff)
Imported Upstream version 8.0pl2upstream/8.0pl2
Diffstat (limited to 'interp/symbols.ml')
-rw-r--r--interp/symbols.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/interp/symbols.ml b/interp/symbols.ml
index ed151d8e..d1abb084 100644
--- a/interp/symbols.ml
+++ b/interp/symbols.ml
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(* $Id: symbols.ml,v 1.31.2.1 2004/07/16 19:30:23 herbelin Exp $ *)
+(* $Id: symbols.ml,v 1.31.2.2 2004/11/17 09:33:38 herbelin Exp $ *)
(*i*)
open Util
@@ -270,7 +270,7 @@ let declare_notation_interpretation ntn scopt pat df pp8only =
let scope = match scopt with Some s -> s | None -> default_scope in
let sc = find_scope scope in
if Stringmap.mem ntn sc.notations && Options.is_verbose () then
- warning ("Notation "^ntn^" is already used"^
+ warning ("Notation "^ntn^" was already used"^
(if scopt = None then "" else " in scope "^scope));
let sc = { sc with notations = Stringmap.add ntn (pat,df,pp8only) sc.notations } in
scope_map := Stringmap.add scope sc !scope_map;